@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

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

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #004b3e;
    color: #e8dfc8;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: #957d4b;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: #c9a96b
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    color: #f5ead7
}

h1 {
    font-size: 2.2rem;
    font-weight: 700
}

h2 {
    font-size: 1.75rem;
    font-weight: 700
}

h3 {
    font-size: 1.35rem;
    font-weight: 600
}

p {
    margin-bottom: 1rem
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem
}

li {
    margin-bottom: .35rem
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem auto
}

table th, table td {
    padding: .6rem .9rem;
    border: 2px solid #957d4b;
    text-align: left
}

table thead {
    background: #92000b;
    color: #fff
}

table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, .2)
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.box {
    border-radius: 12px
}

.site-header {
    background: linear-gradient(135deg, #92000b 0%, #6b0008 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 18px rgba(0, 0, 0, .5)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 12px
}

.header-logo img {
    height: 52px;
    width: auto;
    object-fit: contain
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.header-nav a {
    color: #f5ead7;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 255, 255, .12);
    color: #ffd17c
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s;
    border: none;
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35)
}

.btn-play {
    background: #fff;
    color: #92000b
}

.btn-play:hover {
    background: #f5ead7;
    color: #6b0008
}

.btn-bonus {
    background: #957d4b;
    color: #fff
}

.btn-bonus:hover {
    background: #7a6438;
    color: #fff
}

.btn-primary {
    background: #92000b;
    color: #fff
}

.btn-primary:hover {
    background: #6b0008
}

.btn-secondary {
    background: #957d4b;
    color: #fff
}

.btn-secondary:hover {
    background: #7a6438
}

.btn-lg {
    padding: 13px 30px;
    font-size: 1.1rem;
    border-radius: 10px
}

.lang-picker {
    position: relative
}

.lang-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #f5ead7;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 5px
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #1a0003;
    border: 1px solid #957d4b;
    border-radius: 8px;
    overflow: hidden;
    min-width: 100px;
    z-index: 200
}

.lang-dropdown a {
    display: block;
    padding: 8px 14px;
    color: #f5ead7;
    font-size: .85rem
}

.lang-dropdown a:hover {
    background: #92000b;
    color: #fff
}

.lang-picker:hover .lang-dropdown {
    display: block
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f5ead7;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.hero-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #001a14
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/elvisfrogtrueways-banner.png');
    background-size: cover;
    background-position: center top;
    filter: brightness(.6);
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .72) 45%, transparent 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 600px
}

.hero-content h1 {
    font-size: 2.6rem;
    color: #ffd17c;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
    margin-bottom: .5rem
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #e8dfc8;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6)
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.8rem
}

.hero-stars {
    display: flex;
    gap: 3px
}

.hero-stars svg {
    width: 24px;
    height: 24px
}

.hero-rtp {
    font-size: .9rem;
    color: #c9a96b;
    background: rgba(0, 0, 0, .35);
    padding: 4px 10px;
    border-radius: 20px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.breadcrumb-bar {
    background: rgba(0, 0, 0, .25);
    padding: 10px 0
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .85rem;
    color: #957d4b;
    list-style: none;
    padding: 0;
    margin: 0
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px
}

.breadcrumb li + li::before {
    content: '›';
    color: #957d4b
}

.breadcrumb a {
    color: #c9a96b
}

.breadcrumb a:hover {
    color: #ffd17c
}

.breadcrumb [aria-current="page"] {
    color: #e8dfc8
}

.section {
    padding: 50px 0
}

.section-title {
    font-size: 1.7rem;
    color: #ffd17c;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #92000b;
    margin-top: 8px;
    border-radius: 2px
}

.demo-block {
    background: linear-gradient(135deg, #0a1f1a 0%, #0d2b24 100%);
    border: 1px solid #957d4b;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 30px
}

.demo-iframe-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    background: #000;
    margin-bottom: 16px
}

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

.demo-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-bottom: 30px
}

.pros-box, .cons-box {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid
}

.pros-box {
    background: rgba(0, 100, 50, .15);
    border-color: #1e7a3e
}

.cons-box {
    background: rgba(146, 0, 11, .12);
    border-color: #92000b
}

.pros-box h3 {
    color: #4ddb80
}

.cons-box h3 {
    color: #ff6b7a
}

.pros-cons ul {
    list-style: none;
    padding: 0
}

.pros-cons li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: .95rem
}

.pros-cons li:last-child {
    border-bottom: none
}

.pros-cons li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    margin-top: 2px
}

.pros-box li::before {
    background: #1e7a3e;
    content: '✓';
    color: #fff
}

.cons-box li::before {
    background: #92000b;
    content: '✗';
    color: #fff
}

.jackpot-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px
}

.jackpot-card {
    background: linear-gradient(180deg, #1a0a00 0%, #0d1f1a 100%);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

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

.jackpot-card.mini {
    border-color: #957d4b
}

.jackpot-card.major {
    border-color: #c0a060
}

.jackpot-card.mega {
    border-color: #ffd700;
    background: linear-gradient(180deg, #1a1000 0%, #0d1f1a 100%)
}

.jackpot-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.jackpot-card.mini .jackpot-label {
    color: #957d4b
}

.jackpot-card.major .jackpot-label {
    color: #c9a96b
}

.jackpot-card.mega .jackpot-label {
    color: #ffd700
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 6px 0 2px;
    letter-spacing: .03em
}

.jackpot-card.mini .jackpot-amount {
    color: #cbb97a
}

.jackpot-card.major .jackpot-amount {
    color: #d4af5a
}

.jackpot-card.mega .jackpot-amount {
    color: #ffd700;
    text-shadow: 0 0 18px rgba(255, 215, 0, .45)
}

.jackpot-multiplier {
    font-size: .8rem;
    color: #a09080;
    margin-bottom: 14px
}

.jackpot-top {
    font-size: .7rem;
    color: #a09080;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px
}

.jackpot-players {
    list-style: none;
    padding: 0
}

.jackpot-players li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .82rem;
    color: #c8bba0
}

.jackpot-players li:last-child {
    border-bottom: none
}

.jackpot-players .jp-nick {
    color: #f5ead7;
    font-weight: 600
}

.jp-pulse {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #ff3a3a;
    border-radius: 50%;
    animation: jpPulse 1.4s ease-in-out infinite
}

@keyframes jpPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 58, 58, .6)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 58, 58, 0)
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px
}

.review-card {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(149, 125, 75, .35);
    border-radius: 12px;
    padding: 18px;
    transition: border-color .2s, transform .2s
}

.review-card:hover {
    border-color: #957d4b;
    transform: translateY(-3px)
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #957d4b;
    flex-shrink: 0
}

.review-name {
    font-weight: 700;
    color: #f5ead7;
    font-size: .95rem
}

.review-location {
    font-size: .75rem;
    color: #957d4b
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .5rem
}

.review-stars svg {
    width: 14px;
    height: 14px
}

.review-text {
    font-size: .88rem;
    color: #c8bba0;
    line-height: 1.55
}

.review-form-wrap {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(149, 125, 75, .35);
    border-radius: 14px;
    padding: 26px;
    max-width: 560px
}

.review-form-wrap h3 {
    color: #ffd17c;
    margin-bottom: 18px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: .9rem;
    color: #c8bba0;
    font-weight: 600
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, .3);
    border: 1.5px solid #957d4b;
    border-radius: 8px;
    color: #f5ead7;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
    resize: vertical
}

.form-control:focus {
    outline: none;
    border-color: #ffd17c;
    box-shadow: 0 0 0 3px rgba(255, 209, 124, .15)
}

.form-control::placeholder {
    color: #6b5e45
}

.form-success {
    display: none;
    background: rgba(0, 120, 60, .25);
    border: 1px solid #1e7a3e;
    color: #4ddb80;
    border-radius: 8px;
    padding: 14px;
    font-size: .95rem;
    text-align: center
}

.form-success.show {
    display: block
}

.video-block {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(149, 125, 75, .35);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 30px
}

.video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    background: #000
}

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

.content-block {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(149, 125, 75, .25);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 30px;
    line-height: 1.7
}

.content-block h2, .content-block h3, .content-block h4 {
    color: #ffd17c;
    margin: 1.4rem 0 .6rem
}

.content-block h2 {
    font-size: 1.55rem
}

.content-block h3 {
    font-size: 1.25rem
}

.content-block h4 {
    font-size: 1.1rem
}

.content-block p {
    margin-bottom: .9rem;
    color: #ddd4bd
}

.content-block ul, .content-block ol {
    padding-left: 1.5rem;
    margin-bottom: .9rem;
    color: #ddd4bd
}

.content-block li {
    margin-bottom: .3rem
}

.content-block a {
    color: #957d4b;
    text-decoration: underline
}

.content-block a:hover {
    color: #ffd17c
}

.content-block strong {
    color: #f5ead7
}

.content-block em {
    color: #c9a96b;
    font-style: italic
}

.content-block table {
    font-size: .9rem
}

.content-block th {
    background: #92000b;
    color: #fff;
    font-size: .9rem
}

.content-block blockquote {
    border-left: 4px solid #957d4b;
    padding: 10px 18px;
    margin: 1rem 0;
    color: #c8bba0;
    font-style: italic;
    background: rgba(0, 0, 0, .2);
    border-radius: 0 8px 8px 0
}

.content-block img {
    border-radius: 8px;
    max-width: 100%;
    margin: 1rem 0
}

.content-block hr {
    border: none;
    border-top: 1px solid rgba(149, 125, 75, .3);
    margin: 1.5rem 0
}

.author-block {
    background: linear-gradient(135deg, rgba(146, 0, 11, .15) 0%, rgba(0, 0, 0, .3) 100%);
    border: 1px solid rgba(146, 0, 11, .4);
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 30px
}

.author-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #92000b;
    flex-shrink: 0
}

.author-meta {
    flex: 1
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd17c;
    margin-bottom: 2px
}

.author-position {
    font-size: .9rem;
    color: #c9a96b;
    margin-bottom: 4px
}

.author-location {
    font-size: .8rem;
    color: #a09080;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: 4px
}

.author-education {
    font-size: .82rem;
    color: #a09080;
    margin-bottom: .6rem
}

.author-bio {
    font-size: .9rem;
    color: #c8bba0;
    line-height: 1.55;
    margin-bottom: 10px
}

.author-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px
}

.author-contacts a {
    font-size: .82rem;
    color: #957d4b;
    background: rgba(0, 0, 0, .25);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(149, 125, 75, .3);
    display: flex;
    align-items: center;
    gap: 5px
}

.author-contacts a:hover {
    background: #92000b;
    color: #fff;
    border-color: #92000b
}

.author-socials {
    display: flex;
    gap: 8px
}

.author-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #92000b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    transition: background .2s, transform .2s
}

.author-socials a:hover {
    background: #6b0008;
    transform: scale(1.12)
}

.author-dates {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    font-size: .8rem;
    color: #a09080;
    flex-wrap: wrap
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 4px
}

.site-footer {
    background: linear-gradient(135deg, #92000b 0%, #6b0008 100%);
    padding: 40px 0 20px;
    margin-top: auto
}

.footer-inner {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px
}

.footer-logo img {
    height: 48px;
    margin-bottom: 12px
}

.footer-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.55
}

.footer-heading {
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ffd17c;
    margin-bottom: 12px
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-links a {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
    transition: color .2s
}

.footer-links a:hover {
    color: #ffd17c
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-payments, .footer-trust, .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.footer-payments img, .footer-trust img {
    height: 28px;
    background: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    filter: grayscale(20%)
}

.payment-badge, .trust-badge {
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: .65rem;
    font-weight: 700;
    color: #333;
    letter-spacing: .05em;
    white-space: nowrap
}

.footer-socials a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    transition: background .2s, transform .2s
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, .3);
    transform: scale(1.1)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 18px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    text-align: center;
    line-height: 1.7
}

.footer-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.flag-au {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px
}

.provider-logo {
    height: 26px;
    filter: brightness(10);
    opacity: .75
}

.footer-legal {
    margin-top: 8px;
    font-size: .73rem;
    color: rgba(255, 255, 255, .5);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.footer-provider-row {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 10px;
    flex-wrap: wrap
}

.age-badge {
    background: #fff;
    color: #333;
    font-weight: 700;
    font-size: .7rem;
    border-radius: 4px;
    padding: 3px 7px;
    border: 2px solid #ccc
}

.copyright {
    margin-top: 6px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55)
}

.casino-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    background: linear-gradient(180deg, #6b0008 0%, #92000b 100%);
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .5);
    overflow: hidden;
    transition: width .3s ease
}

.casino-widget.collapsed .widget-body {
    display: none
}

.widget-toggle {
    background: none;
    border: none;
    color: #ffd17c;
    cursor: pointer;
    padding: 10px 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.widget-toggle svg {
    transform: rotate(90deg)
}

.casino-widget:not(.collapsed) .widget-toggle {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 14px
}

.widget-body {
    padding: 12px 10px;
    width: 190px
}

.widget-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ffd17c;
    margin-bottom: 10px;
    text-align: center
}

.widget-casino-item {
    background: rgba(0, 0, 0, .3);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 209, 124, .2)
}

.widget-casino-name {
    font-size: .85rem;
    font-weight: 700;
    color: #f5ead7;
    margin-bottom: 2px
}

.widget-casino-bonus {
    font-size: .75rem;
    color: #ffd17c;
    margin-bottom: 8px;
    line-height: 1.3
}

.widget-casino-btn {
    display: block;
    text-align: center;
    background: #957d4b;
    color: #fff;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 700;
    transition: background .2s
}

.widget-casino-btn:hover {
    background: #7a6438;
    color: #fff
}

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

.stats-row {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px
}

.stat-card {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(149, 125, 75, .35);
    border-radius: 10px;
    padding: 16px;
    text-align: center
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd17c
}

.stat-label {
    font-size: .78rem;
    color: #a09080;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 998
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #6b0008;
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1
}

.mobile-nav-links {
    padding: 14px 0;
    flex: 1
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #f5ead7;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .2s
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, .1);
    color: #ffd17c
}

.mobile-nav-links svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

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

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

@media (max-width: 1024px) {
    .jackpot-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .reviews-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .footer-inner {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto auto
    }

    .footer-inner > :first-child {
        grid-column: 1/-1
    }

    .stats-row {
        grid-template-columns:repeat(2, 1fr)
    }
}

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

    .lang-picker {
        display: none
    }

    .burger {
        display: flex
    }

    .mobile-nav {
        display: flex
    }

    .header-inner {
        padding: 8px 14px
    }

    .header-logo img {
        height: 42px
    }

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

    .jackpot-grid {
        grid-template-columns:1fr
    }

    .reviews-grid {
        grid-template-columns:1fr
    }

    .hero-content h1 {
        font-size: 1.9rem
    }

    .hero-section {
        min-height: 420px
    }

    .author-inner {
        flex-direction: column
    }

    .footer-inner {
        grid-template-columns:1fr
    }

    .casino-widget {
        display: none
    }

    .stats-row {
        grid-template-columns:repeat(2, 1fr)
    }

    h1 {
        font-size: 1.7rem
    }

    h2 {
        font-size: 1.4rem
    }

    .content-block {
        padding: 18px 16px
    }

    .demo-block {
        padding: 16px
    }

    .video-block {
        padding: 16px
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem
    }

    .stats-row {
        grid-template-columns:1fr 1fr
    }

    .hero-actions {
        flex-direction: column;
        width: 100%
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }
}

.xpq7a2 {
    display: none
}

.r8kf3m {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.d4n9s1 {
    font-size: 0
}

.wpb_animate_when_almost_visible {
    opacity: 1
}

.elementor-invisible {
    visibility: hidden
}
