:root {
    --primary-color: #12161d;
    --primary-color-light: #0e1015;
    --btn-dark-color: #232e3f;

    --secondary-color: #00ff3a;
    --btn-secondary-color: linear-gradient(180deg, #00b46f 46%, #009141);
    --tertiary-color: #000;
    --red-color: rgb(255, 36, 0);
}

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

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

/* Header Left Section */
.header-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.logo-header-img {
    width: 142px;
    object-fit: contain;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgb(210, 238, 237);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
}

.nav-item:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.nav-icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: rgb(59, 111, 109);
    transition: background-color 0.2s;
}

.nav-icon:has(img[src*="icon-akcii"])::after {
    mask-image: url('img/icon-akcii.svg');
    -webkit-mask-image: url('img/icon-akcii.svg');
}

.nav-icon:has(img[src*="icon-turniry"])::after {
    mask-image: url('img/icon-turniry.svg');
    -webkit-mask-image: url('img/icon-turniry.svg');
}

.nav-icon:has(img[src*="icon-vip"])::after {
    mask-image: url('img/icon-vip.svg');
    -webkit-mask-image: url('img/icon-vip.svg');
}

.nav-item:hover .nav-icon::after {
    background-color: #ffffff;
}

/* Header Promo */
.header-promo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-text {
    color: rgb(210, 238, 237);
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    margin-left: auto;
}

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

.download-links {
    display: none;
    align-items: center;
    gap: 0px;
    width: fit-content;
    padding: 5px 8px;
    border-radius: 12px;
}

.download-label {
    color: #fff;
    font-size: 12px;
    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.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;
}

.btn-signup {
    padding: 12px 24px;
    background: var(--red-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
    border: none;
}

.btn-signup:hover {
    background: rgb(233, 36, 6);
}

.btn-login {
    padding: 12px 15px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid var(--red-color);
}

.btn-login:hover {
    background: var(--red-color);
}


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

@media (max-width: 768px) {
    .header-content {
        padding: .5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-left {
        gap: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-item {
        font-size: 12px;
    }

    .nav-icon {
        width: 16px;
        height: 16px;
    }

    .promo-text {
        font-size: 12px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-signup,
    .btn-login {
        padding: 10px 16px;
        font-size: 11px;
    }
}


.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;
    margin-top: auto;
}

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

@media (max-width: 1160px) {
    .promo-text {
        display: none;
    }
}

@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: #d7b8a3;
    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-secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    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%, #3b1c11 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(--red-color);
    color: #ffffff;
    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;
    }
    .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-nav {
        display: none;
    }

    .header-promo {
        display: none;
    }

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

    .logo-header-img {
        width: 80px;
    }
}

/* 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(--red-color);
    color: #ffffff;
    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);
}