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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #121212 0%, #0D0D0D 50%, #080808 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px
}

.presentation-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    opacity: 0.25;
    z-index: 2;
    animation: fadeIn 1s ease-out
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8) }
    to { opacity: 0.25; transform: translate(-50%, -50%) scale(1) }
}

.fireworks {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: explode 2s ease-out infinite
}

@keyframes explode {
    0% { transform: scale(1); opacity: 1 }
    100% { transform: scale(20); opacity: 0 }
}

.container {
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 100%
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite
}

@keyframes float {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-10px) }
}

.happy-new-year {
    font-size: 1rem;
    color: #FF443B;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate
}

@keyframes glow {
    from { text-shadow: 0 0 10px #FF443B, 0 0 20px #FF443B }
    to { text-shadow: 0 0 20px #FF443B, 0 0 40px #FF443B }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #5B4DED, #0A85FF, #C083FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2
}

.description {
    font-size: 1rem;
    color: #757982;
    margin-bottom: 30px;
    letter-spacing: 2px
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.countdown-item {
    background: linear-gradient(145deg, rgba(91, 77, 237, 0.2), rgba(10, 133, 255, 0.1));
    border: 1px solid rgba(91, 77, 237, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 70px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(91, 77, 237, 0.2)
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5B4DED;
    display: block;
    line-height: 1
}

.countdown-label {
    font-size: 0.7rem;
    color: #B0B0B0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px
}

.opening-date {
    font-size: 1rem;
    color: #F3F4F6;
    margin-bottom: 20px;
    font-weight: 500
}

.opening-date span {
    color: #5B4DED;
    font-weight: 700
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(91, 77, 237, 0.3), rgba(10, 133, 255, 0.2));
    border: 1px solid rgba(91, 77, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(91, 77, 237, 0.5)
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    text-align: center;
    border-top: 1px solid rgba(91, 77, 237, 0.2)
}

.footer-content {
    color: #757982;
    font-size: 0.75rem
}

.footer-content a {
    color: #5B4DED;
    text-decoration: none;
    transition: color 0.3s ease
}

.footer-content a:hover {
    color: #0A85FF
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) }
    50% { opacity: 1; transform: scale(1) }
}

@media (min-width: 480px) {
    h1 { font-size: 3rem }
    .logo { width: 180px }
    .countdown { gap: 15px }
    .countdown-item { padding: 18px 22px; min-width: 80px }
    .countdown-number { font-size: 2rem }
    .happy-new-year { font-size: 1.2rem }
}

@media (min-width: 768px) {
    body { padding: 40px }
    .container { padding: 30px; max-width: 800px }
    .logo { width: 222px; margin-bottom: 30px }
    .happy-new-year { font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 2px }
    h1 { font-size: 4rem; margin-bottom: 15px }
    .description { font-size: 1.5rem; margin-bottom: 50px; letter-spacing: 3px }
    .countdown { gap: 30px; margin-bottom: 40px }
    .countdown-item { padding: 25px 35px; min-width: 120px; border-radius: 20px }
    .countdown-number { font-size: 3rem }
    .countdown-label { font-size: 0.9rem; margin-top: 10px; letter-spacing: 2px }
    .opening-date { font-size: 1.2rem; margin-bottom: 30px }
    .social-links { gap: 20px; margin-top: 40px }
    .social-link { width: 50px; height: 50px }
    .social-link svg { width: 24px; height: 24px }
    .footer { padding: 20px }
    .footer-content { font-size: 0.9rem }
    .presentation-image { width: 300px }
}

@media (min-width: 1024px) {
    .presentation-image { width: 400px }
}
