:root {
    --primary: #FF1493;  /* Deep pink */
    --secondary: #0F0F1A; /* Dark blue-black */
    --accent: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: white;
    overflow: hidden;
    height: 100vh;
}

.mountain-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1519681393784-d120267933ba') center/cover no-repeat;
    z-index: -2;
    animation: panBackground 25s infinite alternate linear;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.7);
    z-index: -1;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 180px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px var(--primary));
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin: 10px 0;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
}

.channels {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.channel {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.channel:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.countdown {
    margin-top: 25px;
    font-size: 1.2rem;
}

.countdown span {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.4rem;
}

@keyframes panBackground {
    0% { background-position: 10% 50%; }
    100% { background-position: 90% 50%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .logo { width: 150px; }
    .channel { 
        width: 50px; 
        height: 50px;
        font-size: 1.1rem;
    }
}
