:root {
    --primary-color: linear-gradient(to top, rgba(0, 50, 102, 0) 0%, #003266 73%, #003266 98%);
    --primary-color-2: linear-gradient(to left, rgba(0, 49, 102, 0.881) 0%, #003266 73%, #003266 98%);
    --primary-color-invert: linear-gradient(to bottom, rgba(0, 50, 102, 0) 0%, #003266 73%, #003266 98%);
    --primary-color-light: #0e1015;
    --btn-orange: #ff6b35;
    --btn-blue: #4a9eff;
    --yellow-color: #e1b54b;

    --secondary-color: rgb(5, 69, 136);
    --tertiary-color: #212b36;
}

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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100dvh;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background: #0d1421; */
    z-index: 1000;
    background-image: linear-gradient(to top, rgba(0, 50, 102, 0) 0%, #003266 73%, #003266 98%);
    background-color: #0a519e;
}

/* Header Top Section */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    gap: 12px;
}

.download-links {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 20px;
}

.download-label {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.download-nav {
    display: flex;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    text-decoration: none;
    transition: opacity 0.2s;
    opacity: 0.5;
}

.download-link:hover {
    opacity: 0.8;
}

.download-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.download-link-text {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    padding: 6px 12px;
    background: #232e3f;
    border-radius: 6px;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.download-link-text:hover {
    opacity: 0.8;
}

.bypass-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: border 0.2s;
}

.bypass-button:hover {
    border: 1px solid white;
}

.bypass-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
    opacity: 0.5;
}

.bypass-text {
    color: #fff;
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}

.settings-group {
    display: flex;
    align-items: center;
    gap: 3px;
}

.settings-item {
    display: flex;
}

.settings-button,
.language-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: var(--secondary-color);
    border: none;
    border-radius: 20px 3px 3px 20px;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

.language-button {
    border-radius: 3px 20px 20px 3px;
    text-decoration: none;
}


.settings-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.settings-text,
.time-text,
.language-text {
    color: #fff;
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    fill: #fff;
    margin-left: 4px;
}

.flag-icon {
    display: inline-block;
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

.free-money-button {
    margin-left: auto;
    margin-right: 12px;
}

.free-money-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #7ed321;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: opacity 0.2s;
    position: relative;
}

.free-money-link:hover {
    opacity: 0.9;
}

.free-money-icon {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="%23fff" d="M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z"/><path fill="%23fff" d="M10 4c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm0 10c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.promo-menu {
    display: flex;
}

.promo-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #4a9eff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.promo-button:hover {
    opacity: 0.8;
}

.promo-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-registration {
    padding: 10px 20px;
    background: var(--btn-orange);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-registration:hover {
    background: #f28057;
}

.btn-login-header {
    padding: 10px 20px;
    background: var(--btn-blue);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-login-header:hover {   
    background: #77b6fe;
}

/* Header Bottom Section */
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(0, 49, 102, 0.5);
    padding: 4px 23px;
    border-radius: 20px;
    margin-right: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #e1b54b
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.aviator-link {
    color: #ff6b9d !important;
}

.aviator-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.aviator-icon {
    width: 60px;
    height: 16px;
    fill: #ff6b9d;
}

.bonus-buy-link {
    border: 2px solid #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
}

.bonus-buy-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bonus-buy-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.bonus-buy-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.nav-dropdown-btn .dropdown-arrow {
    width: 10px;
    height: 10px;
    fill: #fff;
}

.nav-more-button {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s;
}

.nav-more-button:hover {
    color: #e1b54b;
}

.logo-img-banner {
    width: 100%;
    object-fit: contain;
}

.form-container .logo {
    position: relative;
}

@media (max-width: 1200px) {
    .header-top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .free-money-button {
        margin-left: 0;
        margin-right: 0;
    }

    .main-navigation {
        gap: 12px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
}
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
}
@media (max-width: 768px) {
    .header {
        display: flex;
        flex-direction: column;
    }
    .header-top {
        order: 2;
    }
    .settings-group {
        display: none;
    }
    .header-top {
        padding: 8px 12px;
    }

    .header-bottom {
        padding: 10px 12px;
    }

    .download-label,
    .bypass-text,
    .settings-text,
    .time-text,
    .language-text {
        font-size: 12px;
    }

    .download-link-text,
    .free-money-link,
    .btn-registration,
    .btn-login-header {
        font-size: 12px;
        padding: 6px 12px;
    }

    .main-navigation {
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 12px;
        padding: 6px 8px;
    }

    .aviator-icon {
        width: 50px;
        height: 14px;
    }
}


.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 120px 20px 0px 20px;
    box-shadow: inset 0 0 60px 80px var(--primary-color);
    background-image: var(--primary-color-invert);
    background-color: #0a519e;

    @media (max-width: 768px) {
        align-items: center;
    }
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;

    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    flex-shrink: 0;
    margin: auto;
    z-index: 1;
}

.banner-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }

    .banner-container {
        display: none;
    }
}

.logo {
    display: flex;
    justify-content: center;
}

.headline-1 {
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.headline-2 {
    text-align: center;
    color: var(--btn-orange);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;

    @media (max-width: 768px) {
        font-size: 25px;
    }
}

.btn-register {
    width: 100%;
    padding: 18px;
    background: var(--btn-orange);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-register:hover {
    transform: scale(1.02);
}

/* Content Section */
.content-section {
    position: relative;
    background: var(--primary-color-2);
    padding: 60px 20px;
}

.content-max-width {
    max-width: 900px;
    margin: 0 auto;
}

.content-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.content-button-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.content-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--btn-orange);
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.content-btn:hover {
    transform: scale(1.05);
}

.text-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 25px;
}

.text-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .search-icon-link {
        display: flex;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-title {
        font-size: 24px;
    }

    .content-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .text-content {
        font-size: 15px;
        line-height: 1.7;
    }

    .text-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .header-search {
        display: none;
    }

    .form-container {
        padding: 0 40px 80px;
    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bypass-button {
        display: none;
    }
}

/* Footer */
.footer {
    background: #14161c;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.age-restriction-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(200, 200, 200, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.age-number {
    font-size: 22px;
    font-weight: 700;
    color: rgba(200, 200, 200, 0.9);
    position: absolute;
}

.age-plus {
    font-size: 10px;
    color: rgba(200, 200, 200, 0.9);
    position: absolute;
    top: 8px;
    left: 32px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer-disclaimer p:first-child {
    margin-bottom: 5px;
}


@media (max-width: 768px) {
    .footer {
        padding: 15px 20px;
    }

    .age-restriction-icon {
        width: 45px;
        height: 45px;
    }

    .age-number {
        font-size: 20px;
    }

    .age-plus {
        font-size: 9px;
        top: 7px;
        left: 28px;
    }

    .footer-disclaimer p {
        font-size: 12px;
    }
}





.form-banner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.btn-login-banner {
    width: 100%;
    padding: 18px;
    background: var(--btn-blue);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login-banner:hover {
    transform: scale(1.02);
}