:root {
    --primary-color: #161c24;
    --primary-color-light: #0e1015;
    --btn-dark-color: #232e3f;
    --yellow-color: #e1b54b;

    --secondary-color: rgb(0, 171, 85);
    --secondary-color-transparent: rgba(0, 171, 85, 0.5);
    --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: var(--primary-color);
    z-index: 1000;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.burger-menu {
    display: none;
    align-items: center;
}

.burger-menu-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: auto;
}

.header-content {
    padding: 5px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.logo-img {
    object-fit: contain;
    /* height: 150px; */
    width: 108px;
}

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

/* Header Search Section */

.header-search {
    flex: 1;
    max-width: 380px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 0 16px;
    position: relative;
    background: var(--tertiary-color);
    height: 45px;
    gap: 12px;
    margin-right: auto;
}

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

.search-icon-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.5;
    /* filter: brightness(0) saturate(100%) invert(67%) sepia(95%) saturate(1352%) hue-rotate(75deg) brightness(119%) contrast(119%); */
}

.search-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.search-input {
    flex: 1;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.search-input::placeholder {
    color: #45505c;
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.download-links {
    display: none;
    align-items: center;
    gap: 0px;
    background: var(--secondary-color-transparent);
    width: fit-content;
    padding: 4px 8px;
    border-radius: 8px;
}

.download-label {
    color: #ffffffda;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    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.7;
}

.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;
}

.btn-login {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.8;
}

.btn-signup {
    padding: 12px 24px;
    background: var(--secondary-color);
    color: rgb(255 255 255 / 90%);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-signup:hover {
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .header-content {
        padding: 15px 5px;
        gap: 5px;
    }

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

    .header-search {
        max-width: none;
        min-width: 0;
        padding: 0 12px;
        height: 40px;
    }

    .search-input {
        font-size: 12px;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-signup {
        padding: 10px 16px;
    }
}


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

    @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: 75%;
    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(--yellow-color);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;

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

.btn-register {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    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: linear-gradient(90deg, var(--primary-color) 0%, #113b14 100%);
    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(--secondary-color);
    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) {
    .download-links {
        display: flex;
    }

    .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-content {
     flex-direction: column;   justify-content: center;
    }
    .header-actions {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }

    .header-search,
    .burger-menu,
    .search-icon-link {
        display: none;
    }
    .btn-login {
        margin-left: auto;
    }

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

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

/* 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(--yellow-color);
    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);
}