/* ============================================
POKER MOSCOW � ��������� �����
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --color-black: #0e0e0e;
    --color-dark: #1a1a1a;
    --color-felt: #1e4d2e;
    --color-felt-dark: #0f2a1a;
    --color-felt-light: #2d6b42;
    --color-gold: #c9a961;
    --color-gold-light: #e8d4a2;
    --color-gold-bright: #f4e5c2;
    --color-cream: #f5f1e8;
    --color-white: #ffffff;
    --color-gray: #6b6b6b;
    --color-red: #b00020;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 0 25px rgba(201, 169, 97, 0.45);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-black);
    background-color: var(--color-cream);
    overflow-x: hidden;
    overflow-x: clip; /* �� ������ position: sticky, � ������� �� hidden */
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }

/* Shimmer-������ */
.shimmer-text {
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-bright) 45%, var(--color-gold) 55%, var(--color-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    display: inline-block;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ============================================
   HEADER + NAV
============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: linear-gradient(180deg, rgba(14,14,14,0.98) 0%, rgba(14,14,14,0.92) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    z-index: 1000;
    padding: 14px 0;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.nav__menu {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* ������ ���������� (������ ��� ���������) */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__link {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-gold-bright);
    background: linear-gradient(145deg, #1f1f1f 0%, #2a2a2a 100%);
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    padding: 10px 18px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.nav__link:hover {
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 100px;
}
.hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(10, 20, 15, 0.75) 0%, rgba(10, 20, 15, 0.92) 100%),
                linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    opacity: 0;
    animation: overlayFadeIn 1.4s ease-out both;
}
@keyframes overlayFadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 950px;
    animation: heroFadeIn 1.4s ease-out both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: 2px;
    line-height: 1.1;
}
.hero__subtitle { font-size: 22px; line-height: 1.8; margin-bottom: 45px; opacity: 0.95; font-weight: 400; }
.hero__small { font-size: 15px; opacity: 0.7; display: block; margin-top: 12px; font-style: italic; }

/* ============================================
   ������
============================================ */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}
.btn--primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(201, 169, 97, 0.8), 0 10px 30px rgba(0,0,0,0.4); }
.btn--white { background: var(--color-white); color: var(--color-black); box-shadow: 0 4px 15px rgba(255,255,255,0.2); }
.btn--white:hover { background: var(--color-gold-bright); transform: translateY(-3px); box-shadow: 0 0 35px rgba(244, 229, 194, 0.9), 0 10px 30px rgba(0,0,0,0.4); }
.btn--red { background: linear-gradient(135deg, var(--color-red) 0%, #8a0018 100%); color: var(--color-white); box-shadow: 0 4px 15px rgba(176, 0, 32, 0.4); }
.btn--red:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(176, 0, 32, 0.8), 0 10px 30px rgba(0,0,0,0.4); }
.btn--large { padding: 22px 55px; font-size: 20px; }

/* ============================================
   ��������� ������
============================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-black);
    letter-spacing: 1px;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 22px;
    text-align: center;
    margin-bottom: 55px;
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.6;
}
.highlight, .highlight-red { color: var(--color-red); font-weight: 700; }

/* ============================================
   SERVICES � �������������� ���������
============================================ */
.services {
    padding: 110px 0;
    background: radial-gradient(ellipse at top, var(--color-felt) 0%, var(--color-felt-dark) 100%);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    pointer-events: none;
}
.services__grid {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-felt-dark);
    position: relative;
    z-index: 2;
}
.services__grid::-webkit-scrollbar { height: 10px; }
.services__grid::-webkit-scrollbar-track { background: var(--color-felt-dark); border-radius: 5px; }
.services__grid::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 5px; }

.service-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--color-cream);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); border: 2px solid var(--color-gold); box-shadow: var(--shadow-gold), var(--shadow-lg); }
.service-card__image { height: 260px; background-size: cover; background-position: center; position: relative; flex-shrink: 0; }
.service-card__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%); }
.service-card__content { padding: 35px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.service-card__title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; margin-bottom: 18px; color: var(--color-black); line-height: 1.2; flex-shrink: 0; }
.service-card__text { font-size: 17px; line-height: 1.7; color: var(--color-dark); margin-bottom: 25px; flex-grow: 1; }
.service-card__content .btn { margin-top: auto; align-self: flex-start; }

/* ============================================
   ABOUT
============================================ */
.about { padding: 110px 0; background: var(--color-cream); }
.about__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 70px; align-items: center; }
.about__image { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--color-gold); }
.about__title { font-family: var(--font-heading); font-size: 56px; font-weight: 800; margin-bottom: 25px; color: var(--color-black); line-height: 1.1; }
.about__subtitle { font-family: var(--font-heading); font-size: 28px; font-weight: 600; margin-bottom: 35px; color: var(--color-felt); }
.about__text { font-size: 18px; line-height: 1.8; color: var(--color-dark); }
.about__list { list-style: none; margin: 25px 0; }
.about__list li { margin-bottom: 18px; padding-left: 28px; position: relative; font-size: 18px; line-height: 1.7; }
.about__list li::before { content: "-"; color: var(--color-gold); font-weight: bold; position: absolute; left: 0; font-size: 20px; top: 0px; }
.about__list a { color: var(--color-felt); text-decoration: underline; font-weight: 600; }

/* ============================================
   TRAINING
============================================ */
.training { padding: 110px 0; background: linear-gradient(135deg, var(--color-felt-dark) 0%, var(--color-black) 100%); color: var(--color-cream); }
.training .section-title { color: var(--color-gold-bright); }
.training .section-subtitle { color: var(--color-gold-light); font-size: 24px; }
.training__content { max-width: 1100px; margin: 0 auto; }
.training__intro {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(201, 169, 97, 0.08);
    border-left: 4px solid var(--color-gold);
    border-radius: 4px;
}
.training__topics { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 50px 0; }
.training__topic { background: rgba(255, 255, 255, 0.04); padding: 30px; border-radius: 4px; border: 1px solid rgba(201, 169, 97, 0.3); transition: var(--transition); }
.training__topic:hover { border-color: var(--color-gold); background: rgba(201, 169, 97, 0.08); }
.training__topic--important { border: 2px solid var(--color-red); background: rgba(176, 0, 32, 0.1); }
.training__topic h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 18px; color: var(--color-gold-bright); line-height: 1.3; }
.training__topic ul { list-style: none; }
.training__topic li { padding: 10px 0 10px 30px; position: relative; font-size: 17px; line-height: 1.6; }
.training__topic li::before { content: "-"; color: var(--color-gold); font-weight: bold; position: absolute; left: 0; font-size: 18px; top: 10px; }

/* ============================================
   RULES � �������������� ���������
============================================ */
.rules { padding: 110px 0; background: var(--color-cream); }
.rules__grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-felt-dark);
    margin-top: 50px;
}
.rules__grid::-webkit-scrollbar { height: 10px; }
.rules__grid::-webkit-scrollbar-track { background: var(--color-felt-dark); border-radius: 5px; }
.rules__grid::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 5px; }
.rule-card { flex: 0 0 340px; scroll-snap-align: start; background: var(--color-white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #e5e0d4; }
.rule-card:hover { transform: translateY(-6px); border: 2px solid var(--color-gold); box-shadow: var(--shadow-gold), var(--shadow-lg); }
.rule-card__image { width: 100%; height: 220px; object-fit: cover; }
.rule-card h3, .rule-card h5 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; padding: 22px 22px 10px; color: var(--color-black); line-height: 1.25; }
.rule-card p { padding: 0 22px 22px; font-size: 17px; line-height: 1.7; color: var(--color-dark); }

/* ============================================
   WHERE TO PLAY � ����� �� ��� ������ 16:9
============================================ */
.where-to-play { padding: 100px 0 60px; background: var(--color-cream); text-align: center; }
.where-to-play__subtitle {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-black);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.cottage-gap { margin-top: 70px !important; }
.video-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--color-black);
    margin-top: 30px;
    margin-bottom: 0;
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ============================================
   ADDITIONAL SERVICES � �������������� ���������
============================================ */
.additional-services { padding: 110px 0; background: var(--color-cream); }
.additional-services__grid--scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-felt-dark);
    margin-top: 50px;
}
.additional-services__grid--scroll::-webkit-scrollbar { height: 10px; }
.additional-services__grid--scroll::-webkit-scrollbar-track { background: var(--color-felt-dark); border-radius: 5px; }
.additional-services__grid--scroll::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 5px; }
.additional-card { flex: 0 0 340px; scroll-snap-align: start; background: var(--color-white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #e5e0d4; }
.additional-card:hover { transform: translateY(-6px); border: 2px solid var(--color-gold); box-shadow: var(--shadow-gold), var(--shadow-lg); }
.additional-card__image { width: 100%; height: 220px; object-fit: cover; }
.additional-card h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; padding: 22px 22px 10px; color: var(--color-black); line-height: 1.25; }
.additional-card p { padding: 0 22px 22px; font-size: 17px; line-height: 1.7; color: var(--color-dark); }

/* ============================================
   SLIDER
============================================ */
.slider-section { padding: 80px 0; background: var(--color-dark); overflow: hidden; }
.slider__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; scrollbar-width: none; }
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide { flex: 0 0 300px; scroll-snap-align: start; background: var(--color-white); border-radius: 10px; overflow: hidden; }
.slider__slide img { width: 100%; height: 300px; object-fit: cover; }
.slider__text { padding: 20px; font-size: 15px; color: var(--color-dark); }

/* ============================================
   STRIPPED POKER � � �����
============================================ */
.stripped-poker {
    position: relative;
    padding: 120px 0;
    color: var(--color-cream);
    overflow: hidden;
}
.stripped-poker::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 31, 26, 0.92) 0%, rgba(10, 20, 15, 0.95) 100%);
    z-index: 1;
}
.stripped-poker__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stripped-poker .section-title { text-align: left; color: var(--color-gold-bright); font-size: 52px; }
.stripped-poker__text { font-size: 19px; line-height: 1.8; margin-top: 25px; }

.video-preview {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    background: var(--color-black);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
}
.video-preview__poster {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-felt-dark), var(--color-black));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}
.video-preview__age-text { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--color-gold-bright); text-shadow: 0 0 20px rgba(201, 169, 97, 0.6); letter-spacing: 3px; }
.video-preview__play {
    width: 90px;
    height: 90px;
    background: rgba(201, 169, 97, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 40px rgba(201, 169, 97, 0.6);
}
.video-preview__play::after { content: ''; width: 0; height: 0; border-left: 26px solid var(--color-black); border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 6px; }
.video-preview:hover .video-preview__play { transform: scale(1.1); box-shadow: 0 0 60px rgba(201, 169, 97, 0.9); }
.video-preview video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.video-preview.is-playing video { display: block; }
.video-preview.is-playing .video-preview__poster { display: none; }
.video-preview__caption { text-align: center; margin-top: 20px; font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--color-gold-bright); letter-spacing: 1px; }

/* ============================================
   MOVIES � ������ ����
============================================ */
.movies { padding: 80px 0 60px; background: var(--color-black); color: var(--color-cream); text-align: center; }
.movies .section-title { color: var(--color-gold-bright); margin-bottom: 10px; }
.movies .section-subtitle { color: var(--color-gold); margin-bottom: 30px; }
.movies .section-subtitle a { color: var(--color-gold); text-decoration: underline; }
.movies .section-subtitle a:hover { color: var(--color-gold-light); }
.movies__header-image { max-width: 100%; border-radius: 4px; margin: 0 auto 40px; box-shadow: var(--shadow-lg); border: 2px solid var(--color-gold); }
.movies__description { max-width: 900px; margin: 0 auto; font-size: 19px; line-height: 1.8; }
.movies__description a { color: var(--color-gold); text-decoration: underline; font-weight: 600; }
.movie-detail { padding: 0; background: var(--color-black); text-align: center; }
.movie-detail__title { font-family: var(--font-heading); font-size: 32px; font-weight: 700; margin-bottom: 0; color: var(--color-gold-bright); padding: 40px 30px 20px; }

/* ============================================
   ����
============================================ */
.blog {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(ellipse at top, var(--color-felt) 0%, var(--color-felt-dark) 100%);
}
.blog::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
    pointer-events: none;
}
.blog .section-title { color: var(--color-gold-bright); position: relative; z-index: 2; }

.blog__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ������������ ���� */
.blog__photo { position: sticky; top: 100px; text-align: center; }
.blog__photo img {
    width: 100%;
    max-width: 360px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
    border: 3px solid var(--color-gold);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin: 0 auto;
}
.blog__photo-caption {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gold-bright);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blog__content { display: flex; flex-direction: column; gap: 50px; }

/* ����������� � ������� ���� ��� ���������� */
.blog__featured {
    position: relative;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    color: var(--color-dark);
    border-radius: 4px;
    padding: 55px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 169, 97, 0.6);
}
.blog__featured-badge {
    position: absolute;
    top: -16px;
    left: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 24px;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}
.blog__featured-title { font-family: var(--font-heading); font-size: 38px; font-weight: 800; color: var(--color-felt-dark); line-height: 1.2; margin-bottom: 15px; margin-top: 10px; }
.blog__featured-subtitle { font-family: var(--font-heading); font-size: 21px; font-weight: 600; color: var(--color-felt); font-style: italic; margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid rgba(201, 169, 97, 0.4); }
.blog__featured-preview p, .blog__featured-full p { font-size: 19px; line-height: 1.85; margin-bottom: 18px; color: var(--color-dark); }
.blog__featured-preview p:last-child { margin-bottom: 0; }
.blog__featured strong { color: var(--color-red); font-weight: 700; }

.blog__featured-full { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.7s ease, opacity 0.5s ease, margin 0.4s ease; margin-top: 0; }
.blog__featured-full h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-felt-dark);
    margin-top: 40px;
    margin-bottom: 18px;
    padding-left: 20px;
    border-left: 3px solid var(--color-gold);
    line-height: 1.3;
}
.blog__featured-full h4:first-child { margin-top: 0; }
.blog__featured-full ul { list-style: none; margin: 18px 0 22px; }
.blog__featured-full ul li { padding: 12px 0 12px 30px; position: relative; font-size: 19px; line-height: 1.75; color: var(--color-dark); }
/* ������ ������ � ������� ���� */
.blog__featured-full ul li::before { content: "-"; position: absolute; left: 0; top: 12px; color: var(--color-gold); font-size: 20px; font-weight: bold; }

.blog__featured-conclusion { margin-top: 40px !important; padding: 25px 30px; background: rgba(201, 169, 97, 0.15); border-left: 3px solid var(--color-gold); font-style: italic; border-radius: 4px; color: var(--color-dark); }

.blog__featured.is-expanded .blog__featured-full { max-height: 6000px; opacity: 1; margin-top: 30px; }
.blog__featured.is-expanded .blog__featured-preview { padding-bottom: 25px; border-bottom: 1px dashed rgba(201, 169, 97, 0.6); }

.blog__toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    width: 100%;
    padding: 20px 35px;
    background: transparent;
    border: 2px solid var(--color-felt);
    border-radius: 4px;
    color: var(--color-felt);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}
.blog__toggle-btn:hover { background: var(--color-felt); color: var(--color-white); box-shadow: 0 0 30px rgba(30, 77, 46, 0.4); transform: translateY(-2px); }
.blog__toggle-icon { font-size: 24px; transition: transform 0.4s ease; font-weight: 300; }
.blog__featured.is-expanded .blog__toggle-icon { transform: rotate(180deg); }

/* ������ ������ ����� */
.blog__articles {
    background: rgba(14, 14, 14, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.4);
}
.blog__articles-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-gold-bright);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog__list { list-style: none; }
.blog__list li { margin-bottom: 12px; }
.blog__list li:last-child { margin-bottom: 0; }
.blog__link {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 22px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition);
}
.blog__link:hover { background: rgba(201, 169, 97, 0.12); border-color: var(--color-gold); transform: translateX(10px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 169, 97, 0.2); }
.blog__link-number { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--color-gold); min-width: 45px; opacity: 0.8; }
.blog__link-text { font-size: 19px; font-weight: 600; color: var(--color-cream); line-height: 1.4; flex-grow: 1; }
.blog__link-arrow { font-size: 26px; color: var(--color-gold); transition: var(--transition); font-weight: 300; }
.blog__link:hover .blog__link-arrow { transform: translateX(8px); color: var(--color-gold-bright); }

/* ============================================
   �������� ������ (����)
============================================ */

/* Hero ������ */
.article-hero {
    position: relative;
    padding: 180px 0 90px;
    background: radial-gradient(ellipse at top, var(--color-felt) 0%, var(--color-felt-dark) 100%);
    text-align: center;
    overflow: hidden;
}
.article-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    pointer-events: none;
}
.article-hero h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    color: var(--color-gold-bright);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    line-height: 1.15;
}
.article-hero p {
    font-size: 20px;
    color: var(--color-cream);
    opacity: 0.9;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* ��������� �� ������ (������) */
.article-nav {
    position: sticky;
    top: 66px;
    z-index: 500;
    background: rgba(14,14,14,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,169,97,0.3);
    padding: 14px 0;
}
.article-nav__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.article-nav__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-gold-bright);
    background: linear-gradient(145deg, #1f1f1f 0%, #2a2a2a 100%);
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    padding: 9px 16px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.article-nav__link:hover {
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ������� ������ */
.article-body { padding: 80px 0 60px; background: var(--color-cream); }
.article-body__inner { max-width: 820px; margin: 0 auto; }

.article-intro { font-size: 19px; line-height: 1.8; color: var(--color-dark); margin-bottom: 10px; }
.article-intro p { margin-bottom: 18px; }

/* ������� / ������ */
.article-note {
    background: rgba(201,169,97,0.10);
    border-left: 4px solid var(--color-gold);
    padding: 20px 26px;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-dark);
}

/* ������ ����������/�������� ��� */
.article-controls { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 40px 0; }
.article-controls .btn { padding: 14px 32px; font-size: 16px; }

/* ���������� (TOC) */
.article-toc {
    background: var(--color-white);
    border: 1px solid #e5e0d4;
    border-radius: 4px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin: 40px 0;
}
.article-toc h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-gold);
}
.article-toc h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-felt);
    margin-top: 28px;
    margin-bottom: 12px;
}
.article-toc h3:first-of-type { margin-top: 0; }
.article-toc ul { list-style: none; }
.article-toc li { margin-bottom: 8px; }
.article-toc a {
    display: block;
    padding: 9px 14px;
    color: var(--color-dark);
    border-radius: 4px;
    font-size: 17px;
    line-height: 1.5;
    transition: var(--transition);
}
.article-toc a:hover { background: rgba(201,169,97,0.12); color: var(--color-felt-dark); transform: translateX(6px); }

/* ����� ������ */
.article-part { margin-top: 60px; }
.article-part:first-of-type { margin-top: 0; }
.article-part h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-felt-dark);
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-gold);
    line-height: 1.2;
}

/* ������� (����������) */
.qa-item {
    background: var(--color-white);
    border: 1px solid #e5e0d4;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    scroll-margin-top: 140px;
}
.qa-item:hover { border-color: var(--color-gold); }
.qa-item.active { border-color: var(--color-gold); box-shadow: var(--shadow); }
.qa-question {
    width: 100%;
    padding: 22px 60px 22px 26px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-felt-dark);
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.qa-question:hover { color: var(--color-felt); }
.qa-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: var(--color-gold);
    font-weight: 300;
    transition: var(--transition);
}
.qa-item.active .qa-question::after { content: '?'; }
.qa-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.qa-item.active .qa-answer { max-height: fit-content; }
.qa-answer__inner { padding: 5px 28px 28px; font-size: 18px; line-height: 1.8; color: var(--color-dark); }
.qa-answer__inner p { margin-bottom: 16px; }
.qa-answer__inner strong { color: var(--color-felt-dark); }
.qa-answer__inner h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-felt-dark);
    margin: 28px 0 14px;
    line-height: 1.3;
}
.qa-answer__inner h4:first-child { margin-top: 0; }
.qa-answer__inner ul { list-style: none; margin: 16px 0; }
.qa-answer__inner ul li { padding: 8px 0 8px 26px; position: relative; line-height: 1.7; }
.qa-answer__inner ul li::before { content: "-"; position: absolute; left: 0; top: 8px; color: var(--color-gold); font-weight: bold; font-size: 18px; }

/* ������� */
.article-table-wrap { overflow-x: auto; margin: 25px 0; }
.article-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 560px; }
.article-table th {
    background: var(--color-felt);
    color: var(--color-gold-bright);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    line-height: 1.4;
}
.article-table td { padding: 13px 16px; border-bottom: 1px solid #e5e0d4; color: var(--color-dark); vertical-align: top; line-height: 1.6; }
.article-table tr:nth-child(even) { background: rgba(30,77,46,0.04); }

/* ���� ǝ������� */
.qa-rule {
    background: rgba(30,77,46,0.06);
    border-left: 3px solid var(--color-felt);
    padding: 16px 22px;
    margin-top: 18px;
    border-radius: 4px;
    font-style: italic;
}

/* ������ ��������� ������ */
.article-footer-nav { text-align: center; padding: 40px 0 20px; font-size: 18px; }
.article-footer-nav a { color: var(--color-felt); font-weight: 600; margin: 0 12px; text-decoration: underline; }
.article-footer-nav a:hover { color: var(--color-gold); }

/* CTA ������ */
.article-cta {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(ellipse at center, rgba(10,20,15,0.85), rgba(10,20,15,0.95)),
                linear-gradient(135deg, var(--color-felt-dark) 0%, var(--color-black) 100%);
    text-align: center;
}
.article-cta__title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-gold-bright);
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.3;
}

/* ============================================
   FAQ
============================================ */
.faq { padding: 110px 0; background: var(--color-cream); }
.faq__list { max-width: 900px; margin: 50px auto 0; }
.faq__item { margin-bottom: 20px; border: 1px solid #d5cfc0; border-radius: 4px; overflow: hidden; background: var(--color-white); transition: var(--transition); }
.faq__item:hover { border-color: var(--color-gold); }
.faq__question {
    width: 100%;
    padding: 28px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--color-black);
    line-height: 1.4;
}
.faq__question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--color-gold);
    transition: var(--transition);
    font-weight: 300;
}
.faq__question.active::after { content: '?'; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__answer p { padding: 0 30px; line-height: 1.8; color: var(--color-dark); font-size: 18px; }
.faq__item.active .faq__answer { max-height: 300px; }
.faq__item.active .faq__answer p { padding-bottom: 28px; }

/* ============================================
   CONTACT � � ����� footer.webp
============================================ */
.contact {
    position: relative;
    padding: 140px 0;
    background-image: url('images/footer.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}
.contact__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(10, 20, 15, 0.85) 0%, rgba(10, 20, 15, 0.95) 100%); }
.contact__content { position: relative; z-index: 2; color: var(--color-white); }
.contact__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 45px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    color: var(--color-gold-bright);
}

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--color-black); color: var(--color-cream); padding: 70px 0 30px; border-top: 1px solid rgba(201, 169, 97, 0.3); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer__logo-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 12px;
}
.footer__text { opacity: 0.7; font-size: 16px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__link { opacity: 0.75; transition: var(--transition); font-size: 17px; }
.footer__link:hover { opacity: 1; color: var(--color-gold); }

/* ============================================
   RESPONSIVE + ��������� ����
============================================ */
@media (max-width: 992px) {
    .hero__title { font-size: 56px; }
    .section-title { font-size: 44px; }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .stripped-poker__content { grid-template-columns: 1fr; gap: 40px; }
    .stripped-poker .section-title { text-align: center; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .nav { gap: 10px; }
    .blog__layout { grid-template-columns: 1fr; gap: 50px; }
    .blog__photo { position: static; }
    .blog__photo img { max-width: 280px; }
    .article-hero h1 { font-size: 44px; }
    .article-part h2 { font-size: 32px; }
}

@media (max-width: 768px) {    .hero,
    .stripped-poker,
    .contact {
        background-attachment: scroll;
    }
    .hero__title { font-size: 40px; }
    .hero__subtitle { font-size: 18px; }
    .section-title { font-size: 34px; }
    .about__title { font-size: 38px; }
    .contact__title { font-size: 32px; }
    .services__grid, .rules__grid { flex-direction: column; overflow-x: visible; }
    .service-card, .rule-card { flex: 1 1 auto; }
    .btn { padding: 16px 30px; font-size: 16px; }
    .btn--large { padding: 18px 35px; font-size: 18px; }
    .movie-detail__title { font-size: 24px; padding: 30px 20px 15px; }
    .cottage-gap { margin-top: 40px !important; }

    /* ���� */
    .blog { padding: 80px 0; }
    .blog__articles, .blog__featured { padding: 30px 25px; }
    .blog__featured-title { font-size: 28px; }
    .blog__featured-subtitle { font-size: 18px; }
    .blog__featured-badge { left: 25px; font-size: 11px; padding: 7px 16px; }
    .blog__link { flex-wrap: wrap; gap: 10px; }
    .blog__link-arrow { margin-left: auto; }
    .blog__toggle-btn { padding: 16px 25px; font-size: 15px; }

    /* ������ */
    .article-hero { padding: 140px 0 60px; }
    .article-hero h1 { font-size: 34px; }
    .article-hero p { font-size: 17px; }
    .article-nav { top: 58px; }
    .article-nav__link { font-size: 12px; padding: 7px 12px; }
    .article-toc { padding: 25px; }
    .article-part h2 { font-size: 26px; }
    .qa-question { font-size: 17px; padding: 18px 50px 18px 20px; }
    .qa-answer__inner { padding: 5px 20px 22px; font-size: 16px; }
    .article-intro { font-size: 17px; }
    .article-cta__title { font-size: 26px; }

    /* ��������� ���� */
    .nav {
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        gap: 10px;
    }
    .nav__logo { margin-right: 0; margin-bottom: 0; width: auto; text-align: left; font-size: 20px; }
    .nav__toggle { display: flex; }
    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(14, 14, 14, 0.98);
        border-top: 1px solid rgba(201, 169, 97, 0.3);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .nav.is-open .nav__menu { max-height: 500px; }
    .nav__menu .nav__link {
        display: block;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
        padding: 16px 20px;
        text-align: center;
        background: transparent;
        box-shadow: none;
    }
    .nav__menu .nav__link:hover { background: rgba(201, 169, 97, 0.15); color: var(--color-gold-bright); transform: none; }
    /* �������� ���������� */
    .nav.is-open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
    .nav.is-open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero { padding: 110px 0 60px; }
    .hero__title { font-size: 32px; }
    .section-title { font-size: 28px; }
    .about__title { font-size: 32px; }
    .stripped-poker .section-title { font-size: 34px; }
    .contact__title { font-size: 26px; }
    .faq__question { font-size: 18px; padding: 22px; }
    .blog__featured { padding: 25px 20px; }
    .blog__toggle-btn { padding: 16px 25px; font-size: 15px; }
    .article-hero h1 { font-size: 28px; }
    .article-part h2 { font-size: 24px; }
    .article-toc a { font-size: 15px; }
}