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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 25, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 20px;
}

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

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

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

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

.header-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(40, 40, 45, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5eb5ff;
    transition: all 0.2s;
}

.header-icon-btn:hover {
    background: rgba(50, 50, 55, 0.8);
    transform: scale(1.05);
}

.btn-register-header {
    padding: 12px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5eb5ff 0%, #0072d3 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: none;
    transition: all 0.2s;
}

.btn-register-header:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(94, 181, 255, 0.3);
}

.btn-signin-header {
    padding: 12px 28px;
    border-radius: 12px;
    background: rgba(40, 40, 45, 0.8);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: none;
    transition: all 0.2s;
}

.btn-signin-header:hover {
    background: rgba(50, 50, 55, 0.8);
    transform: scale(1.05);
}

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

    .header-actions {
        gap: 8px;
    }

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

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

.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;
    align-items: end;
    justify-content: center;
    padding: 80px 20px 0px 20px;

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

.form-container {
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    flex-shrink: 0;
    margin: auto;
}

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

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

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

.logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

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


.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: #5eb5ff;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;

    @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: #5eb5ff;
    font-size: 18px;
}

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

.rules-link {
    color: #5eb5ff;
    text-decoration: underline;
    cursor: pointer;
}

.rules-link:hover {
    color: #7fc5ff;
}

.btn-register {
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, #0051a3, #5eb5ff);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login {
    background: linear-gradient(to top, #4ce900, #4ce892);
    margin-bottom: 15px;
}

.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(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 30, 0.95) 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: linear-gradient(135deg, #5eb5ff 0%, #0072d3 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    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(94, 181, 255, 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: #5eb5ff;
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-content strong {
    color: #5eb5ff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 15px;
    }

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

