body {
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 20px;
    background: #000000;
    color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #d4d0c8;
    border: 2px outset #fff;
    padding: 20px;
}

h1, h2 {
    font-family: "Arial Black", Gadget, sans-serif;
    color: #000080;
    text-align: center;
    filter: glow(color=#ffffff, strength=2);
    -webkit-text-stroke: 1px #fff;
}

h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin: 20px 0;
    color: #000080;
}

.converter-section, .player-section {
    border: 2px inset #fff;
    background: #ece9d8;
    margin: 20px 0;
    padding: 20px;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.format-badge {
    background: linear-gradient(to bottom, #fff 0%, #ccc 100%);
    border: 2px outset #ddd;
    padding: 5px 10px;
    font-family: "Trebuchet MS", Arial, sans-serif;
}

.upload-zone {
    border: 3px dashed #666;
    background: #fff;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.upload-zone:hover {
    background: #f0f0f0;
    border-color: #000080;
}

button {
    background: linear-gradient(to bottom, #fff 0%, #ccc 100%);
    border: 2px outset #ddd;
    padding: 8px 15px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: bold;
    color: #000080;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background: linear-gradient(to bottom, #eee 0%, #bbb 100%);
}

button:active {
    border-style: inset;
    padding: 9px 14px 7px 16px;
}

button:disabled {
    background: #d4d0c8;
    border: 2px outset #ddd;
    color: #666;
    cursor: default;
}

.player-controls {
    background: #ece9d8;
    border: 2px inset #fff;
    padding: 15px;
}

.progress-bar {
    border: 2px inset #fff;
    background: #fff;
    height: 20px;
    margin: 10px 0;
    position: relative;
}

.progress {
    background: #000080;
    height: 100%;
    width: 0%;
}

#hotdogDisplay {
    max-width: 100%;
    height: auto;
    border: 2px inset #fff;
}

.volume-control {
    margin-top: 10px;
}

input[type="range"] {
    width: 200px;
}

marquee {
    font-family: "Comic Sans MS", cursive;
    color: #000080;
    margin: 10px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex: 1;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 2.5em;
    margin-bottom: 40px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.converter-section, .player-section {
    margin: 30px 0;
    padding: 25px;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    background-color: #fafafa;
}

.supported-formats {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.upload-label {
    color: #666;
    margin-top: 10px;
}

input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.main-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.main-controls button {
    width: auto;
    padding: 10px 20px;
}

.time-display {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.media-display {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.welcome-message {
    font-family: "Comic Sans MS", cursive;
    color: #000080;
    margin: 10px 0;
    text-align: center;
    padding: 10px;
    background: #fff;
    border: 2px inset #fff;
}

footer {
    display: none;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    button {
        padding: 10px 20px;
    }
}

/* Add styles for loop checkbox */
.loop-control {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    user-select: none;
}

/* Bouncy ball styles */
#bouncyBall {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #ff0000 0%, #990000 100%);
    border-radius: 50%;
    cursor: grab;
    box-shadow: inset -2px -2px 10px rgba(0,0,0,0.5);
    user-select: none;
}

#bouncyBall:active {
    cursor: grabbing;
} 