:root {
    --primary-color: #ff1493;
    --secondary-color: #ff69b4;
    --accent-color: #ffb6c1;
    --background-color: #2d0a2d;
    --border-color: rgba(255, 20, 147, 0.3);
    --glow-color: rgba(255, 20, 147, 0.5);
    --text-glow: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #2d0a2d 0%, #4a1a4a 50%, #6b2a6b 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255, 20, 147, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 20, 147, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px;
    background-position: 0 0, 0 0;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    font-family: 'Open Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    animation: glow 2s ease-in-out infinite alternate;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--glow-color); }
    to { text-shadow: 0 0 30px var(--glow-color), 0 0 40px var(--glow-color); }
}

.logo-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.main-content {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px var(--text-glow);
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 400;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-item {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(2) { animation-delay: 0.5s; }
.countdown-item:nth-child(3) { animation-delay: 1s; }
.countdown-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.countdown-number {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    width: 0%;
    animation: progressGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px var(--glow-color);
}

@keyframes progressGlow {
    from { box-shadow: 0 0 20px var(--glow-color); }
    to { box-shadow: 0 0 30px var(--glow-color), 0 0 40px var(--glow-color); }
}

.progress-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 400;
}

.social-section {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.social-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: rgba(255, 20, 147, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

.footer {
    text-align: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.footer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.7;
    font-weight: 300;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}