* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at top left, rgba(176, 24, 57, 0.32), transparent 28%),
            radial-gradient(circle at top right, rgba(120, 12, 39, 0.3), transparent 26%),
            linear-gradient(180deg, #12070a 0%, #1a0a0f 55%, #100508 100%);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
            linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%),
            radial-gradient(circle at 20% 20%, rgba(224, 68, 95, 0.1), transparent 24%),
            radial-gradient(circle at 80% 10%, rgba(255, 182, 109, 0.1), transparent 18%);
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.hero,
.page-hero {
    padding: 52px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.hero-aside {
    display: grid;
    gap: 18px;
}

.section {
    padding: 26px 0 42px;
}

.section-head {
    margin-bottom: 22px;
}

.card,
.footer-grid {
    position: relative;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(48, 16, 24, 0.92), rgba(27, 10, 15, 0.92));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card::before,
.footer-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 45%);
    pointer-events: none;
}

.hero-copy,
.spotlight-card,
.info-card,
.featured-card,
.benefit-card,
.cta-card,
.casino-card,
.tip-card,
.review-card,
.footer-grid {
    border-radius: var(--radius-xl);
}

.hero-copy,
.spotlight-card,
.info-card,
.featured-card,
.benefit-card,
.cta-card,
.tip-card,
.review-card {
    padding: 28px;
}

.hero-copy {
    padding: 40px;
}

/* Заголовки */
.hero-copy h1,
.page-hero h1,
.section-head h2,
.cta-card h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.5rem, 4.2vw, 4.9rem);
    max-width: 12ch;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.spotlight-card h2,
.casino-content h2,
.review-card h3,
.featured-body h3,
.benefit-card h3,
.tip-card h3,
.footer-grid h3,
.review-meta h2 {
    margin: 0;
    line-height: 1.08;
}

.spotlight-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.info-card h3,
.benefit-card h3,
.tip-card h3,
.featured-body h3,
.review-card h3,
.footer-grid h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.cta-card h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.casino-content h2,
.review-meta h2 {
    font-size: 1.35rem;
    font-weight: 800;
}

/* Верхние лейблы */
.eyebrow,
.panel-label {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow {
    background: rgba(224, 68, 95, 0.16);
    color: #ff91a4;
    margin-bottom: 18px;
}

.panel-label {
    margin-bottom: 12px;
    padding: 0;
    min-height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--gold);
    font-size: 0.8rem;
}

/* Основной текст */
.hero-text,
.section-head p,
.spotlight-card p,
.info-card p,
.benefit-card p,
.featured-body p,
.casino-content p,
.tip-card p,
.review-card p,
.cta-card p,
.footer-text,
.feature-list {
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 1rem;
}

.hero-text {
    margin: 18px 0 0;
    max-width: 62ch;
    font-size: 1.04rem;
}

.hero-text-wide {
    max-width: 66ch;
}

.section-head p {
    margin-top: 10px;
    max-width: 62ch;
}

.spotlight-card p,
.info-card p,
.cta-card p {
    margin-top: 10px;
}

.casino-content p,
.tip-card p,
.review-card p,
.benefit-card p,
.featured-body p {
    margin-top: 8px;
}

.footer-text {
    margin-top: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), #8e1831);
    color: #fff4f6;
}

.button-primary:hover {
    background: linear-gradient(135deg, #ef4f6d, #a11b38);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 220, 220, 0.12);
}

.stats-grid,
.pill-row,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stats-grid {
    margin-top: 30px;
}

.stat-card {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 210, 210, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-card span {
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.45;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    display: grid;
    gap: 10px;
}

.feature-list li {
    line-height: 1.75;
}

.feature-list li::before {
    content: "•";
    color: var(--gold);
    margin-right: 10px;
}

.featured-grid,
.benefits-grid,
.tips-grid,
.reviews-grid {
    display: grid;
    gap: 18px;
    padding-top:30px;
}

.featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-grid,
.tips-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-card {
    display: grid;
    gap: 18px;
}

.featured-card-top {
    background: linear-gradient(180deg, rgba(65, 17, 28, 0.96), rgba(33, 11, 16, 0.96));
}

.rank-badge {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(224, 68, 95, 0.24), rgba(255, 182, 109, 0.2));
    color: #ffe3d4;
    font-weight: 800;
    font-size: 1rem;
}

.title-row,
.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 214, 214, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: #f6d9da;
    font-size: 0.92rem;
    font-weight: 700;
}

.pill-gold {
    color: #2c1306;
    background: linear-gradient(135deg, #ffcb8d, #ff9f58);
    border-color: transparent;
}

.pill-muted {
    background: rgba(255, 255, 255, 0.06);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    display: grid;
    gap: 16px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(224, 68, 95, 0.18);
    color: #ffd7de;
    font-weight: 800;
    font-size: 1rem;
}

.review-head {
    align-items: flex-start;
}

.review-meta {
    flex: 1;
}

.review-meta p {
    margin: 4px 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.review-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.review-state-positive {
    background: rgba(255, 182, 109, 0.14);
    color: #ffc88f;
}

.review-state-negative {
    background: rgba(224, 68, 95, 0.18);
    color: #ff9cab;
}