:root {
    --kh-gold: #D4AF37;
    --kh-gold-light: #F0C84A;
    --kh-gold-dark: #B8962E;
    --kh-green: #1a472a;
    --kh-green-light: #2d5a3d;
    --kh-white: #FFFFFF;
    --kh-bg: #0d1210;
    --kh-bg-elevated: #141c18;
    --kh-surface: rgba(20, 28, 24, 0.95);
    --kh-border: rgba(255, 255, 255, 0.08);
    --kh-border-strong: rgba(255, 255, 255, 0.14);
    --kh-text: #e8ebe9;
    --kh-text-soft: #b8c4be;
    --kh-font: 'DM Sans', system-ui, sans-serif;
    --kh-font-head: 'Syne', sans-serif;
    --kh-radius: 12px;
    --kh-radius-lg: 20px;
    --kh-radius-pill: 999px;
    --kh-ease: cubic-bezier(0.33, 1, 0.68, 1);
    --kh-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --kh-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --kh-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
    --kh-shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
    --kh-transition: 0.28s var(--kh-ease);
}

.kh-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--kh-ease-out), transform 0.7s var(--kh-ease-out);
}

.kh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.kh-reveal-delay-1 { transition-delay: 0.1s; }
.kh-reveal-delay-2 { transition-delay: 0.2s; }
.kh-reveal-delay-3 { transition-delay: 0.3s; }
.kh-reveal-delay-4 { transition-delay: 0.4s; }

@keyframes kh-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes kh-scale-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes kh-slide-up {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes kh-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.35); }
}

@keyframes kh-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes kh-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes kh-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--kh-font);
    background: var(--kh-bg);
    color: var(--kh-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.kh-menu-open,
body.kh-popup-open { overflow: hidden; }

.kh-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.kh-bg__base {
    position: absolute;
    inset: 0;
    background: var(--kh-bg);
    background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(26, 71, 42, 0.3) 0%, transparent 50%);
}

.kh-bg__accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.kh-bg__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.kh-page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.kh-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.kh-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    transition: opacity 0.5s;
}

.kh-page-hero:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

.kh-page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
    animation: kh-slide-up 0.8s var(--kh-ease-out) forwards;
}

.kh-page-hero__title {
    font-family: var(--kh-font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.kh-page-hero__sub {
    color: var(--kh-text-soft);
    font-size: 1.05rem;
}

.kh-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    background: var(--kh-bg-elevated);
    border-top: 3px solid var(--kh-gold);
    transform: translateY(100%);
    transition: transform 0.35s var(--kh-ease);
}

.kh-cookie.is-visible { transform: translateY(0); }
.kh-cookie__text { font-size: 0.9rem; color: var(--kh-text-soft); }
.kh-cookie__text a { color: var(--kh-gold-light); text-decoration: underline; }
.kh-cookie__btn {
    padding: 10px 22px;
    background: var(--kh-gold);
    color: var(--kh-bg);
    border: none;
    border-radius: var(--kh-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
}

.kh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--kh-bg-elevated);
    border-bottom: 1px solid var(--kh-border);
    transition: box-shadow 0.3s, background 0.3s;
}

.kh-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.kh-header__book {
    flex-shrink: 0;
}

.kh-header__dropdown-book {
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--kh-gold);
    color: var(--kh-bg) !important;
    text-align: center;
    font-weight: 600;
    border-radius: var(--kh-radius-pill);
}

.kh-header__dropdown-book:hover {
    background: var(--kh-gold-light);
}

.kh-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.kh-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.kh-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
}

.kh-popup__box {
    position: relative;
    background: var(--kh-bg-elevated);
    border: 1px solid var(--kh-border-strong);
    border-left: 4px solid var(--kh-gold);
    border-radius: var(--kh-radius-lg);
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--kh-shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s var(--kh-ease);
}

.kh-popup.is-open .kh-popup__box {
    transform: scale(1);
}

.kh-popup__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--kh-gold);
    margin-bottom: 1rem;
}

.kh-popup__title {
    font-family: var(--kh-font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.5rem;
}

.kh-popup__text {
    color: var(--kh-text-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.kh-popup__close {
    min-width: 120px;
}

.kh-header::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--kh-gold), var(--kh-gold-dark));
}

.kh-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--kh-white);
    font-family: var(--kh-font-head);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.kh-logo:hover { color: var(--kh-gold-light); }

.kh-nav__list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.kh-nav__link {
    color: var(--kh-text-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.kh-nav__link:hover { color: var(--kh-gold); }
.kh-nav__link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--kh-gold);
    border-radius: 1px;
}

.kh-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    color: var(--kh-text);
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.kh-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}

.kh-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.kh-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.kh-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.kh-header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px;
    background: var(--kh-bg-elevated);
    border-bottom: 1px solid var(--kh-border);
    flex-direction: column;
    gap: 4px;
    max-height: 80vh;
    overflow-y: auto;
}

.kh-header__dropdown.is-open { display: flex; }
.kh-header__dropdown a {
    color: var(--kh-text);
    text-decoration: none;
    padding: 12px 16px;
    font-weight: 500;
    border-radius: var(--kh-radius);
    transition: background 0.2s;
}

.kh-header__dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--kh-gold-light);
}

@media (max-width: 991px) {
    .kh-nav { display: none; }
    .kh-header .kh-header__book { display: none !important; }
    .kh-burger { display: flex; }
}

@media (min-width: 992px) {
    .kh-header__dropdown { display: none !important; }
}

.kh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--kh-font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--kh-radius-pill);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.kh-btn:hover { transform: translateY(-1px); }
.kh-btn--primary {
    background: var(--kh-gold);
    color: var(--kh-bg);
}
.kh-btn--primary:hover {
    background: var(--kh-gold-light);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.kh-btn--outline {
    background: transparent;
    color: var(--kh-gold);
    border: 2px solid var(--kh-gold);
}
.kh-btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.kh-section, .kh-footer { position: relative; z-index: 1; }

.kh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.kh-section {
    padding: 60px 0;
}

.kh-section__head {
    text-align: center;
    margin-bottom: 40px;
}

.kh-section__title {
    font-family: var(--kh-font-head);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.5rem;
}

.kh-section__sub {
    color: var(--kh-text-soft);
    font-size: 1.05rem;
}

.kh-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 80px;
    position: relative;
    background: linear-gradient(135deg, var(--kh-green) 0%, var(--kh-bg) 45%, var(--kh-bg) 100%);
    background-size: 200% 200%;
    animation: kh-gradient-shift 15s ease infinite;
}

.kh-hero--bg {
    background: url("../images/hero-casino.jpg") center center / cover no-repeat;
    animation: none;
}

.kh-hero--bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 18, 16, 0.85) 0%, rgba(26, 71, 42, 0.7) 50%, rgba(13, 18, 16, 0.9) 100%);
    z-index: 0;
}

.kh-hero--bg .kh-hero__content {
    position: relative;
    z-index: 1;
}

.kh-hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.kh-hero__badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid var(--kh-gold);
    border-radius: var(--kh-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--kh-gold-light);
    margin-bottom: 1.5rem;
    animation: kh-fade-in 0.8s var(--kh-ease-out) 0.2s both;
    transition: transform 0.3s, box-shadow 0.3s;
}

.kh-hero__badge:hover {
    transform: scale(1.02);
    box-shadow: var(--kh-shadow-glow);
}

.kh-hero__title {
    font-family: var(--kh-font-head);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 700;
    color: var(--kh-white);
    line-height: 1.15;
    margin-bottom: 1rem;
    animation: kh-fade-in 0.8s var(--kh-ease-out) 0.35s both;
    letter-spacing: -0.02em;
}

.kh-hero__sub {
    font-size: 1.2rem;
    color: var(--kh-text-soft);
    margin-bottom: 1.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: kh-fade-in 0.8s var(--kh-ease-out) 0.5s both;
}

.kh-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--kh-gold) 0%, var(--kh-gold-dark) 100%);
    color: var(--kh-bg);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--kh-radius-pill);
    transition: all 0.35s var(--kh-ease);
    animation: kh-fade-in 0.8s var(--kh-ease-out) 0.65s both;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.kh-hero__cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.kh-hero__rating {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: var(--kh-text-soft);
    animation: kh-fade-in 0.8s var(--kh-ease-out) 0.8s both;
}

.kh-hero__rating strong { color: var(--kh-gold); }

.kh-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 32px;
}

.kh-card {
    background: var(--kh-bg-elevated);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--kh-ease);
    position: relative;
}

.kh-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212,175,55,0.4), transparent, rgba(212,175,55,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.kh-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kh-shadow-lg), var(--kh-shadow-glow);
    border-color: rgba(212, 175, 55, 0.25);
}

.kh-card:hover::before { opacity: 1; }

.kh-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.kh-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--kh-ease);
}

.kh-card:hover .kh-card__img {
    transform: scale(1.08);
}

.kh-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.kh-card:hover .kh-card__img-wrap::after { opacity: 1; }

.kh-card__body {
    padding: 28px;
}

.kh-card__title {
    font-family: var(--kh-font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.75rem;
}

.kh-card__text {
    color: var(--kh-text-soft);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.kh-card__link {
    color: var(--kh-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.kh-card__link:hover {
    color: var(--kh-gold-light);
    gap: 12px;
}

.kh-testimonials__wrap {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding: 8px 4px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.kh-testimonial {
    flex: 0 0 min(340px, 90vw);
    scroll-snap-align: start;
    background: linear-gradient(145deg, var(--kh-bg-elevated) 0%, rgba(20,28,24,0.8) 100%);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    padding: 32px;
    transition: all 0.4s var(--kh-ease);
}

.kh-testimonial:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--kh-shadow);
    transform: translateY(-4px);
}

.kh-testimonial__stars {
    color: var(--kh-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.kh-testimonial__text {
    font-style: italic;
    color: var(--kh-text);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.kh-testimonial__author {
    font-weight: 600;
    color: var(--kh-gold);
    font-size: 0.95rem;
}

.kh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.kh-gallery__item {
    aspect-ratio: 1;
    border-radius: var(--kh-radius);
    overflow: hidden;
    position: relative;
}

.kh-gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212,175,55,0.3) 0%, transparent 60%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s;
}

.kh-gallery__item:hover::before { opacity: 1; }

.kh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--kh-ease);
}

.kh-gallery__item:hover img {
    transform: scale(1.1);
}

.kh-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.kh-feature {
    background: linear-gradient(145deg, var(--kh-bg-elevated) 0%, rgba(20,28,24,0.6) 100%);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    padding: 32px;
    transition: all 0.4s var(--kh-ease);
}

.kh-feature:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--kh-shadow);
}

.kh-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
    transition: transform 0.3s;
}

.kh-feature:hover .kh-feature__icon {
    transform: scale(1.1);
}

.kh-feature__title {
    font-family: var(--kh-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.6rem;
}

.kh-feature__text {
    color: var(--kh-text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.kh-alt-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
}

.kh-alt-block--reverse .kh-alt-block__content { order: 2; }
.kh-alt-block--reverse .kh-alt-block__media { order: 1; }

.kh-alt-block__media {
    border-radius: var(--kh-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.kh-alt-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--kh-ease);
}

.kh-alt-block:hover .kh-alt-block__media img {
    transform: scale(1.05);
}

.kh-alt-block__content h2 {
    font-family: var(--kh-font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 1rem;
}

.kh-alt-block__content p {
    color: var(--kh-text-soft);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.kh-icon-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.kh-icon-block {
    text-align: center;
    padding: 36px 24px;
    background: var(--kh-bg-elevated);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    transition: all 0.4s var(--kh-ease);
}

.kh-icon-block:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--kh-shadow);
}

.kh-icon-block__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.kh-icon-block__title {
    font-family: var(--kh-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.5rem;
}

.kh-icon-block__text {
    color: var(--kh-text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.kh-event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.kh-event-card {
    background: var(--kh-bg-elevated);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    padding: 28px;
    transition: all 0.35s var(--kh-ease);
}

.kh-event-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.kh-event-card__title {
    font-family: var(--kh-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 0.5rem;
}

.kh-event-card__text {
    color: var(--kh-text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.kh-includes-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.kh-includes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--kh-bg-elevated);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    color: var(--kh-text);
    transition: all 0.3s;
}

.kh-includes-list li:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.kh-includes-list li::before {
    content: '✓';
    color: var(--kh-gold);
    font-weight: 700;
}

.kh-faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.kh-faq__item {
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.kh-faq__item summary {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--kh-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kh-faq__item summary::-webkit-details-marker { display: none; }
.kh-faq__item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--kh-gold);
}

.kh-faq__item[open] summary::after { content: '−'; }

.kh-faq__item p {
    padding: 0 24px 20px;
    color: var(--kh-text-soft);
    line-height: 1.65;
    animation: kh-fade-in 0.3s ease;
}

.kh-faq__item {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.kh-faq__item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.kh-faq__item[open] {
    border-color: rgba(212, 175, 55, 0.25);
}

.kh-form {
    max-width: 520px;
    margin: 0 auto;
}

.kh-form__group {
    margin-bottom: 20px;
}

.kh-form__label {
    display: block;
    font-weight: 600;
    color: var(--kh-text);
    margin-bottom: 8px;
}

.kh-form__input,
.kh-form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--kh-bg-elevated);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    color: var(--kh-text);
    font-family: var(--kh-font);
    font-size: 1rem;
}

.kh-form__input:focus,
.kh-form__textarea:focus {
    outline: none;
    border-color: var(--kh-gold);
}

.kh-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.kh-form__input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.kh-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.kh-content h1 {
    font-family: var(--kh-font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--kh-white);
    margin-bottom: 1.5rem;
}

.kh-content h2 {
    font-family: var(--kh-font-head);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--kh-white);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.kh-content p {
    color: var(--kh-text-soft);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.kh-content ul, .kh-content ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--kh-text-soft);
}

.kh-content a {
    color: var(--kh-gold-light);
    text-decoration: underline;
}

.kh-content a:hover { color: var(--kh-gold); }

.kh-footer {
    background: var(--kh-bg-elevated);
    border-top: 1px solid var(--kh-border);
    padding: 48px 0 24px;
}

.kh-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.kh-footer__brand a {
    font-family: var(--kh-font-head);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--kh-white);
    text-decoration: none;
}

.kh-footer__brand a:hover { color: var(--kh-gold); }
.kh-footer__slogan {
    font-size: 0.9rem;
    color: var(--kh-text-soft);
    margin-top: 8px;
}

.kh-footer__links-title {
    font-weight: 600;
    color: var(--kh-white);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
}

.kh-footer__links a {
    display: block;
    color: var(--kh-text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.kh-footer__links a:hover { color: var(--kh-gold); }

.kh-footer__disclaimer {
    padding-top: 24px;
    border-top: 1px solid var(--kh-border);
    font-size: 0.85rem;
    color: var(--kh-text-soft);
    line-height: 1.6;
}

.kh-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--kh-border);
}

.kh-footer__copy {
    font-size: 0.9rem;
    color: var(--kh-text-soft);
}

.kh-includes-section {
    position: relative;
    overflow: hidden;
}

.kh-includes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../images/roulette.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.kh-includes-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 18, 16, 0.88);
    z-index: 0;
}

.kh-includes-section .kh-container {
    position: relative;
    z-index: 1;
}

.kh-cta-section {
    position: relative;
    overflow: hidden;
}

.kh-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../images/chips.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.kh-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 18, 16, 0.92) 0%, rgba(26, 71, 42, 0.85) 100%);
    z-index: 0;
}

.kh-cta-section .kh-container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .kh-cta-section::before {
        background-attachment: scroll;
    }
}

.kh-cta-block {
    text-align: center;
    padding: 56px 24px;
    background: linear-gradient(135deg, rgba(26,71,42,0.4) 0%, rgba(13,18,16,0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--kh-radius-lg);
}

@media (max-width: 991px) {
    .kh-alt-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .kh-alt-block--reverse .kh-alt-block__content,
    .kh-alt-block--reverse .kh-alt-block__media { order: unset; }
    .kh-icon-blocks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .kh-section { padding: 48px 0; }
    .kh-hero { min-height: 80vh; padding: 70px 20px 56px; }
    .kh-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .kh-cards { grid-template-columns: 1fr; gap: 24px; }
    .kh-card__body { padding: 20px; }
    .kh-event-cards { grid-template-columns: 1fr; }
    .kh-includes-list { grid-template-columns: 1fr; }
}
