/* Base styles */
body {
    margin: 0;
    padding: 0;
    background: url('bg01.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(12px);
    color: white;
}

/* Hero section */
.hero {
    padding: 6rem 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1100px;
}

.hero-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 60%;
    text-align: left;
}

.hero-image {
    flex: 1 1 40%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

.hero-text p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1.25rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #5865F2;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 8px #5865F2; }
    50% { box-shadow: 0 0 16px #5865F2; }
}

.hero-button:hover {
    background-color: #4752c4;
    transform: scale(1.05);
}

.countdown-timer {
    font-size: 1.1rem;
    color: #93c5fd;
    margin-top: 1rem;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(147, 197, 253, 0.3);
}

/* Live badge */
.live-badge {
    background: #ff3b3b;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    font-weight: bold;
    margin-left: 0.5rem;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}





.day-section {

    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
    text-align: center;
}

.day-section h1 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem; /* Increased from 1.5rem */
    max-width: 1200px;
    width: 100%;
    justify-items: center;
}

.streamer-card {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 240px;
    width: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin: 0 0.5rem;
}

.streamer-card:hover {
    transform: translateY(-6px);
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #fff;
}

.streamer-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.stream-times p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.platform-button {
    margin-top: 1rem;
    display: inline-block;
    background-color: #9146ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.platform-button:hover {
    background-color: #772ce8;
}


@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .streamer-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .streamer-name {
        font-size: 1.1rem;
    }

    .stream-times p {
        font-size: 0.9rem;
    }
}

.hero {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}