/* =================================
   GAS73PRO.COM — Unique design
   Slate + emerald, Sora font, dot bg, split hero, pill buttons
   Burger @ 991px
   ================================= */

:root {
    --gp-bg: #0c1222;
    --gp-bg-soft: #111827;
    --gp-surface: #1a2234;
    --gp-surface-hover: #1f2937;
    --gp-border: rgba(255, 255, 255, 0.08);
    --gp-text: #f1f5f9;
    --gp-muted: #94a3b8;
    --gp-primary: #14b8a6;
    --gp-primary-dark: #0d9488;
    --gp-accent: #2dd4bf;
    --gp-font: 'Sora', system-ui, sans-serif;
    --gp-radius: 6px;
    --gp-radius-pill: 999px;
    --gp-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --gp-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

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

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

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

/* ---------- Dynamic game-style background ---------- */
.gp-bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(160deg, #0c1222 0%, #0f172a 40%, #0c1222 100%);
}

/* Moving gradient orbs */
.gp-bg-animation__gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: gp-bg-float 25s ease-in-out infinite;
}

.gp-bg-animation__gradient--1 {
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.35) 0%, rgba(13, 148, 136, 0.15) 40%, transparent 70%);
    top: -20%;
    left: -15%;
    animation-delay: 0s;
    animation-duration: 28s;
}

.gp-bg-animation__gradient--2 {
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.25) 0%, rgba(20, 184, 166, 0.1) 50%, transparent 70%);
    bottom: -25%;
    right: -10%;
    animation-delay: -10s;
    animation-duration: 32s;
}

.gp-bg-animation__gradient--3 {
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 60%);
    top: 50%;
    left: 60%;
    animation-delay: -5s;
    animation-duration: 22s;
}

@keyframes gp-bg-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, -8%) scale(1.05); }
    50% { transform: translate(-8%, 5%) scale(0.95); }
    75% { transform: translate(5%, 5%) scale(1.02); }
}

/* Floating game symbols (diamonds, coins, stars) */
.gp-bg-animation__particles {
    position: absolute;
    inset: 0;
}

.gp-bg-particle {
    position: absolute;
    pointer-events: none;
    animation: gp-bg-particle-float 18s ease-in-out infinite;
}

.gp-bg-particle--diamond {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.5) 0%, rgba(45, 212, 191, 0.3) 100%);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.3);
}

.gp-bg-particle--coin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(45, 212, 191, 0.5);
    background: radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.4), rgba(13, 148, 136, 0.2));
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.25);
}

.gp-bg-particle--star {
    position: relative;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid rgba(20, 184, 166, 0.35);
    margin-left: -5px;
    margin-top: -8px;
    filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.3));
}

.gp-bg-particle--star::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 3px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid rgba(20, 184, 166, 0.35);
}

/* Particle positions and delays */
.gp-bg-particle:nth-child(1) { left: 8%; top: 15%; animation-delay: 0s; }
.gp-bg-particle:nth-child(2) { left: 25%; top: 70%; animation-delay: -4s; }
.gp-bg-particle:nth-child(3) { left: 75%; top: 25%; animation-delay: -8s; }
.gp-bg-particle:nth-child(4) { left: 15%; top: 55%; animation-delay: -2s; }
.gp-bg-particle:nth-child(5) { left: 60%; top: 12%; animation-delay: -6s; }
.gp-bg-particle:nth-child(6) { left: 88%; top: 65%; animation-delay: -10s; }
.gp-bg-particle:nth-child(7) { left: 45%; top: 35%; animation-delay: -1s; }
.gp-bg-particle:nth-child(8) { left: 35%; top: 80%; animation-delay: -5s; }
.gp-bg-particle:nth-child(9) { left: 92%; top: 40%; animation-delay: -9s; }

@keyframes gp-bg-particle-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    25% { transform: translate(15px, -20px); opacity: 0.7; }
    50% { transform: translate(-10px, 15px); opacity: 0.5; }
    75% { transform: translate(20px, 10px); opacity: 0.6; }
}

.gp-bg-particle--diamond { animation-name: gp-bg-particle-float-diamond; }
.gp-bg-particle--coin { animation-name: gp-bg-particle-float; }
.gp-bg-particle--star { animation-name: gp-bg-particle-float; }

@keyframes gp-bg-particle-float-diamond {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
    50% { transform: rotate(45deg) translate(-12px, -18px); opacity: 0.7; }
}

/* Subtle reel line effect */
.gp-bg-animation__reel {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 2px,
        rgba(20, 184, 166, 0.03) 2px,
        rgba(20, 184, 166, 0.03) 4px
    );
    background-size: 8px 100%;
    animation: gp-bg-reel-shift 20s linear infinite;
}

@keyframes gp-bg-reel-shift {
    0% { transform: translateX(0); }
    100% { transform: translateX(8px); }
}

/* Soft vignette / glow overlay */
.gp-bg-animation__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

/* Hide spotlight for this design */
.gp-cursor-spotlight { display: none !important; }

body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s var(--gp-ease), background 0.2s var(--gp-ease), border-color 0.2s var(--gp-ease); }

/* ---------- Header: solid bar, teal bottom line ---------- */
.gp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.875rem 0;
    background: rgba(12, 18, 34, 0.92);
    border-bottom: 2px solid var(--gp-border);
    box-shadow: 0 1px 0 rgba(20, 184, 166, 0.15);
    transition: box-shadow 0.25s var(--gp-ease);
}

.gp-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(20, 184, 166, 0.2);
}

.gp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 52px;
}

.gp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--gp-text);
}

.gp-logo__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--gp-radius);
    object-fit: contain;
    flex-shrink: 0;
}

.gp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.gp-nav__list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gp-header__dropdown { display: none; }

.gp-nav__link {
    padding: 0.5rem 1rem;
    border-radius: var(--gp-radius);
    color: var(--gp-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.gp-nav__link:hover,
.gp-nav__link.gp-nav__link--active {
    color: var(--gp-primary);
    background: rgba(20, 184, 166, 0.1);
}

.gp-header__auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.gp-btn {
    padding: 0.55rem 1.2rem;
    border-radius: var(--gp-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s var(--gp-ease), box-shadow 0.2s var(--gp-ease), background 0.2s var(--gp-ease);
    font-family: var(--gp-font);
}

.gp-btn--primary {
    background: var(--gp-primary);
    color: #0c1222;
}

.gp-btn--primary:hover {
    background: var(--gp-accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.gp-btn--outline {
    background: transparent;
    color: var(--gp-muted);
    border: 1px solid var(--gp-border);
}

.gp-btn--outline:hover {
    border-color: var(--gp-primary);
    color: var(--gp-primary);
    background: rgba(20, 184, 166, 0.06);
}

/* ---------- Burger @ 991px ---------- */
.gp-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.gp-burger:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.gp-burger__line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gp-text);
    border-radius: 1px;
    transition: transform 0.25s var(--gp-ease), opacity 0.25s;
}

.gp-burger[aria-expanded="true"] .gp-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.gp-burger[aria-expanded="true"] .gp-burger__line:nth-child(2) { opacity: 0; }

.gp-burger[aria-expanded="true"] .gp-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .gp-burger { display: flex; flex-shrink: 0; }

    .gp-header__inner .gp-nav,
    .gp-header__inner .gp-header__auth:not(.gp-header__auth--mobile) {
        display: none !important;
    }

    .gp-header__dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gp-bg-soft);
        border-bottom: 2px solid var(--gp-border);
        padding: 1rem 24px 1.5rem;
        box-shadow: var(--gp-shadow);
        z-index: 999;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .gp-header.gp-header--menu-open .gp-header__dropdown {
        display: block;
    }

    .gp-nav__list--mobile {
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin-bottom: 1rem;
    }

    .gp-nav__list--mobile .gp-nav__link {
        display: block;
        padding: 0.75rem 0;
        border-radius: 0;
        border-bottom: 1px solid var(--gp-border);
    }

    .gp-header__auth--mobile {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--gp-border);
    }

    .gp-header__auth--mobile .gp-btn {
        width: 100%;
        text-align: center;
    }
}

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

/* ---------- Sections ---------- */
.gp-section {
    padding: 4.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.gp-section__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    color: var(--gp-text);
}

.gp-section__title::before,
.gp-section__title::after {
    content: none;
}

.gp-section__title {
    border-bottom: 3px solid var(--gp-primary);
    display: inline-block;
    padding-bottom: 0.25rem;
    margin-left: 50%;
    transform: translateX(-50%);
}

.gp-section__sub {
    text-align: center;
    color: var(--gp-muted);
    max-width: 540px;
    margin: 0.75rem auto 2.5rem;
    font-size: 0.95rem;
}

/* ---------- Hero: split layout (text left, image right) ---------- */
.gp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.gp-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .gp-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gp-hero__img-wrap { order: -1; }
}

.gp-hero__badge {
    font-size: 0.8rem;
    color: var(--gp-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.gp-hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: var(--gp-text);
}

.gp-hero__sub {
    font-size: 1.05rem;
    color: var(--gp-muted);
    margin-bottom: 1.75rem;
    max-width: 420px;
}

@media (max-width: 768px) {
    .gp-hero__sub { margin-left: auto; margin-right: auto; }
}

.gp-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gp-primary);
    color: #0c1222;
    font-weight: 600;
    border-radius: var(--gp-radius-pill);
    font-size: 1rem;
    transition: transform 0.2s var(--gp-ease), box-shadow 0.2s var(--gp-ease), background 0.2s var(--gp-ease);
}

.gp-hero__cta:hover {
    background: var(--gp-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(20, 184, 166, 0.45);
}

.gp-hero__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--gp-shadow), 0 0 0 1px var(--gp-border);
    aspect-ratio: 16/10;
    max-height: 380px;
}

.gp-hero__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Advantages: cards with left border accent ---------- */
.gp-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .gp-advantages { grid-template-columns: 1fr; }
}

.gp-adv-card {
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-left: 4px solid transparent;
    border-radius: var(--gp-radius);
    padding: 1.5rem;
    transition: border-left-color 0.25s var(--gp-ease), background 0.25s var(--gp-ease), transform 0.25s var(--gp-ease);
}

.gp-adv-card:hover {
    border-left-color: var(--gp-primary);
    background: var(--gp-surface-hover);
    transform: translateX(4px);
}

.gp-adv-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.gp-adv-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gp-text);
    font-weight: 600;
}

.gp-adv-card__text {
    color: var(--gp-muted);
    font-size: 0.9rem;
}

/* ---------- Games: bento layout (1 featured + 2 compact) ---------- */
.gp-games-wrap {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 184, 166, 0.03) 50%, transparent 100%);
}

.gp-games-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-games-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gp-games-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gp-primary);
    margin-bottom: 0.5rem;
}

.gp-games-title {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gp-text);
    margin-bottom: 0.35rem;
}

.gp-games-desc {
    font-size: 0.95rem;
    color: var(--gp-muted);
}

.gp-games-bento {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    align-items: stretch;
}

.gp-game-card {
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s var(--gp-ease), box-shadow 0.25s var(--gp-ease), transform 0.25s var(--gp-ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gp-game-card:hover {
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.gp-game-card--featured {
    grid-row: span 2;
}

.gp-game-card__media {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
}

.gp-game-card--featured .gp-game-card__media {
    aspect-ratio: 16/9;
}

.gp-game-card:not(.gp-game-card--featured) .gp-game-card__media {
    aspect-ratio: 2/1;
    max-height: 120px;
}

.gp-game-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--gp-bg-soft);
}

.gp-game-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gp-primary);
    color: #0c1222;
    padding: 0.25rem 0.6rem;
    border-radius: var(--gp-radius-pill);
}

.gp-game-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gp-game-card--featured .gp-game-card__body {
    padding: 1.5rem;
}

.gp-game-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gp-text);
    margin-bottom: 0.35rem;
}

.gp-game-card--featured .gp-game-card__title {
    font-size: 1.35rem;
}

.gp-game-card__text {
    color: var(--gp-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex: 1;
}

.gp-game-card--featured .gp-game-card__text {
    font-size: 0.95rem;
}

.gp-game-card__play {
    margin-top: auto;
    padding: 0.6rem 1rem;
    background: var(--gp-primary);
    color: #0c1222;
    border: none;
    border-radius: var(--gp-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s var(--gp-ease), transform 0.2s var(--gp-ease);
    font-family: var(--gp-font);
    width: 100%;
}

.gp-game-card--featured .gp-game-card__play {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.gp-game-card__play:hover {
    background: var(--gp-accent);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .gp-games-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gp-game-card--featured {
        grid-row: auto;
    }
    .gp-game-card--featured .gp-game-card__media {
        aspect-ratio: 2/1;
        max-height: none;
    }
}

/* ---------- About: split with visual bar ---------- */
.gp-about-wrap {
    padding: 4rem 0;
}

.gp-about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.gp-about-visual {
    position: sticky;
    top: 100px;
}

.gp-about-visual__bar {
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--gp-primary), var(--gp-primary-dark));
    border-radius: 2px;
    margin-bottom: 1rem;
}

.gp-about-visual__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gp-primary);
    opacity: 0.6;
    line-height: 1;
}

.gp-about-content {
    padding-top: 0.25rem;
}

.gp-about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gp-text);
    margin-bottom: 0.5rem;
}

.gp-about-lead {
    font-size: 1.05rem;
    color: var(--gp-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.gp-about-text {
    font-size: 0.95rem;
    color: var(--gp-muted);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .gp-about-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gp-about-visual {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: static;
    }
    .gp-about-visual__bar {
        width: 60px;
        height: 4px;
        margin-bottom: 0;
    }
    .gp-about-visual__num {
        font-size: 1.5rem;
    }
}

/* ---------- Reviews: featured quote + grid ---------- */
.gp-reviews-wrap {
    padding: 4rem 0 5rem;
    background: var(--gp-bg-soft);
}

.gp-reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.gp-reviews-head {
    text-align: center;
    margin-bottom: 2rem;
}

.gp-reviews-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gp-text);
    margin-bottom: 0.35rem;
}

.gp-reviews-desc {
    font-size: 0.95rem;
    color: var(--gp-muted);
}

.gp-reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.gp-review-card {
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0;
    transition: border-color 0.2s var(--gp-ease), box-shadow 0.2s var(--gp-ease);
}

.gp-review-card:hover {
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gp-review-card--main {
    grid-row: span 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gp-review-card__text {
    font-size: 0.95rem;
    color: var(--gp-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.gp-review-card--main .gp-review-card__text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.gp-review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.gp-review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gp-primary);
    color: #0c1222;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gp-review-card__name {
    font-weight: 600;
    color: var(--gp-text);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gp-reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gp-review-card--main {
        grid-row: auto;
    }
}

/* ---------- Contact: two columns (info + form) ---------- */
.gp-contact-wrap {
    padding: 4rem 0 5rem;
}

.gp-contact-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.gp-contact-info {
    padding-top: 0.5rem;
}

.gp-contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gp-text);
    margin-bottom: 0.5rem;
}

.gp-contact-desc {
    font-size: 0.95rem;
    color: var(--gp-muted);
    line-height: 1.5;
}

.gp-contact-form-wrap {
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    padding: 1.75rem;
}

.gp-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gp-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gp-contact__form input,
.gp-contact__form textarea {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gp-border);
    background: var(--gp-bg-soft);
    color: var(--gp-text);
    font-family: var(--gp-font);
    font-size: 1rem;
    transition: border-color 0.2s var(--gp-ease);
}

.gp-contact__form input:focus,
.gp-contact__form textarea:focus {
    outline: none;
    border-color: var(--gp-primary);
}

.gp-contact__form input::placeholder,
.gp-contact__form textarea::placeholder {
    color: var(--gp-muted);
}

.gp-contact__form textarea {
    min-height: 100px;
    resize: vertical;
}

.gp-contact__submit {
    align-self: flex-start;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .gp-contact-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .gp-contact__row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Modals ---------- */
.gp-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--gp-ease), visibility 0.3s;
}

.gp-modal.active {
    opacity: 1;
    visibility: visible;
}

.gp-modal__box {
    background: var(--gp-bg-soft);
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.3s var(--gp-ease);
}

.gp-modal.active .gp-modal__box { transform: translateY(0); }

.gp-modal__title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--gp-text);
}

.gp-modal__text {
    color: var(--gp-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.gp-modal__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Game pop-up (compact, not full screen) ---------- */
.gp-game-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--gp-ease), visibility 0.3s;
}

.gp-game-modal.active {
    opacity: 1;
    visibility: visible;
}

.gp-game-modal__box {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: var(--gp-bg-soft);
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.gp-game-modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--gp-bg-soft);
    border-bottom: 1px solid var(--gp-border);
    flex-shrink: 0;
}

.gp-game-modal__title { font-weight: 600; color: var(--gp-text); }

.gp-game-modal__close {
    padding: 0.5rem 1rem;
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius-pill);
    color: var(--gp-text);
    cursor: pointer;
    font-family: var(--gp-font);
    font-size: 0.875rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.gp-game-modal__close:hover {
    background: var(--gp-primary);
    color: #0c1222;
    border-color: var(--gp-primary);
}

.gp-game-modal__frame-wrap {
    flex: 1;
    min-height: 0;
    height: 82vh;
    max-height: 720px;
}

.gp-game-modal__frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Мобильная версия: поп-ап с игрой — фиксированные пропорции, без растягивания */
@media (max-width: 768px) {
    .gp-game-modal {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: env(safe-area-inset-top, 0.5rem);
    }

    .gp-game-modal__box {
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    .gp-game-modal__frame-wrap {
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 9;
        flex: 0 0 auto;
    }

    .gp-game-modal__frame-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .gp-game-modal__frame-wrap {
        position: relative;
    }
}

/* ---------- Cookie bar ---------- */
.gp-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 1rem 24px;
    background: var(--gp-bg-soft);
    border-top: 2px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.35s var(--gp-ease);
}

.gp-cookie.active { transform: translateY(0); }

.gp-cookie__text {
    color: var(--gp-muted);
    font-size: 0.875rem;
    max-width: 600px;
}

.gp-cookie__text a { color: var(--gp-primary); text-decoration: underline; }

.gp-cookie__btn {
    padding: 0.55rem 1.25rem;
    background: var(--gp-primary);
    color: #0c1222;
    border: none;
    border-radius: var(--gp-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: var(--gp-font);
    flex-shrink: 0;
    transition: background 0.2s var(--gp-ease);
}

.gp-cookie__btn:hover { background: var(--gp-accent); }

/* ---------- Footer: top row (brand + badges), bottom (legal) ---------- */
.gp-footer {
    background: var(--gp-bg);
    border-top: 2px solid var(--gp-border);
}

.gp-footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 24px 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gp-footer-brand {
    flex-shrink: 0;
}

.gp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: var(--gp-text);
    margin-bottom: 0.35rem;
}

.gp-footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.gp-footer-tagline {
    font-size: 0.8rem;
    color: var(--gp-muted);
}

.gp-footer-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gp-footer-badge {
    padding: 0.35rem 0.7rem;
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gp-muted);
}

.gp-footer-badge-link {
    display: flex;
    align-items: center;
    transition: transform 0.2s var(--gp-ease), opacity 0.2s var(--gp-ease);
}

.gp-footer-badge-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsible gaming badges: visible on dark background */
.gp-footer-badge-link--img {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 8px;
}

.gp-footer-badge-link--img:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(20, 184, 166, 0.4);
}

.gp-footer-badge-link--img img {
    height: 40px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
    /* Make logos more visible on dark: brightness + contrast */
    filter: brightness(1.15) contrast(1.2);
}

.gp-footer-badge-link--img:hover img {
    filter: brightness(1.3) contrast(1.25);
}

.gp-footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 2rem;
    border-top: 1px solid var(--gp-border);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gp-footer-mini-disclaimer {
    font-size: 0.75rem;
    color: var(--gp-muted);
    max-width: 420px;
    line-height: 1.4;
    margin-bottom: 0.35rem;
}

.gp-footer-mini-disclaimer a { color: var(--gp-primary); }

.gp-footer-disclaimer {
    font-size: 0.8rem;
    color: var(--gp-muted);
    max-width: 320px;
    line-height: 1.45;
}

.gp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.gp-footer-nav a {
    font-size: 0.8rem;
    color: var(--gp-muted);
}

.gp-footer-nav a:hover {
    color: var(--gp-primary);
}

.gp-footer-copy {
    font-size: 0.75rem;
    color: var(--gp-muted);
}

@media (max-width: 768px) {
    .gp-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .gp-footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Policy pages: legacy footer (same look, old class names) */
.gp-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 24px 2rem;
}

.gp-footer__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.gp-footer__badge {
    padding: 0.35rem 0.7rem;
    background: var(--gp-surface);
    border: 1px solid var(--gp-border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gp-muted);
}

.gp-footer__badge--link img { height: 28px; width: auto; display: block; }

.gp-footer__badge--img {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.25);
}

.gp-footer__badge--img img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.2);
}

.gp-footer__badge--img:hover img {
    filter: brightness(1.3) contrast(1.25);
}

.gp-footer__disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gp-muted);
    margin-bottom: 1rem;
}

.gp-footer__disclaimer-block {
    padding: 1rem 1.25rem;
    background: var(--gp-surface);
    border-radius: 8px;
    max-width: 640px;
    margin: 0 auto 1rem;
    text-align: left;
}

.gp-footer__disclaimer-title { display: block; margin-bottom: 0.4rem; color: var(--gp-text); font-size: 0.9rem; }

.gp-footer__disclaimer-text { color: var(--gp-muted); font-size: 0.85rem; }

.gp-footer__links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.gp-footer__links a { font-size: 0.8rem; color: var(--gp-muted); }

.gp-footer__links a:hover { color: var(--gp-primary); }

.gp-footer__copy { font-size: 0.75rem; color: var(--gp-muted); text-align: center; }

/* ---------- Policy pages ---------- */
.gp-page {
    padding: 100px 24px 4rem;
    max-width: 720px;
    margin: 0 auto;
}

.gp-page h1 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    color: var(--gp-text);
    border-bottom: 3px solid var(--gp-primary);
    display: inline-block;
    padding-bottom: 0.2rem;
}

.gp-page h2 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.4rem;
    color: var(--gp-text);
}

.gp-page p, .gp-page li {
    color: var(--gp-muted);
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.gp-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }

.gp-page a { color: var(--gp-primary); }

.gp-page .gp-back {
    display: inline-block;
    margin-bottom: 1.5rem;
}
