:root {
    --primary-color: #2C2C2C;
    --secondary-color: #28A745;
    --tertiary-color: #000;
    --blue-color: #01a4ff;
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    z-index: 1000;
}

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

/* Header styles */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo .logo-img {
    height: 70px;
    width: auto;
}

.logo-img {
    object-fit: contain;
    height: 150px;
    width: 100%;
}

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

.form-container .logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 120px);
    height: calc(100% + 120px);
    max-width: 375px;
    max-height: 270px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.05) 65%, rgba(255, 255, 255, 0) 85%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

.header-nav {
    margin-right: auto;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    border-radius: 8px;
    gap: 0;
}

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

    .header-content {
        padding: 0;
    }

    .header-actions {
        gap: 8px;
    }

    .header-icon-btn {
        width: 38px;
        height: 38px;
    }

    .header-logo .logo-img {
        height: 40px;
    }

    .btn-register-header,
    .btn-signin-header {
        padding: 10px 18px;
        font-size: 12px;
    }
}

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

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.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;
    /* height: 100vh; */
    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 {
    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;
    margin-top: auto;
}

.banner-img {
    width: 85%;
    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;
    margin-bottom: 10px;
}

.headline-2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;

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

.input-group {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    background: white;
    font-size: 16px;
    color: #333;
}

.input-field::placeholder {
    color: #999;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 18px;
}

.agreement {
    text-align: center;
    color: white;
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 1.4;
}


.btn-register {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login {
    background: var(--blue-color);
    color: white;
}

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

.login-link {
    text-align: center;
    margin-top: 20px;
    color: white;
    font-size: 14px;
}

.login-link a {
    color: white;
    text-decoration: underline;
}

/* Content Section */
.content-section {
    position: relative;
    /* min-height: 100vh; */
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--tertiary-color) 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(--blue-color);
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.content-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--secondary-color), 0.4);
}

.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 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}



@media (max-width: 768px) {
    .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;
    }
}

/* 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;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.crypto-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}

.gcb-logo {
    background: #22c55e;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
}

.gcb-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gcb-subtext {
    color: white;
    font-size: 10px;
    margin-top: 2px;
}

.stop-hand-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stop-hand-icon svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 100%;
    }

    .footer-right {
        justify-content: space-between;
    }
}

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

    .crypto-info p {
        font-size: 12px;
    }

    .gcb-logo {
        padding: 10px 16px;
    }

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

    .gcb-subtext {
        font-size: 9px;
    }

    .stop-hand-icon {
        width: 36px;
        height: 36px;
    }

    .stop-hand-icon svg {
        width: 24px;
        height: 24px;
    }
}




.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.2s;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-item-active {
    background: var(--blue-color);
    color: #ffffff;
}

.nav-item-active:hover {
    background: var(--blue-color);
    color: #ffffff;
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) invert(0.6);
}

.nav-item-active .nav-icon {
    filter: brightness(0) invert(1);
}

.nav-text {
    white-space: nowrap;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.btn-login {
    padding: 14px 20px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

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

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

.btn-registration {
    padding: 14px 20px;
    background: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

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

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

    .header-nav {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-login,
    .btn-registration {
        padding: 9px 16px;
        font-size: 14px;
    }
}