* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0b0b2a, #1a1a3a);
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow: hidden;
    cursor: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.anime-title {
    margin-bottom: 40px;
    position: relative;
}

.anime-title h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(66, 220, 255, 0.7),
                 0 0 30px rgba(66, 220, 255, 0.5);
    background: linear-gradient(90deg, #fff, #42dcff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.season-badge {
    position: absolute;
    right: -20px;
    top: 20px;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    transform: rotate(15deg);
    box-shadow: 0 0 10px rgba(255, 75, 43, 0.7);
}

.episode-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.episode-card {
    background: rgba(20, 20, 50, 0.7);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 220, 255, 0.3);
    box-shadow: 0 0 20px rgba(66, 220, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(66, 220, 255, 0.4);
}

.episode-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(66, 220, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.episode-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #42dcff;
}

.episode-date {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 15px;
}

.countdown-container {
    margin-top: 10px;
}

.countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #42dcff, #a742ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.label {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Custom cursor */
body::after {
    content: '';
    position: fixed;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(66, 220, 255, 0.7);
    box-shadow: 0 0 15px rgba(66, 220, 255, 0.7);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 220, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(66, 220, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(66, 220, 255, 0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .anime-title h1 {
        font-size: 3.5rem;
    }
    
    .episode-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .time {
        font-size: 2rem;
    }
}