/* ============================================
   Crowngreen Casino - Site 7 Stylesheet
   Colors: bg #041514, primary #0a6e5c, accent #e1d9ac, text #fff
   ============================================ */

:root {
    --primary: #0a6e5c;
    --accent: #e1d9ac;
    --bg: #041514;
    --text: #ffffff;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

.block-h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem; }
.block-h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.block-text { font-size: 1rem; line-height: 1.6; }

/* === HEADER / NAV === */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(4, 21, 20, 0.95);
    border-bottom: 1px solid rgba(225, 217, 172, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.site-logo { height: 40px; width: auto; }

.header-cta {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border: none;
    border-radius: 8px;
    color: #041514;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.header-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(225, 217, 172, 0.3);
}

/* === BLOCK 1: HERO (V1 - Split) === */
.hero-variation {
    background: linear-gradient(135deg, #041514 0%, #062e28 50%, #041514 100%);
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    gap: 3rem;
    align-items: center;
}

.hero-left { padding-right: 1rem; }

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-bar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(225, 217, 172, 0.2);
    border-radius: 6px;
    background: rgba(10, 110, 92, 0.15);
}

.trust-item strong { color: var(--accent); }

.hero-left .block-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #041514;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 2rem;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(225, 217, 172, 0.35);
}

.hero-right { display: flex; justify-content: center; }

.casino-screenshot {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.glowing-border {
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent));
    z-index: 0;
    animation: glowPulse 3s ease infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.casino-placeholder {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #0a2e28;
}

.casino-image {
    width: 100%;
    height: auto;
    display: block;
}

/* === BLOCK 2: TEXT BLOCK (V2 - H2 Left, Text Right) === */
.v2-text-wrap {
    padding: 60px 0;
    background: linear-gradient(135deg, #051a18, #083330);
}

.v2-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}

.v2-grid .block-h2 {
    position: sticky;
    top: 100px;
}

.steps-list {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.steps-list li {
    color: rgba(255,255,255,0.85);
    padding-left: 0.3rem;
}

.steps-list li::marker {
    color: var(--accent);
    font-weight: 700;
}

.steps-note {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
}

/* === BLOCK 3: CASINO GAMES (V3 - Asymmetric Grid) === */
.casino-games-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg), #062a24);
}

.casino-games-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.casino-games-header .block-text {
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

.game-category-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(225, 217, 172, 0.15);
    transition: all 0.3s ease;
}

.game-category-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 110, 92, 0.3);
}

.game-category-card.large { min-height: 340px; }

.game-category-image {
    position: absolute;
    inset: 0;
}

.game-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,21,20,0.9) 0%, transparent 60%);
}

.game-category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.category-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
}

.small-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-category-card.small { min-height: 160px; }

/* === BLOCK 4: CASINO SLOTS === */
.casino-slots-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg), #062a24);
}

.games-header {
    text-align: center;
    margin-bottom: 3rem;
}

.games-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slots-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.grid-5x3 { grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(3, 1fr); }

.slot-card {
    background: linear-gradient(135deg, #0a3530, #041514);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(225, 217, 172, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 3/4;
}

.slot-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(225, 217, 172, 0.2);
}

.slot-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    display: block;
}

.slot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

.slot-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slot-provider {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.slot-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
}

/* === BLOCK 5: LIVE GAMES (V1 - 5x1 Grid) === */
.live-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #051a18, #083330);
}

.live-games-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.live-games-header .block-text {
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
}

.live-games-grid {
    display: grid;
    gap: 1.5rem;
}

.grid-5x1 { grid-template-columns: repeat(5, 1fr); }
.grid-4x1 { grid-template-columns: repeat(4, 1fr); }

.live-game-card {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(225, 217, 172, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
}

.live-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(10, 110, 92, 0.3);
}

.live-game-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a3d34, #062a24);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.3rem 0.6rem;
    background: var(--primary);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.2s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(4,21,20,0.95), rgba(4,21,20,0.5), transparent);
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.live-game-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.live-game-variant {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === BLOCK 6: TABLE GAMES (V3 - 4x1 Grid) === */
.table-section {
    padding: 60px 0;
    background: var(--bg);
}

.table-games-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.table-games-header .block-text {
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
}

.table-games-grid { display: grid; gap: 1.5rem; }

.table-game-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(225, 217, 172, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
}

.table-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(10, 110, 92, 0.25);
}

.table-game-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a3d34, #041514);
}

.table-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem;
    background: linear-gradient(to top, rgba(4,21,20,0.95), transparent);
    z-index: 2;
}

.table-game-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.table-game-variant {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === BLOCK 7: REGISTRATION (V1 - Fullscreen BG) === */
.registration-v1-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.reg-v1-bg {
    position: absolute;
    inset: 0;
}

.reg-v1-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.reg-v1-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,21,20,0.9), rgba(6,42,36,0.85));
}

.registration-v1-section .container {
    position: relative;
    z-index: 2;
}

.reg-v1-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.reg-v1-content .block-text {
    color: rgba(255,255,255,0.85);
}

.form-screenshot {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(225, 217, 172, 0.2);
}

.form-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === BLOCK 8: PAYMENT METHODS (V1 - Logo Grid) === */
.payment-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #051a18, #041514);
    text-align: center;
}

.payment-section .block-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.75);
}

.pm-grid-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.pm-card-simple {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(225, 217, 172, 0.15);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.pm-card-simple img {
    width: 48px;
    height: 32px;
    object-fit: contain;
}

.pm-card-simple:hover {
    border-color: var(--accent);
    background: rgba(225, 217, 172, 0.1);
}

/* === BLOCK 9 & 10: DEPOSIT / WITHDRAWAL TABLES === */
.deposit-methods-v5 {
    padding: 60px 0;
    background: var(--bg);
}

.withdrawal-table-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #051a18, #041514);
}

.section-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 680px;
}

.table-scroll {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(225, 217, 172, 0.1);
}

.pm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.pm-table thead th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: rgba(10, 110, 92, 0.12);
    border-bottom: 1px solid rgba(225, 217, 172, 0.1);
}

.pm-table tbody td {
    padding: 14px 18px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85);
}

.pm-table tbody tr:last-child td { border-bottom: none; }
.pm-table tbody tr:hover { background: rgba(10, 110, 92, 0.08); }

/* === BLOCK 11: TEXT BLOCK (V1 - Centered) === */
.v1-text-wrap {
    padding: 60px 0;
    background: #051a18;
    text-align: center;
}

.v1-text-wrap .block-text {
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* === BLOCK 12: CASINO BONUSES (V4 - Compact Table) === */
.bonuses-v4-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #041514, #083330);
}

.bonuses-v4-section .block-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 800px;
}

.bonuses-compact-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.bonuses-compact-table thead {
    background: linear-gradient(135deg, rgba(10,110,92,0.2), rgba(225,217,172,0.08));
}

.bonuses-compact-table th {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.bonuses-compact-table td {
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bonuses-compact-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.bonuses-compact-table tr:hover td {
    background: rgba(10,110,92,0.08);
    color: #fff;
}

/* === BLOCK 13: WELCOME BONUS (V5 - Overlay Cards) === */
.welcome-bonus-section {
    padding: 60px 0;
    background: var(--bg);
}

.welcome-bonus-section .block-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 700px;
}

.bonus-overlay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bonus-overlay-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    cursor: pointer;
    border: 1px solid rgba(225, 217, 172, 0.12);
    transition: all 0.3s;
    background: linear-gradient(135deg, #0a3d34, #041514);
}

.bonus-overlay-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 110, 92, 0.3);
}

.bonus-overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bonus-overlay-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,21,20,0.95) 0%, rgba(4,21,20,0.5) 50%, rgba(4,21,20,0.1) 100%);
    z-index: 2;
}

.bonus-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
}

.bonus-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    background: rgba(10, 110, 92, 0.25);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.bonus-overlay-amount {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0.3rem 0 0.4rem;
}

.bonus-overlay-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.bonus-overlay-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #041514;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(225, 217, 172, 0.3);
}

.cta-btn--sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

/* === BLOCK 14: NO DEPOSIT BONUS (V5 - Overlay Cards single) === */
.nodeposit-overlay-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #051a18, #083330);
}

.nodeposit-overlay-section .block-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 700px;
}

.nodeposit-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
}

.nodeposit-card {
    min-height: 320px;
}

/* === BLOCK 15: FREE SPINS (V1 - Split Layout) === */
.freespins-v1-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: linear-gradient(135deg, #041514, #0a3d34);
}

.freespins-v1-left {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.bonus-amount-big {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0.5rem 0;
}

.bonus-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.freespins-v1-right {
    position: relative;
    overflow: hidden;
}

.freespins-v1-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.freespins-v1-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(4,21,20,0.4), transparent);
}

/* === BLOCK 16: TEXT BLOCK (V5 - Centered) === */
.v5-wrap {
    padding: 60px 0;
    background: #051a18;
}

.v5-wrap .block-text {
    color: rgba(255,255,255,0.8);
    max-width: 800px;
}

/* === BLOCK 17: DOWNLOAD APP (V3 - Card Style) === */
.app-v3-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #041514, #062a24);
    text-align: center;
}

.app-v3-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-v3-section .block-text {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin-bottom: 1rem;
}

.v3-cards {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.v3-app-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(225, 217, 172, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.v3-app-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 110, 92, 0.2);
}

.v3-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-icon svg { width: 36px; height: 36px; color: #041514; }

.v3-platform {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.v3-platform-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.store-btn {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
}

.store-btn-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.store-btn-sub {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn-main {
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #041514;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(225, 217, 172, 0.35);
}

/* === BLOCK 18: FAQ (h3 + JS accordion) === */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #051a18, #083330);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-item {
    border: 1px solid rgba(225, 217, 172, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(225, 217, 172, 0.25);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transition: background 0.3s;
}

.faq-question:hover { background: rgba(10, 110, 92, 0.08); }

.faq-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #041514;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.2rem calc(44px + 1.5rem + 1.5rem);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    display: block;
}

/* === FOOTER === */
.site-footer {
    padding: 60px 0;
    background: #031210;
    text-align: center;
    border-top: 1px solid rgba(225, 217, 172, 0.1);
}

.footer-logo {
    height: 36px;
    margin: 0 auto 1.5rem;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    max-width: 700px;
    margin: 0 auto 0.8rem;
    line-height: 1.6;
}

.footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
}

/* === PROMO BAR === */
.promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), #062a24);
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 9999;
    border-top: 1px solid rgba(225, 217, 172, 0.2);
    transition: transform 0.3s ease;
}

.promo-bar.hidden { transform: translateY(100%); }

.promo-bar-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.promo-bar-cta {
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    color: #041514;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.promo-bar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(225, 217, 172, 0.3);
}

.promo-bar-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: color 0.3s;
}

.promo-bar-close:hover { color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .grid-5x3 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { padding-right: 0; }
    .hero-title { font-size: 2rem; }
    .hero-right { order: -1; }
    .casino-screenshot { max-width: 400px; margin: 0 auto; }

    .v2-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .asymmetric-grid { grid-template-columns: 1fr; }
    .game-category-card.large { min-height: 260px; }

    .reg-v1-content { grid-template-columns: 1fr; gap: 2rem; }

    .freespins-v1-section { grid-template-columns: 1fr; }
    .freespins-v1-right { min-height: 280px; }
}

@media (max-width: 820px) {
    .grid-5x1 { grid-template-columns: repeat(3, 1fr); }
    .grid-4x1 { grid-template-columns: repeat(2, 1fr); }
    .grid-5x3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-variation,
    .v2-text-wrap,
    .casino-games-section,
    .casino-slots-section,
    .live-section,
    .table-section,
    .registration-v1-section,
    .payment-section,
    .deposit-methods-v5,
    .withdrawal-table-section,
    .v1-text-wrap,
    .bonuses-v4-section,
    .welcome-bonus-section,
    .nodeposit-overlay-section,
    .v5-wrap,
    .app-v3-section,
    .faq-section,
    .site-footer {
        padding: 40px 0;
    }

    .grid-5x1 { grid-template-columns: repeat(2, 1fr); }
    .grid-5x3 { grid-template-columns: repeat(2, 1fr); }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-overlay-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-variation,
    .v2-text-wrap,
    .casino-games-section,
    .casino-slots-section,
    .live-section,
    .table-section,
    .registration-v1-section,
    .payment-section,
    .deposit-methods-v5,
    .withdrawal-table-section,
    .v1-text-wrap,
    .bonuses-v4-section,
    .welcome-bonus-section,
    .nodeposit-overlay-section,
    .v5-wrap,
    .app-v3-section,
    .faq-section,
    .site-footer {
        padding: 32px 0;
    }

    .site-header { padding: 0.8rem 1rem; }
    .site-logo { height: 32px; }

    .hero-title { font-size: 1.6rem; }
    .trust-bar { gap: 0.8rem; }
    .trust-item { font-size: 0.7rem; padding: 0.3rem 0.6rem; }

    .pm-card-simple { width: 65px; height: 42px; }
    .pm-card-simple img { width: 40px; height: 28px; }

    .freespins-v1-left { padding: 2rem 1.5rem; }
    .bonus-amount-big { font-size: 2.5rem; }

    .live-game-name { font-size: 0.8rem; }
    .slot-name { font-size: 0.75rem; }

    .faq-answer { padding-left: calc(44px + 1rem + 1rem); }

    .promo-bar { padding: 0.6rem 1rem; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
    .promo-bar-text { font-size: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
    .slots-grid { grid-template-columns: 1fr; }
    .grid-4x1 { grid-template-columns: 1fr; }
    .grid-5x1 { grid-template-columns: 1fr; }
    .grid-5x3 { grid-template-columns: repeat(2, 1fr); }
    .slot-name { font-size: 0.65rem; }
}
