@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --c-dark: #0e0405;
    --c-bg: #bb3527;
    --c-btn-blue: #0184a7;
    --c-btn-green: #00be31;
    --c-text-light: #f5f0ee;
    --c-text-muted: #e0d0cc;
    --c-gold: #f5c842;
    --c-card-bg: #8a2318;
    --c-card-border: #d4401e;
    --c-dark2: #1a0708;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 18px rgba(245, 200, 66, 0.35);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--c-btn-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--c-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-text-light);
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
    line-height: 1.65;
    margin-bottom: 0.85em;
    color: var(--c-text-light);
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background-color: var(--c-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--c-card-border);
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
    flex-wrap: wrap;
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.header-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text-muted);
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-gold);
}

.header-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
    color: #fff;
}

.btn:active {
    transform: translateY(0);
}

.btn-green {
    background-color: var(--c-btn-green);
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 190, 49, 0.4);
}

.btn-blue {
    background-color: var(--c-btn-blue);
    color: #fff;
    box-shadow: 0 3px 10px rgba(1, 132, 167, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #f5c842, #e6a800);
    color: #0e0405;
    box-shadow: 0 3px 10px rgba(245, 200, 66, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--c-btn-blue);
    color: var(--c-btn-blue);
}

.btn-outline:hover {
    background: var(--c-btn-blue);
    color: #fff;
}

.btn-lg {
    padding: 0.75rem 1.8rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 0.3rem 0.75rem;
    font-size: 0.85rem;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lang-picker {
    position: relative;
}

.lang-picker-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.7rem;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.lang-picker-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.lang-picker-btn.open svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-dark2);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-sm);
    min-width: 130px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 200;
}

.lang-dropdown.open {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.15s;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-text-light);
}

.mobile-nav {
    display: none;
    background: var(--c-dark2);
    border-top: 1px solid var(--c-card-border);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    color: var(--c-text-muted);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-text-light);
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--c-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/bigred-hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(1.2);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 4, 5, 0.92) 40%, rgba(14, 4, 5, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 200, 66, 0.15);
    border: 1px solid var(--c-gold);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-img-wrap {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.hero-img-wrap img {
    max-height: 340px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--c-gold);
}

.site-main {
    flex: 1;
    padding: 2rem 0;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.breadcrumb a {
    color: var(--c-btn-blue);
}

.breadcrumb span.sep {
    color: var(--c-text-muted);
    opacity: 0.5;
}

.breadcrumb span.current {
    color: var(--c-text-light);
    font-weight: 600;
}

.section-block {
    background: rgba(10, 3, 4, 0.55);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 0 0.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(6px);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(245, 200, 66, 0.3);
    padding-bottom: 0.6rem;
}

.section-title svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.demo-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.demo-wrap {
    position: relative;
    background: #000;
    border-radius: var(--radius-md);
    border: 2px solid var(--c-card-border);
    box-shadow: var(--shadow-md);
}

.demo-wrap iframe {
    width: 100%;
    aspect-ratio: 16/10;
    display: block;
    border: none;
}

.demo-play-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    display: flex;
    justify-content: center;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.game-details-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s;
}

.game-details-table tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.game-details-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    vertical-align: middle;
}

.game-details-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 45%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.game-details-table td:first-child svg {
    width: 15px;
    height: 15px;
    opacity: 0.75;
    flex-shrink: 0;
}

.game-details-table td:last-child {
    color: var(--c-text-light);
    font-weight: 600;
}

.rtp-badge {
    background: var(--c-btn-green);
    color: #fff;
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.mobile-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.phone-frame {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.phone-frame-inner {
    background: #111;
    border-radius: 32px;
    border: 4px solid #333;
    padding: 12px 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
}

.phone-frame-inner::before {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.phone-frame-inner img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.mobile-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.mobile-table td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.mobile-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 40%;
}

.mobile-table td:last-child {
    color: var(--c-text-light);
    font-weight: 600;
}

.app-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.6rem 1.1rem;
    color: var(--c-text-light);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.app-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.jackpot-card {
    background: linear-gradient(145deg, rgba(20, 6, 7, 0.9), rgba(14, 4, 5, 0.95));
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-card-border);
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 200, 66, 0.08), transparent 60%);
    pointer-events: none;
}

.jackpot-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.jackpot-card.jp-mini .jackpot-label {
    color: #a0d8ef;
}

.jackpot-card.jp-major .jackpot-label {
    color: #c0c0f0;
}

.jackpot-card.jp-grand .jackpot-label {
    color: var(--c-gold);
}

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.jackpot-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 12px rgba(245, 200, 66, 0.5);
}

.jackpot-currency {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}

.jackpot-winners {
    text-align: left;
}

.jackpot-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
}

.jackpot-winner-item:last-child {
    border-bottom: none;
}

.winner-nick {
    color: var(--c-text-muted);
    font-weight: 600;
}

.winner-amount {
    color: var(--c-btn-green);
    font-weight: 700;
}

.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    border: 2px solid var(--c-card-border);
    box-shadow: var(--shadow-md);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.bonus-card {
    background: linear-gradient(145deg, rgba(20, 6, 7, 0.9), rgba(14, 4, 5, 0.95));
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.casino-logo-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-gold);
}

.casino-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--c-text-light);
}

.casino-rating {
    font-size: 0.82rem;
    color: var(--c-gold);
}

.bonus-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-btn-green);
    line-height: 1.2;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    flex: 1;
}

.bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.bonus-tag {
    background: rgba(1, 132, 167, 0.2);
    border: 1px solid rgba(1, 132, 167, 0.4);
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.78rem;
    color: #64d4f0;
    font-weight: 600;
}

.bonus-card .btn {
    width: 100%;
}

.bonus-slider-wrap {
    position: relative;
}

.bonus-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--c-card-border) transparent;
}

.bonus-slider .bonus-card {
    flex: 0 0 min(88vw, 320px);
    scroll-snap-align: start;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.slider-dot.active {
    background: var(--c-gold);
}

.review-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text-light);
}

.review-content h2 {
    font-size: 1.5rem;
    color: var(--c-gold);
    margin: 1.5rem 0 0.75rem;
    border-bottom: 1px solid rgba(245, 200, 66, 0.2);
    padding-bottom: 0.4rem;
}

.review-content h3 {
    font-size: 1.2rem;
    color: var(--c-text-light);
    margin: 1.25rem 0 0.5rem;
}

.review-content p {
    margin-bottom: 0.9rem;
}

.review-content ul, .review-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.review-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    overflow-x: auto;
    display: block;
}

.review-content table th {
    background: rgba(245, 200, 66, 0.12);
    color: var(--c-gold);
    padding: 0.6rem 1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.review-content table td {
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
}

.review-content table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.review-content a {
    color: var(--c-btn-blue);
}

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

.review-content blockquote {
    border-left: 4px solid var(--c-gold);
    background: rgba(245, 200, 66, 0.06);
    padding: 0.75rem 1.25rem;
    margin: 1rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 0.75rem 0;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(20, 6, 7, 0.7);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-blue), var(--c-btn-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text-light);
}

.author-title {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-btn-blue);
}

.site-footer {
    background: var(--c-dark);
    border-top: 2px solid var(--c-card-border);
    margin-top: auto;
}

.footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.footer-nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
}

.footer-nav a {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--c-gold);
}

.footer-trust {
}

.footer-trust-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.footer-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.payment-logo {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--c-btn-blue);
    color: #fff;
    border-color: var(--c-btn-blue);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.footer-legal {
    font-size: 0.78rem;
    color: rgba(224, 208, 204, 0.5);
    line-height: 1.5;
}

.au-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.provider-logos {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.75rem 0;
}

.provider-logo-wrap img {
    height: 30px;
    width: auto;
    filter: brightness(0.75) grayscale(0.3);
    transition: filter 0.2s;
}

.provider-logo-wrap img:hover {
    filter: brightness(1);
}

.casino-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.widget-panel {
    background: var(--c-dark2);
    border: 1px solid var(--c-card-border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 1rem 0.75rem;
    width: 220px;
    box-shadow: var(--shadow-md);
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-panel.collapsed {
    transform: translateX(100%);
}

.widget-toggle {
    background: var(--c-dark2);
    border: 1px solid var(--c-card-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    color: var(--c-gold);
    font-size: 0.8rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    transition: background 0.2s;
}

.widget-toggle:hover {
    background: rgba(245, 200, 66, 0.1);
}

.widget-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(245, 200, 66, 0.2);
    padding-bottom: 0.4rem;
}

.widget-casino-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-casino-item:last-of-type {
    border-bottom: none;
}

.widget-casino-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.widget-casino-bonus {
    font-size: 0.8rem;
    color: var(--c-btn-green);
    font-weight: 600;
}

.widget-casino-item .btn {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.styled-table th {
    background: rgba(245, 200, 66, 0.12);
    color: var(--c-gold);
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.95rem;
}

.styled-table td {
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
    font-size: 0.95rem;
}

.styled-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.styled-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(20, 6, 7, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--c-text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    gap: 0.75rem;
    transition: background 0.15s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    width: 20px;
    height: 20px;
    background: rgba(245, 200, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-gold);
    font-size: 1rem;
    transition: transform 0.25s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pros-cons-box {
    background: rgba(20, 6, 7, 0.6);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.pros-cons-box.pros {
    border-left: 4px solid var(--c-btn-green);
}

.pros-cons-box.cons {
    border-left: 4px solid #e74c3c;
}

.pros-cons-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pros .pros-cons-title {
    color: var(--c-btn-green);
}

.cons .pros-cons-title {
    color: #e74c3c;
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pros-cons-list li {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.pros-cons-list li::before {
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 1px;
}

.pros .pros-cons-list li::before {
    content: '+';
    color: var(--c-btn-green);
}

.cons .pros-cons-list li::before {
    content: '−';
    color: #e74c3c;
}

.info-page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.info-page-content h1 {
    font-size: 2rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(245, 200, 66, 0.3);
    padding-bottom: 0.5rem;
}

.info-page-content h2 {
    font-size: 1.3rem;
    color: var(--c-text-light);
    margin: 1.5rem 0 0.6rem;
}

.info-page-content p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.info-page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--c-text-muted);
}

.info-page-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.info-page-content a {
    color: var(--c-btn-blue);
}

.info-page-content a:hover {
    color: var(--c-gold);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(0, 190, 49, 0.4);
    }
    50% {
        box-shadow: 0 3px 20px rgba(0, 190, 49, 0.75), 0 0 30px rgba(0, 190, 49, 0.3);
    }
}

.spin-icon {
    animation: spinIcon 8s linear infinite;
}

@keyframes spinIcon {
    to {
        transform: rotate(360deg);
    }
}

@keyframes countUp {
    from {
        opacity: 0.6;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jp-tick {
    animation: countUp 0.4s ease;
}

.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerAnim 2.5s linear infinite;
}

@keyframes shimmerAnim {
    from {
        background-position: -200% 0;
    }
    to {
        background-position: 200% 0;
    }
}

.d-none-mobile {
    display: block;
}

.d-none-desktop {
    display: none;
}

.eighteenplus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-weight: 900;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.wp-x9k2m {
    display: none;
}

.entry-content .post-thumbnail {
    display: none;
}

.wp-block-spacer {
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .demo-details-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top .footer-trust {
        grid-column: 1 / -1;
    }

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .lang-picker {
        display: none;
    }

    .d-none-mobile {
        display: none;
    }

    .d-none-desktop {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        padding: 2.5rem 1rem;
        gap: 1.5rem;
    }

    .hero-img-wrap img {
        max-height: 200px;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .mobile-section {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        margin: 0 auto;
    }

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

    .bonus-grid {
        display: none;
    }

    .bonus-slider-wrap {
        display: block;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav ul {
        grid-template-columns: 1fr 1fr;
    }

    .casino-widget {
        display: none;
    }

    .section-block {
        margin: 0 0 1.25rem;
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .app-btns {
        flex-direction: column;
    }

    .jackpot-amount {
        font-size: 1.4rem;
    }

    .footer-mid {
        flex-direction: column;
        align-items: flex-start;
    }
}
