* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #003366;
    background-image: url("background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: fill;
    font-family: "Arial", "Verdana", sans-serif;
    color: #ffcc00;
    line-height: 1.6;
}

.header {
    background: linear-gradient(180deg, #00336600 0%, #001a4d00 100%);
    border: 3px solid #ffcc00;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    margin: 20px;
}

.header h1 {
    font-size: 3.5em;
    text-shadow: 3px 3px 0px #ffffff, 6px 6px 0px #003366;
    color: #ffcc00;
    line-height: 1.6;
}

.header {
    background: linear-gradient(180deg, #00336600 0%, #001a4d 100%);
    border: 3px solid #ffcc00;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    margin: 20px;
}

.header h1 {
    font-size: 3.5em;
    text-shadow: 3px 3px 0px #ffffff, 6px 6px 0px #00336600;
    color: #ffcc00;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.header p {
    font-size: 1.3em;
    color: #ffcc00;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.tagline {
    color: #cccccc;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 10px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    margin: 20px;
    min-width: 0;
}

.main-content {
    background: #00336600;
    border: 3px solid #ffcc00;
    padding: 20px;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.3);
    min-width: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.content-section p,
.box p,
.game-info,
.social-links,
.social-links a {
    overflow-wrap: break-word;
    word-break: break-word;
}

.social-links {
    background-color: #ffcc00;
    border: 2px solid white;
    color: #003366;
    padding: 15px;
}


.box {
    background: #99ccff;
    border: 3px dotted #003366;
    padding: 15px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.box h2 {
    color: #003366;
    text-transform: uppercase;
    font-size: 1.2em;
    margin-bottom: 10px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
}

.box h3 {
    color: #003366;
    font-size: 1em;
    margin-top: 10px;
}
.countdown-box {
    background: linear-gradient(135deg, #ffffff 0%, #ffcc00 100%);
    border: 3px solid #003366;
    padding: 20px;
    text-align: center;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.4);
}

.countdown-box h2 {
    color: #003366;
    text-transform: uppercase;
    font-size: 1.1em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
}

.countdown-timer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.time-unit {
    background: #003366;
    color: #ffcc00;
    padding: 15px 5px;
    border: 2px solid #ffffff;
    text-align: center;
}

.time-unit .number {
    font-size: 1.8em;
    font-weight: bold;
    font-family: "Courier New", monospace;
}

.time-unit .label {
    font-size: 0.7em;
    text-transform: uppercase;
    color: #ffcc00;
    margin-top: 5px;
}

.game-info {
    background: #003366;
    color: #ffcc00;
    padding: 10px;
    border: 2px solid #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 0.9em;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    background: linear-gradient(135deg, #ffffff 0%, #ffcc00 100%);
    color: #003366;
    border: 2px solid #003366;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    transition: all 0.2s;
    text-align: center;
    font-size: 0.9em;
}

.social-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.4);
}
.social-btn.spotify {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #ff6666 100%);
}

.social-btn.apple {
    background: linear-gradient(135deg, #666666 0%, #999999 100%);
}

.content-section {
    color: #003366;
    margin-bottom: 20px;
}

.content-section h2 {
    color: #ffffff;
    font-size: 1.8em;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 5px;
}

.content-section p {
    margin-bottom: 10px;
    text-align: justify;
}

.star {
    color: #ffcc00;
    font-size: 1.2em;
}

.separator {
    color: #003366;
    text-align: center;
    margin: 20px 0;
    font-size: 1.5em;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.3; }
}

.marquee {
    background: #ffffff;
    color: #003366;
    padding: 10px;
    font-weight: bold;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}




@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 12px;
        max-width: 100%;
        min-width: 0;
    }

    .header {
        margin: 12px;
    }

    .main-content,
    .sidebar,
    .content-section,
    .box,
    .countdown-box,
    .social-links {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* Make main content and sidebar full-width and stack order */
    .main-content,
    .sidebar {
        padding: 7px;
        box-shadow: none;
    }

    .main-content {
        order: 1;
    }

    .sidebar {
        order: 2;
        display: block;
    }

    .content-section {
        grid-template-columns: 1fr;
    }

    .social-links {
        padding: 12px;
    }

    .social-links a {
        width: 100%;
    }

    .header h1 {
        font-size: 2.4em;
        line-height: 1.2;
    }

    .countdown-timer {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .time-unit {
        padding: 10px 6px;
    }

    .marquee {
        font-size: 0.95em;
        padding: 8px;
    }
}

@media (max-width: 520px) {
    .countdown-timer {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .main-content,
    .sidebar,
    .box,
    .countdown-box,
    .social-links {
        padding: 10px;
    }

    .container {
        margin: 8px;
    }

    .header {
        margin: 8px;
    }
}