:root {
    --primary-color: #2a2a2a;
    --secondary-color: #FFD977;
    --tertiary-color: radial-gradient(104.27% 245.79% at -23.28% -82.35%, #000000, #4600a000), radial-gradient(253.76% 173.64% at 126.09% 147.48%, #daa520, #0136bf00 99%), #000;
    --btn-dark-color: #3a3a3a;
}

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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    /* overflow: hidden; */
    position: relative;
    background: var(--tertiary-color);
}

.download-links {
    display: none;
    align-items: center;
    gap: 8px;
    /* background: rgba(40, 40, 45, 0.8); */
    width: fit-content;
    padding: 2px 10px;
    border-radius: 24px;
    border: 1px solid #ebbd47d1;
}

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

/* 1xslots header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.header-main {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    min-height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 200px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-login {
    background: #000000;
    color: #F5F5F5;
    border: 1px solid #D4AF37;
}

.btn-signup {
    background: linear-gradient(180deg, #FFD977 0%, #DAA520 100%);
    color: #3A3A3A;
    border: none;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-main {
        padding: 12px 15px;
        min-height: 60px;
        flex-wrap: wrap;
    }

    .logo-icon {
        width: 150px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .header-right {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .header-main {
        padding: 20px 12px;
        min-height: 55px;
    }

    .btn {
        padding: 9.5px 14px;
        font-size: 11px;
    }

    /* .btn-login {
        display: none;
    } */
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 90px 20px 0px 20px;
    background: url('img/xslots-reg-bg2x--croped.webp') no-repeat center center;
    background-size: cover;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.container > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        align-items: center;
        padding: 75px 20px 0px 20px;
    }
    .download-links {
        display: flex;
    }
    .logo-link {
        width: 100%;
        justify-content: center;
        padding-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 65px 15px 0px 15px;
    }
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    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;
    z-index: 1;

}

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

.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: var(--secondary-color);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;

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

.btn-register {
    width: 100%;
    padding: 18px;
    background: linear-gradient(180deg, #FFD977 0%, #DAA520 100%);
    color: #3A3A3A;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
    font-weight: 600;
}

.btn-login {
    background: #000000;
    color: #F5F5F5;
    border: 1px solid #D4AF37;
    border-radius: 25px;
    font-weight: 600;
}

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

.btn-login:hover {
    transform: scale(1.02);
    border-color: #FDB600;
}

/* Content Section */
.content-section {
    position: relative;
    /* min-height: 100vh; */
    /* background: var(--primary-color); */

    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: #000;
    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 22px;
    }

    .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;
    }
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* 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: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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