:root {
    --clr-bg: #8063b7;
    --clr-hf: #704319;
    --clr-btn-primary: #1c9221;
    --clr-btn-secondary: #fded03;
    --clr-white: #ffffff;
    --clr-text-light: #f0e6ff;
    --clr-dark: #2d1a0e;
    --clr-accent: #fded03;
    --ff-head: 'Bebas Neue', sans-serif;
    --ff-body: 'Segoe UI', system-ui, sans-serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .35);
    --transition: .3s ease
}

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

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-white);
    font-family: var(--ff-body);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden
}

h1, h2, h3, h4, h5 {
    font-family: var(--ff-head);
    letter-spacing: .04em;
    line-height: 1.15
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem)
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem)
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: #fff
}

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

/* Buttons */
.btn-primary-goo, .btn-secondary-goo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-head);
    letter-spacing: .06em;
    font-size: 1.1rem;
    padding: .65rem 1.6rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.btn-primary-goo {
    background: var(--clr-btn-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(28, 146, 33, .4)
}

.btn-primary-goo:hover {
    background: #17701b;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 18px rgba(28, 146, 33, .5)
}

.btn-secondary-goo {
    background: var(--clr-btn-secondary);
    color: var(--clr-dark);
    box-shadow: 0 4px 12px rgba(253, 237, 3, .3)
}

.btn-secondary-goo:hover {
    background: #e8d800;
    transform: translateY(-2px);
    color: var(--clr-dark);
    box-shadow: 0 6px 18px rgba(253, 237, 3, .45)
}

.btn-sm-goo {
    font-size: .9rem;
    padding: .45rem 1.1rem
}

/* Header */
#site-header {
    background: var(--clr-hf);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .6rem 1.5rem
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex-wrap: wrap;
    justify-content: center
}

.main-nav a {
    color: var(--clr-white);
    font-family: var(--ff-head);
    letter-spacing: .05em;
    font-size: 1rem;
    padding: .4rem .75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: background var(--transition), color var(--transition)
}

.main-nav a:hover, .main-nav a.active {
    background: rgba(255, 255, 255, .15);
    color: var(--clr-accent)
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: nowrap
}

/* Language picker */
.lang-picker {
    position: relative
}

.lang-picker-btn {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    border-radius: 6px;
    padding: .35rem .7rem;
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: background var(--transition)
}

.lang-picker-btn:hover {
    background: rgba(255, 255, 255, .25)
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-hf);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    min-width: 120px;
    overflow: hidden;
    display: none;
    z-index: 99;
    box-shadow: var(--shadow)
}

.lang-dropdown.open {
    display: block
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    color: #fff;
    font-size: .85rem;
    transition: background var(--transition)
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--clr-accent)
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition)
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
    display: none;
    background: var(--clr-hf);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.mobile-nav.open {
    display: block
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-family: var(--ff-head);
    letter-spacing: .05em;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.05rem
}

.mobile-nav a:last-child {
    border-bottom: none
}

.mobile-nav a:hover {
    color: var(--clr-accent)
}

/* Container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem
}

/* Sections */
.section-block {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px)
}

.section-block-alt {
    background: rgba(112, 67, 25, .25);
    border-color: rgba(253, 237, 3, .15)
}

.section-block-dark {
    background: rgba(0, 0, 0, .25)
}

.section-title {
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    text-align: center
}

.section-title span {
    color: #fff
}

/* Hero */
#hero {
    background: linear-gradient(135deg, rgba(112, 67, 25, .7) 0%, rgba(128, 99, 183, .6) 50%, rgba(28, 146, 33, .3) 100%), url('/images/banner-olympus.png') center/cover no-repeat;
    padding: 4rem 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, .5) 100%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
    margin-bottom: .5rem
}

.hero-title span {
    color: var(--clr-accent)
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(253, 237, 3, .15);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .85rem;
    margin-bottom: 1.2rem;
    font-family: var(--ff-head);
    letter-spacing: .06em
}

/* Game iframe */
.game-iframe-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    background: #000;
    box-shadow: var(--shadow)
}

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

.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(112, 67, 25, .9), rgba(128, 99, 183, .9));
    cursor: pointer;
    transition: opacity var(--transition)
}

.game-overlay-inner {
    text-align: center
}

.game-overlay svg {
    width: 64px;
    height: 64px;
    color: var(--clr-accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(253, 237, 3, .6))
}

.game-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.2rem;
    flex-wrap: wrap
}

/* Phone frame */
.phone-frame-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem
}

.phone-frame {
    position: relative;
    width: 200px;
    height: 380px;
    background: #111;
    border-radius: 36px;
    border: 6px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6), inset 0 0 0 2px #222
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 3px
}

.phone-frame img {
    width: 100%;
    padding-top: 100px;
    object-fit: cover;
}

.phone-frame-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #111;
    border-radius: 0 0 12px 12px;
    z-index: 2
}

/* Mobile app grid */
.mobile-section-grid {
    display: grid;
    grid-template-columns:220px 1fr;
    gap: 2rem;
    align-items: start
}

@media (max-width: 768px) {
    .mobile-section-grid {
        grid-template-columns:1fr
    }
}

/* App store buttons */
.app-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #111;
    color: #fff;
    padding: .6rem 1.1rem;
    border-radius: 8px;
    font-size: .9rem;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: all var(--transition);
    text-decoration: none
}

.app-btn:hover {
    background: #222;
    color: var(--clr-accent);
    border-color: var(--clr-accent)
}

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

/* Data table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin-top: 1rem;
    background: rgba(0, 0, 0, .2);
    border-radius: 8px;
    overflow: hidden
}

.data-table th, .data-table td {
    padding: .6rem .9rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.data-table th {
    background: rgba(112, 67, 25, .5);
    color: var(--clr-accent);
    font-family: var(--ff-head);
    letter-spacing: .05em;
    font-size: .95rem
}

.data-table tr:last-child td {
    border-bottom: none
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, .05)
}

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

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

@media (max-width: 768px) {
    .jackpot-grid {
        grid-template-columns:1fr
    }
}

.jackpot-card {
    background: linear-gradient(135deg, rgba(112, 67, 25, .6), rgba(0, 0, 0, .4));
    border: 2px solid;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
    pointer-events: none
}

.jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.jackpot-card.bronze {
    border-color: #cd7f32
}

.jackpot-card.silver {
    border-color: #c0c0c0
}

.jackpot-card.gold {
    border-color: #ffd700
}

.jackpot-icon {
    font-size: 2.5rem;
    margin-bottom: .5rem
}

.jackpot-level {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    letter-spacing: .08em
}

.jackpot-card.bronze .jackpot-level {
    color: #cd7f32
}

.jackpot-card.silver .jackpot-level {
    color: #c0c0c0
}

.jackpot-card.gold .jackpot-level {
    color: #ffd700
}

.jackpot-amount {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    color: #fff;
    margin: .3rem 0;
    text-shadow: 0 0 20px rgba(253, 237, 3, .3)
}

.jackpot-currency {
    font-size: .85rem;
    color: var(--clr-text-light);
    margin-bottom: .8rem
}

.jackpot-players {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: .8rem
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .3rem 0;
    font-size: .85rem
}

.jackpot-player-name {
    color: var(--clr-text-light)
}

.jackpot-player-win {
    color: var(--clr-accent);
    font-weight: 600
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem
}

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

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns:1fr
    }
}

.review-card {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: transform var(--transition)
}

.review-card:hover {
    transform: translateY(-4px)
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-accent);
    margin-bottom: .8rem
}

.review-name {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: .04em
}

.review-stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin: .3rem 0
}

.review-text {
    font-size: .9rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-top: .5rem
}

/* Review form */
.review-form {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 1.5rem
}

.review-form h3 {
    font-family: var(--ff-head);
    color: var(--clr-accent);
    margin-bottom: 1.2rem;
    font-size: 1.4rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    color: var(--clr-text-light);
    font-size: .9rem;
    margin-bottom: .35rem
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: .7rem 1rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: #fff;
    font-size: .95rem;
    font-family: var(--ff-body);
    transition: border-color var(--transition);
    outline: none
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--clr-accent);
    background: rgba(255, 255, 255, .12)
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, .35)
}

.form-group textarea {
    min-height: 110px;
    resize: vertical
}

.form-success {
    display: none;
    background: rgba(28, 146, 33, .25);
    border: 1px solid var(--clr-btn-primary);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #fff;
    font-family: var(--ff-head);
    letter-spacing: .04em;
    font-size: 1.1rem
}

.form-success.visible {
    display: block
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden
}

.faq-item:last-child {
    border-bottom: none
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--ff-head);
    font-size: 1.05rem;
    letter-spacing: .04em;
    padding: 1rem .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
    gap: .5rem
}

.faq-question:hover {
    color: var(--clr-accent)
}

.faq-question.open {
    color: var(--clr-accent)
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    font-size: 1.2rem;
    line-height: 1
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease
}

.faq-answer.open {
    max-height: 600px
}

.faq-answer-inner {
    padding: .2rem .5rem 1rem;
    color: var(--clr-text-light);
    font-size: .95rem;
    line-height: 1.7
}

/* Content review block */
.content-review-block {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-text-light)
}

.content-review-block h2, .content-review-block h3, .content-review-block h4 {
    font-family: var(--ff-head);
    color: var(--clr-accent);
    margin: 1.2rem 0 .6rem;
    letter-spacing: .04em
}

.content-review-block p {
    margin-bottom: 1rem
}

.content-review-block ul, .content-review-block ol {
    margin: 0 0 1rem 1.4rem
}

.content-review-block li {
    margin-bottom: .4rem
}

.content-review-block a {
    color: var(--clr-accent)
}

.content-review-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: .9rem
}

.content-review-block table th, .content-review-block table td {
    padding: .5rem .75rem;
    border: 1px solid rgba(255, 255, 255, .2);
    text-align: left
}

.content-review-block table th {
    background: rgba(112, 67, 25, .4);
    color: var(--clr-accent)
}

.content-review-block strong, .content-review-block b {
    color: #fff
}

.content-review-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: .5rem 1rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, .2);
    border-radius: 0 8px 8px 0;
    font-style: italic
}

/* Author box */
.author-box {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(112, 67, 25, .2);
    border: 1px solid rgba(253, 237, 3, .2);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-top: 1.5rem
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--clr-accent);
    flex-shrink: 0;
    object-fit: cover;
    background: rgba(255, 255, 255, .1)
}

.author-name {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    color: var(--clr-accent);
    letter-spacing: .04em
}

.author-bio {
    font-size: .85rem;
    color: var(--clr-text-light);
    margin-top: .3rem;
    line-height: 1.55
}

.author-links {
    display: flex;
    gap: .75rem;
    margin-top: .6rem;
    flex-wrap: wrap
}

.author-links a {
    font-size: .8rem;
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
    padding: .2rem .6rem;
    border-radius: 4px;
    transition: all var(--transition)
}

.author-links a:hover {
    background: var(--clr-accent);
    color: var(--clr-dark)
}

/* Footer */
#site-footer {
    background: var(--clr-hf);
    padding: 2.5rem 0 1rem;
    margin-top: 3rem
}

.footer-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns:1fr
    }
}

.footer-col-title {
    font-family: var(--ff-head);
    color: var(--clr-accent);
    letter-spacing: .06em;
    font-size: 1.05rem;
    margin-bottom: 1rem
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .45rem
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--clr-accent)
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-top: .75rem
}

.footer-logo-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: .3rem .6rem;
    transition: background var(--transition)
}

.footer-logo-item:hover {
    background: rgba(255, 255, 255, .2)
}

.footer-logo-item img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1)
}

.footer-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .75rem
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: .35rem .65rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    letter-spacing: .04em;
    transition: all var(--transition)
}

.trust-badge:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7
}

.footer-bottom strong {
    color: rgba(255, 255, 255, .7)
}

.footer-social {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-top: .6rem
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: all var(--transition)
}

.social-link:hover {
    background: var(--clr-accent);
    color: var(--clr-dark)
}

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

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .5rem
}

#casino-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    width: 290px
}

.widget-toggle {
    width: 100%;
    background: var(--clr-btn-primary);
    color: #fff;
    font-family: var(--ff-head);
    letter-spacing: .06em;
    font-size: 1rem;
    padding: .6rem 1rem;
    border: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(28, 146, 33, .4);
    transition: background var(--transition)
}

.widget-toggle:hover {
    background: #17701b
}

.widget-toggle-icon {
    transition: transform var(--transition)
}

.widget-toggle.closed .widget-toggle-icon {
    transform: rotate(180deg)
}

.widget-body {
    background: var(--clr-hf);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: max-height .35s ease
}

.widget-body.open {
    max-height: 500px
}

.widget-body.closed {
    max-height: 0
}

.widget-casino {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

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

.widget-casino-rank {
    width: 22px;
    height: 22px;
    background: var(--clr-accent);
    color: var(--clr-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0
}

.widget-casino-info {
    flex: 1;
    min-width: 0
}

.widget-casino-name {
    font-family: var(--ff-head);
    color: #fff;
    font-size: .95rem;
    letter-spacing: .04em;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.widget-casino-bonus {
    font-size: .75rem;
    color: var(--clr-accent);
    display: block
}

.widget-casino-btn {
    background: var(--clr-btn-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .35rem .75rem;
    font-size: .8rem;
    font-family: var(--ff-head);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition)
}

.widget-casino-btn:hover {
    background: #17701b;
    color: #fff
}

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

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

.text-accent {
    color: var(--clr-accent)
}

.text-center {
    text-align: center
}

.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.mb-1 {
    margin-bottom: .5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.breadcrumb-bar {
    background: rgba(0, 0, 0, .2);
    padding: .5rem 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55)
}

.breadcrumb-bar a {
    color: var(--clr-accent)
}

.breadcrumb-bar span {
    margin: 0 .4rem
}

.wp-block-embed, .wp-block-group, .wp-block-columns {
    all: unset
}

.entry-meta, .post-categories, .tag-cloud-widget {
    display: none
}

.x4f8b2, .z9a1q3, .m7k2p5 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap
}

.b3v7r1 a {
    all: inherit
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns:auto auto;
        justify-content: space-between
    }

    .main-nav {
        display: none
    }

    .burger {
        display: flex
    }
}

@media (max-width: 600px) {
    .game-iframe-wrap iframe {
        height: 300px
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(28, 146, 33, .4)
    }
    50% {
        box-shadow: 0 4px 28px rgba(28, 146, 33, .75), 0 0 0 6px rgba(28, 146, 33, .15)
    }
}

.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite
}

@keyframes jackpot-flash {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .6
    }
}

.jackpot-updating {
    animation: jackpot-flash .3s ease
}

.gradient-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    margin: 1.5rem 0;
    opacity: .4
}

.stars svg {
    fill: #ffd700;
    width: 16px;
    height: 16px;
    display: inline
}

.x-goo-91bv {
    display: none
}

.y-goo-3mk {
    visibility: hidden
}

.z-goo-7px {
    opacity: 0
}

.rtp-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(28, 146, 33, .2);
    border: 1px solid var(--clr-btn-primary);
    border-radius: 50px;
    padding: .2rem .8rem;
    font-size: .8rem;
    color: var(--clr-btn-primary);
    font-weight: 600;
    letter-spacing: .04em
}

.volatility-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(253, 237, 3, .15);
    border: 1px solid var(--clr-accent);
    border-radius: 50px;
    padding: .2rem .8rem;
    font-size: .8rem;
    color: var(--clr-accent);
    font-weight: 600;
    letter-spacing: .04em
}

.provider-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: .3rem .75rem;
    font-size: .85rem;
    color: #fff
}

.provider-badge img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1)
}
