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

:root {
    --bg: #121724;
    --bg-card: #191F2D;
    --bg-card2: #1a2236;
    --accent: #1AE5A1;
    --accent-dark: #13b87e;
    --btn-dark: #191F2D;
    --text: #e8eaf0;
    --text-muted: #8a93a8;
    --border: #2a3248;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--accent-dark);
}

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

ul, ol {
    padding-left: 1.4em;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    color: #fff;
}

/* ============================
   LAYOUT HELPERS
   ============================ */
.sol-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sol-section {
    padding: 60px 0;
}

.sol-section + .sol-section {
    border-top: 1px solid var(--border);
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-12 {
    gap: 12px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* ============================
   BUTTONS
   ============================ */
.sol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .2s, background .2s;
    white-space: nowrap;
}

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

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

.sol-btn-dark {
    background: var(--btn-dark);
    color: #fff;
    border: 1px solid var(--border);
}

.sol-btn-green {
    background: var(--accent);
    color: #0a1120;
}

.sol-btn-green:hover {
    background: var(--accent-dark);
    color: #0a1120;
}

.sol-btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.sol-btn-outline:hover {
    background: rgba(26, 229, 161, .12);
}

.sol-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
}

.sol-btn-sm {
    padding: 7px 14px;
    font-size: 12px;
}

/* ============================
   HEADER
   ============================ */
#sol-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

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

.hdr-logo a {
    display: block;
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hdr-nav a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.hdr-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.hdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

.hdr-online strong {
    color: var(--accent);
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger-btn span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

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

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

.mob-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    gap: 8px;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.mob-menu a:last-of-type {
    border-bottom: none;
}

#sol-hero {
    position: relative;
    background: url('/hero-cas-sol.jpg') center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#sol-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 23, 36, .92) 0%, rgba(18, 23, 36, .65) 100%);
}

.hero-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 340px;
}

.hero-text h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    color: var(--text-muted);
    margin: 14px 0 24px;
    font-size: 15px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 229, 161, .15);
    border: 1px solid rgba(26, 229, 161, .35);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.hero-promo {
    flex: 0 0 300px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.promo-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 12px;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 229, 161, .08);
    border: 1.5px dashed var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
}

.promo-code-val {
    flex: 1;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    font-family: 'Roboto', monospace;
}

.promo-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent);
    padding: 4px;
    opacity: .7;
    transition: opacity .2s;
}

.promo-copy-btn:hover {
    opacity: 1;
}

.promo-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(26, 229, 161, .1);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 16px;
}

.promo-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.promo-timer {
    font-size: 11px;
    color: #e8a03c;
    font-weight: 600;
    margin-bottom: 14px;
}

.promo-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================
   SECTION TITLES
   ============================ */
.sec-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sec-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.sec-head {
    margin-bottom: 32px;
}

/* ============================
   JACKPOTS
   ============================ */
#sol-jackpots {
    background: var(--bg-card);
}

.jackpots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.jackpot-card {
    flex: 1 1 180px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #0ea3ff);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26, 229, 161, .15);
}

.jackpot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent);
}

.jackpot-currency {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.jackpot-pulse {
    animation: jackpot-anim 2.5s ease-in-out infinite;
}

@keyframes jackpot-anim {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .7;
    }
}

/* ============================
   WINNERS
   ============================ */
.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.winners-table th {
    background: var(--bg-card2);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .7px;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.winners-table td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(42, 50, 72, .6);
    vertical-align: middle;
}

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

.winners-table tr:hover td {
    background: rgba(26, 229, 161, .04);
}

.winner-rank {
    font-weight: 700;
    color: var(--text-muted);
    width: 36px;
}

.winner-rank.top1 {
    color: #ffd700;
}

.winner-rank.top2 {
    color: #c0c0c0;
}

.winner-rank.top3 {
    color: #cd7f32;
}

.winner-nick {
    font-weight: 600;
    color: #fff;
}

.winner-game {
    color: var(--text-muted);
}

.winner-amount {
    font-weight: 700;
    color: var(--accent);
    text-align: right;
}

.winner-time {
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}

/* ============================
   VIDEO
   ============================ */
#sol-video {
    background: var(--bg-card);
}

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* ============================
   SLOT MINI-GAME
   ============================ */
#sol-slot {
}

.slot-machine {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
}

.slot-reel {
    width: 72px;
    height: 72px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform .1s;
}

.slot-reel.spinning {
    animation: reel-spin .12s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.1);
    }
    100% {
        transform: scaleY(1);
    }
}

.slot-result {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.slot-result-win {
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
}

.slot-result-lose {
    color: var(--text-muted);
    font-size: 14px;
}

.slot-spin-btn {
    min-width: 180px;
}

.slot-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================
   REVIEWS
   ============================ */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.review-card {
    flex: 1 1 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: box-shadow .2s;
}

.review-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
}

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

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

.review-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Review Form */
.review-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 520px;
}

.review-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s;
}

.form-control:focus {
    border-color: var(--accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(26, 229, 161, .12);
    border: 1px solid rgba(26, 229, 161, .3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.form-success.show {
    display: flex;
}

/* ============================
   CONTENT BLOCK (bare HTML)
   ============================ */
#sol-content {
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
    color: #fff;
    margin: 1.4em 0 .5em;
    line-height: 1.3;
}

.content-body h1 {
    font-size: 1.8rem;
}

.content-body h2 {
    font-size: 1.35rem;
}

.content-body h3 {
    font-size: 1.1rem;
}

.content-body p {
    margin: 0 0 1em;
    color: var(--text-muted);
}

.content-body ul,
.content-body ol {
    margin: .8em 0 1em 1.4em;
    color: var(--text-muted);
}

.content-body li {
    margin-bottom: .4em;
}

.content-body strong, .content-body b {
    color: var(--text);
}

.content-body a {
    color: var(--accent);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 13px;
}

.content-body table th {
    background: var(--bg-card2);
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--border);
}

.content-body table td {
    padding: 9px 14px;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

/* ============================
   FAQ
   ============================ */
#sol-faq {
    background: var(--bg-card);
}

.faq-list {
    max-width: 760px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--bg-card2);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    user-select: none;
    gap: 12px;
    transition: background .2s;
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(26, 229, 161, .12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform .25s;
}

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

.faq-answer {
    display: none;
    padding: 14px 18px;
    background: var(--bg);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

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

/* ============================
   FOOTER
   ============================ */
#sol-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-logo img {
    height: 36px;
}

.footer-logo {
    margin-bottom: 12px;
    display: block;
}

.footer-desc {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.65;
}

.footer-nav-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.footer-nav-list a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color .2s;
}

.footer-nav-list a:hover {
    color: var(--accent);
}

.footer-payments {
    margin-bottom: 20px;
}

.footer-payments-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.footer-provider {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 9px;
    font-size: 10px;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 10px;
    color: #4a5568;
    line-height: 1.55;
    max-width: 600px;
}

/* ============================
   STICKY WIDGET
   ============================ */
#sol-widget {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    animation: widget-rise .5s .8s ease both;
}

@keyframes widget-rise {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.widget-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(26, 229, 161, .3);
    border-radius: 40px;
    padding: 10px 16px 10px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5), 0 0 0 1px rgba(26, 229, 161, .1);
}

.widget-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.widget-text span {
    color: var(--accent);
}

.widget-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 2px 4px;
    margin-left: 4px;
    transition: color .2s;
}

.widget-close:hover {
    color: #fff;
}

/* ============================
   UNUSED (unikalization padding)
   ============================ */
.xk9p2a {
    display: none;
}

.b7r3mq {
    visibility: hidden;
}

.f2j8zn-wrap {
    position: absolute;
    left: -9999px;
}

.q4l1ts::after {
    content: '';
}

.wp-block-group {
}

.wp-block-cover {
}

.elementor-widget {
}

.elementor-section {
}

.wp-post-image {
}

.entry-content p {
}

.site-footer .widget {
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
    .hdr-nav {
        display: none;
    }

    .hdr-online {
        display: none;
    }

    .burger-btn {
        display: flex;
    }
}

@media (max-width: 640px) {
    .sol-section {
        padding: 40px 0;
    }

    .hero-inner {
        flex-direction: column;
        gap: 24px;
    }

    .hero-promo {
        width: 100%;
        flex: unset;
    }

    .jackpots-grid {
        gap: 10px;
    }

    .jackpot-card {
        flex: 1 1 130px;
    }

    .footer-top {
        flex-direction: column;
    }

    #sol-widget {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: none;
    }

    .widget-inner {
        border-radius: 14px;
    }
}

@media (max-width: 400px) {
    .jackpot-card {
        flex: 1 1 100%;
    }

    .slot-reels {
        gap: 6px;
    }

    .slot-reel {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.plidy {
    background: #161b2a;
    border: 1px solid #2a3248;
    border-radius: 16px;
    padding: 40px 48px;
    max-width: 1100px;
    margin: 40px auto;
    color: #e8eaf0;
    line-height: 1.75;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

.plidy h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.25;
}

.plidy p {
    margin-bottom: 16px;
    color: #8a93a8;
}

.plidy a {
    color: #1AE5A1;
}

.plidy a:hover {
    color: #13b87e;
}

@media (max-width: 768px) {
    .plidy {
        padding: 22px 18px;
        margin: 20px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

    .plidy h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .plidy {
        padding: 18px 14px;
        margin: 16px 8px;
        font-size: 14px;
    }

    .plidy h1 {
        font-size: 20px;
    }
}