* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
}

.language-switcher {
    position: fixed;
    top: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 100;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.lang-btn {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.logo-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease-out 0.2s both;
}

.logo-top img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
    color: #FFFFFF;
    animation: fadeIn 1.2s ease-out;
}

.title {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.dates {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 50px;
    color: #FFFFFF;
    opacity: 0.95;
}

.status-message {
    margin-bottom: 60px;
    line-height: 1.8;
}

.status-en,
.status-ru {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.3s ease;
}

.status-ru {
    display: none;
}

.status-en:last-child,
.status-ru:last-child {
    margin-bottom: 0;
}

.buttons-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-button {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.social-button:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-button:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
    }

    .dates {
        font-size: 26px;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    .status-en,
    .status-ru {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .status-message {
        margin-bottom: 50px;
    }

    .buttons-container {
        gap: 20px;
    }

    .social-button {
        font-size: 15px;
        padding: 14px 32px;
    }

    .container {
        padding: 30px 20px;
    }

    .language-switcher {
        top: 30px;
        right: 30px;
        gap: 8px;
    }

    .lang-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .logo-top {
        margin-bottom: 30px;
    }

    .logo-top img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .dates {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .status-en,
    .status-ru {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .status-message {
        margin-bottom: 40px;
    }

    .buttons-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .social-button {
        font-size: 14px;
        padding: 12px 28px;
        width: 100%;
        max-width: 280px;
    }

    .container {
        padding: 20px 15px;
    }

    .language-switcher {
        top: 20px;
        right: 20px;
        gap: 6px;
    }

    .lang-btn {
        font-size: 12px;
        padding: 7px 14px;
    }

    .logo-top {
        margin-bottom: 25px;
    }

    .logo-top img {
        max-width: 120px;
    }
}
