:root {
  --text-light:#333333;       /* основной текст */
  --border-color:#cccccc;     /* границы */
  --accent-gold:#4a90e2;      /* акцент (синий-серый) */
  --primary-dark:#f5f5f5;     /* тёмный фон → светлый фон */
  --text-dark-gray:#666666;   /* вторичный текст */
  --accent-green:#6abf69;     /* дополнительный акцент (зелёный) */
  --primary:#d8d2d2;          /* фон сайта */
  --accent-red:#eba657;       /* вместо красного — нейтральный серый */
  --text-gray:#777777;        /* серый текст */
  --text-white:#e46a6a;       /* текст на светлом фоне */
  --primary-light:#fafafa;    /* светлый фон */
}

* {
    padding: 0;
    box-sizing: border-box;
    margin: 0
}

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden;
    color: var(--text-light);
    background-color: var(--primary);
    line-height: 1.6;
    font-family: Inter, sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    font-family: Poppins, sans-serif
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease
}

.container {
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.text-gold {
    color: var(--accent-gold)
}

.text-white {
    color: var(--text-white)
}

.section-header {
    margin-bottom: 3rem;
    text-align: center
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: .75rem;
    color: var(--text-white)
}

.section-description {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    z-index: 50
}

.header-content {
    padding: 1rem 0;
    justify-content: space-between;
    align-items: center;
    display: flex
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: Poppins, sans-serif
}

.desktop-nav {
    display: none
}

.nav-link {
    color: var(--text-white);
    transition: color .2s;
    margin-left: 2rem
}

.nav-link:hover {
    color: var(--accent-gold)
}

.mobile-menu-button button {
    font-size: 1.5rem;
    border: none;
    color: var(--text-white);
    background: none;
    cursor: pointer
}

.mobile-nav {
    padding: 1rem 0;
    flex-direction: column;
    display: none
}

.mobile-nav .nav-link {
    padding: .5rem 0;
    margin-left: 0
}

.mobile-nav.active {
    display: flex
}

.hero-banner {
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
    background-image: linear-gradient(to right, var(--primary-dark), var(--primary-light))
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-background img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .55);
    z-index: 1
}

.hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    z-index: 10
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.2
}

.hero-title span {
    display: block
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-gray)
}

.hero-button {
    padding: .75rem 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: all .3s ease;
    background-color: var(--accent-gold);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 9999px;
    display: inline-block
}

.hero-button:hover {
    transform: scale(1.05);
    background-color: #e6a533
}

.age-badge {
    padding: .25rem .75rem;
    right: 1.25rem;
    position: absolute;
    bottom: 1.25rem;
    background-color: hsla(0, 0%, 100%, .12);
    align-items: center;
    border-radius: 9999px;
    display: flex;
    z-index: 10
}

.age-number {
    font-weight: 700;
    margin-right: .5rem;
    color: var(--text-white)
}

.age-text {
    font-size: .875rem;
    color: var(--text-gray)
}

.casinos-section {
    padding: 4rem 0;
    background-color: var(--primary)
}

.casino-card {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all .3s ease;
    background-color: var(--primary-dark);
    border-radius: .75rem
}

.casino-card:hover {
    transform: translateY(-.25rem);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .15)
}

.casino-content,
.casino-logo-area {
    flex-direction: column;
    display: flex
}

.casino-logo-area {
    margin-bottom: 1.5rem;
    align-items: center
}

.casino-logo-container {
    height: 100px;
    padding: 1rem;
    justify-content: center;
    margin-bottom: .75rem;
    align-items: center;
    border-radius: .5rem;
    width: 200px;
    display: flex
}

.casino-logo {
    max-width: 100%;
    max-height: 100%
}

.casino-rating {
    align-items: center;
    margin-top: .5rem;
    display: flex
}

.stars {
    margin-right: .5rem;
    color: var(--accent-gold)
}

.rating-text {
    font-weight: 700;
    color: var(--text-white)
}

.casino-benefits {
    margin-bottom: 1.5rem
}

.casino-name {
    font-size: 1.25rem;
    margin-bottom: .75rem;
    color: var(--accent-gold)
}

.benefits-list {
    list-style: none
}

.benefits-list li {
    margin-bottom: .5rem;
    align-items: flex-start;
    display: flex
}

.benefits-list i {
    margin-right: .5rem;
    color: var(--accent-green);
    margin-top: .25rem
}

.casino-cta {
    flex-direction: column;
    align-items: center;
    display: flex
}

.bonus-amount {
    margin-bottom: 1rem;
    text-align: center
}

.amount-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red)
}

.bonus-text {
    font-size: .875rem;
    color: var(--text-gray)
}

.get-bonus-button {
    padding: .75rem 2rem;
    font-weight: 700;
    color: var(--text-white);
    transition: all .3s ease;
    text-align: center;
    background-color: var(--accent-red);
    border-radius: 9999px;
    width: 100%
}

.get-bonus-button:hover {
    transform: scale(1.05);
    background-color: #d84343
}

.terms-text {
    font-size: .75rem;
    color: var(--text-dark-gray);
    margin-top: .5rem
}

.about-section {
    padding: 4rem 0;
    background-color: var(--primary-light)
}

.about-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto
}

.about-text {
    text-align: left;
    margin-top: 1.5rem
}

.about-text p {
    margin-bottom: 1rem
}

.faq-section {
    padding: 4rem 0;
    background-color: var(--primary)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: .5rem
}

.faq-question {
    padding: 1rem;
    justify-content: space-between;
    background-color: var(--primary-dark);
    align-items: center;
    cursor: pointer;
    display: flex
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform .2s
}

.faq-answer {
    padding: 1rem;
    background-color: var(--primary-light);
    display: none
}

.faq-item.active .faq-answer {
    display: block
}

.faq-item.active .faq-question i {
    transform: rotate(45deg)
}

.responsible-section {
    padding: 4rem 0;
    background-color: var(--primary-dark)
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto
}

.responsible-header {
    margin-bottom: 2.5rem;
    text-align: center
}

.age-badge-large {
    padding: .75rem;
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 9999px;
    display: inline-block
}

.age-badge-large span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark)
}

.responsible-list,
.responsible-text p {
    margin-bottom: 1.5rem
}

.responsible-list {
    list-style-type: disc;
    padding-left: 1.25rem
}

.responsible-list li {
    margin-bottom: .75rem
}

.help-text {
    font-weight: 600
}

.support-orgs {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    display: grid
}

.support-card {
    padding: 1rem;
    transition: background-color .3s ease;
    flex-direction: column;
    text-align: center;
    background-color: hsla(0, 0%, 100%, .12);
    align-items: center;
    border-radius: .5rem;
    display: flex
}

.support-card:hover {
    background-color: hsla(0, 0%, 100%, .19)
}

.org-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--accent-gold)
}

.org-desc {
    font-size: .875rem;
    color: var(--text-white)
}

.commission {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-top: 2rem
}

.commission a {
    color: var(--text-white)
}

.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--primary-dark)
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: grid
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-family: Poppins, sans-serif
}

.footer-text {
    font-size: .875rem;
    margin-bottom: 1rem;
    color: var(--text-dark-gray)
}

.footer-age {
    margin-top: 1rem
}

.footer-age,
.footer-age-badge {
    align-items: center;
    display: flex
}

.footer-age-badge {
    padding: .25rem .5rem;
    justify-content: center;
    font-size: 1.125rem;
    border: 2px solid var(--text-white);
    font-weight: 700;
    margin-right: .5rem;
    color: var(--text-white);
    border-radius: .25rem
}

.footer-age-text {
    font-size: .875rem;
    color: var(--text-dark-gray)
}

.footer-menu {
    list-style: none
}

.footer-menu li {
    margin-bottom: .5rem
}

.footer-menu a {
    color: var(--text-dark-gray);
    transition: color .2s
}

.footer-menu a:hover {
    color: var(--accent-gold)
}

.footer-bottom {
    padding-top: 1.5rem;
    font-size: .875rem;
    color: var(--text-dark-gray);
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-top: 2.5rem
}

@media (min-width:768px) {
    .desktop-nav {
        display: flex
    }

    .mobile-menu-button {
        display: none
    }

    .hero-title {
        font-size: 3.75rem
    }

    .hero-description {
        font-size: 1.25rem
    }

    .casino-content {
        flex-direction: row;
        align-items: center
    }

    .casino-logo-area {
        margin-bottom: 0;
        width: 25%
    }

    .casino-benefits {
        padding: 0 1.5rem;
        margin-bottom: 0;
        width: 50%
    }

    .casino-cta {
        width: 25%
    }

    .get-bonus-button {
        width: auto
    }

    .support-orgs {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .section-title {
        font-size: 2.5rem
    }
}

@media (min-width:1024px) {
    .hero-title {
        font-size: 4.5rem
    }
}