* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    --black: #000000;
    background: #000 radial-gradient(circle farthest-side at 65% 43%, #c9fa494d, var(--black) 42%);
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    min-height: 100vh;
}


.site-wrapper {
    max-width: 1300px;
    width: calc(100% - 32px);
    margin: 16px auto;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(201, 250, 73, 0.35);
    border-radius: 28px;
    padding: 0 32px 32px 32px;
    transition: all 0.2s;
}

iframe{
    max-width: 100%;
    width: 97%;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    height: 587px;
}

@media (max-width: 768px) {
    .site-wrapper {
        width: calc(100% - 24px);
        margin: 12px auto;
        padding: 0 20px 32px 20px;
    }
}

@media (max-width: 580px) {
    .site-wrapper {
        padding: 0 16px 28px 16px;
    }
}


a {
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c9fa49;
    background: transparent;
    padding: 10px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #c9fa49;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #c9fa49;
    color: #000;
    border-color: #c9fa49;
    transform: scale(0.97);
}

button.btn-outline {
    background: transparent;
}


.section-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9fa49;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 24px 0 20px 0;
    border-bottom: 1px solid rgba(201, 250, 73, 0.3);
    margin-bottom: 40px;
}

.logo a {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: #fff;
    text-transform: uppercase;
}

.logo a span {
    color: #c9fa49;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #c9fa49;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: #c9fa49;
    cursor: pointer;
}

select option {
    color: #000;
}

@media (max-width: 860px) {
    .nav-menu {
        width: 100%;
        justify-content: space-between;
        margin-top: 16px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 20px 0 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }
}


.banner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('/assetsassets/img/center-img.jpg') center/cover no-repeat;
    border-radius: 32px;
    padding: 100px 40px;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(201, 250, 73, 0.2);
}

.banner .section-sub {
    font-size: 16px;
    letter-spacing: 4px;
}

.banner .section-title {
    font-size: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner .section-text {
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .banner {
        padding: 60px 20px;
    }

    .banner .section-title {
        font-size: 38px;
    }
}


.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1.1;
    min-width: 240px;
}

.about-img img {
    width: 100%;
    border-radius: 28px;
    display: block;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid #c9fa4933;
}

.about-content {
    flex: 1;
}

.about-content .section-text {
    margin-top: 16px;
    line-height: 1.6;
}

.about-text-group {
    margin-top: 18px;
}

.about-text-group p {
    margin-bottom: 18px;
}

@media (max-width: 860px) {
    .about-grid {
        flex-direction: column;
    }
}


.advantages {
    background: #c9fa49;
    border-radius: 32px;
    padding: 48px 32px;
    margin-bottom: 90px;
}

.advantages-wrap {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.adv-card {
    background: transparent;
    border: 1px solid #000;
    border-radius: 24px;
    padding: 32px 24px;
    flex: 1;
    min-width: 220px;
    text-align: center;
    transition: transform 0.2s;
}

.adv-card:hover {
    transform: translateY(-6px);
}

.adv-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
    background: #c9fa49;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon img {
    width: auto;
    height: 48px;
    filter: brightness(0);
}

.adv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #c9fa49;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.adv-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 780px) {
    .advantages {
        padding: 36px 20px;
    }
}


.games-section {
    margin-bottom: 90px;
}

.games-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.game-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 250, 73, 0.3);
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: #c9fa49;
    transform: scale(1.01);
}

.game-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 24px 24px 28px;
}

.game-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.star-icon {
    font-size: 22px;
    color: #c9fa49;
}

.game-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.game-btn {
    border: 2px solid #c9fa49;
    background: transparent;
    padding: 10px 0;
    text-align: center;
    display: inline-block;
    width: 100%;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    color: #c9fa49;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    transition: 0.2s;
}

.game-btn:hover {
    background: #c9fa49;
    color: #000;
}


.faq-section {
    margin-bottom: 90px;
}

.faq-container {
    margin-top: 32px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 250, 73, 0.25);
    border-radius: 24px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #c9fa49;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.faq-question:hover {
    background: rgba(201, 250, 73, 0.08);
}

.faq-question .faq-icon {
    font-size: 28px;
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 28px 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.2s;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding: 28px 28px 28px 28px;
    border-top: 1px solid rgba(201, 250, 73, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


.footer {
    border-top: 2px solid #c9fa49;
    padding-top: 40px;
    margin-top: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #c9fa49;
}

.disclaimer {
    background: rgba(0, 0, 0, 0.6);
    padding: 16px 24px;
    border-radius: 10px;
    margin: 24px 0 28px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    padding-bottom: 16px;
}

.contacts-section {
    margin-bottom: 60px;
}

.contacts-container {
    max-width: 900px;
    margin: 0 auto;
}

.contacts-header {
    text-align: center;
    margin-bottom: 48px;
}

.contacts-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
}

.form-wrapper {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 250, 73, 0.25);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(4px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c9fa49;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 250, 73, 0.3);
    border-radius: 16px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #fff;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9fa49;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9fa49' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.btn-submit {
    background: transparent;
    border: 2px solid #c9fa49;
    border-radius: 100px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #c9fa49;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #c9fa49;
    color: #000;
    transform: scale(0.98);
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background: #000;
    border: 2px solid #c9fa49;
    border-radius: 32px;
    padding: 40px 48px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    margin-top: -100px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: #c9fa49;
    color: #000;
    font-size: 42px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.popup-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.5;
}

.popup-close {
    background: transparent;
    border: 2px solid #c9fa49;
    border-radius: 100px;
    padding: 10px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    color: #c9fa49;
    cursor: pointer;
    transition: all 0.2s;
}

.popup-close:hover {
    background: #c9fa49;
    color: #000;
}


.legal-section {
    margin-bottom: 80px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(201, 250, 73, 0.25);
    padding-bottom: 24px;
}

.breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #c9fa49;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

.breadcrumb .current {
    color: #c9fa49;
}

.legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.legal-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-content {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 250, 73, 0.2);
    border-radius: 28px;
    padding: 48px;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #c9fa49;
    margin-bottom: 16px;
}

.legal-block p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.legal-block ul {
    margin: 16px 0 16px 24px;
}

.legal-block li {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.legal-block strong {
    color: #c9fa49;
    font-weight: 600;
}

.legal-email {
    color: #c9fa49;
    text-decoration: none;
    border-bottom: 1px dotted #c9fa49;
    transition: all 0.2s;
}

.legal-email:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.browser-links {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.browser-links li {
    margin-bottom: 8px;
}

.browser-links a {
    color: #c9fa49;
    text-decoration: none;
    transition: color 0.2s;
}

.browser-links a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 32px;
    }

    .legal-content {
        padding: 28px 24px;
    }

    .legal-block h2 {
        font-size: 20px;
    }

    .legal-block p,
    .legal-block li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 20px 16px;
    }

    .legal-block {
        margin-bottom: 28px;
    }
}


















@media (max-width: 768px) {
    .form-wrapper {
        padding: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
    }

    .popup-content {
        padding: 32px 24px;
    }
}
































@media (max-width: 560px) {
    .footer-links {
        gap: 18px;
        flex-direction: column;
        align-items: center;
    }
    iframe{
        height: 474px;
    }
}