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

html { scroll-behavior: smooth; }

:root{
    --bg1:#8c27b8;
    --bg2: #7629bf;
    --bg3: #8f63d1;
    --bg4: #6b1fb3;
    --bg5: #7339bc;

    --glass: rgba(255,255,255,0.12);
    --glass-2: rgba(0,0,0,0.45);
    --stroke: rgba(255,255,255,0.22);

    --text: #ffffff;
    --muted: rgba(255,255,255,0.78);

    --accent: #64cd9d;
    --accent-2:#C084FC;
    --emerald1:#059669;
    --emerald2:#10b981;
    --emerald3:#34d399;

    --sidebar-w: 280px;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(0,0,0,0.25);
}


.hero-background {
    background-position: center 30% !important;
}

@media (max-width: 768px) {
    .hero-background {
        background-position: center 10% !important;
    }
}

body{
    font-family: 'Inter', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 25%, var(--bg3) 50%, var(--bg4) 75%, var(--bg5) 100%);
    background-attachment: fixed;
}

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

.main-content{
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.top-navbar{
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: rgba(54, 19, 97, 0.1);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.left-section{ display:flex; align-items:center; }

.top-logo{
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.menu-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 4px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}
.menu-button::before{
    content:'';
    position:absolute;
    top:0; left:-100%;
    width:100%; height:100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition:left .5s ease;
}
.menu-button:hover::before{ left:100%; }
.menu-button:hover{
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.55);
    transform: scale(1.05);
}
.hamburger-line{
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.92);
    border-radius: 2px;
    transition: all .3s ease;
    box-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.mobile-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}
.mobile-overlay.active{
    opacity: 1;
    visibility: visible;
}
body.menu-open{ overflow: hidden; }

.sidebar{
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: var(--sidebar-w);
    z-index: 1000;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(52, 18, 89, 0.98), rgba(30, 22, 50, 0.95));
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(71,85,105,0.35);
    box-shadow: 4px 0 24px rgba(30,41,59,0.35);
    transition: transform .3s ease;
}

.sidebar-header{
    padding: 22px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.logo-link{ text-decoration: none; color: inherit; display: inline-block; }
.logo-section{ display:flex; align-items:center; gap: 10px; }
.logo{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.live-badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 6px 10px;
    border-radius: 9999px;
    color: #d83b3b;
    background: linear-gradient(135deg, #5dd82c, #38dc26);
    box-shadow: 0 0 12px rgba(239,68,68,0.35);
    animation: pulse 2s ease-in-out infinite;
}
.live-badge i{ font-size: 8px; }

@keyframes pulse{
    0%,100%{ opacity: 1; }
    50%{ opacity: .7; }
}

.nav-menu{
    list-style: none;
    padding: 16px 0;
    margin: 0;
}

.nav-menu li{ margin-bottom: 4px; }

.nav-item{
    display:flex;
    align-items:center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    transition: all .2s ease;
}

.nav-item:hover{
    background: rgba(168,85,247,0.12);
    color: #64cd9d;
    transform: translateX(4px);
}

.nav-item[aria-current="page"]{
    background: rgba(168,85,247,0.18);
    color: #64cd9d;
    border-right: 3px solid var(--accent);
}

.dropdown-toggle{ position: relative; }
.dropdown-icon{
    width:16px; height:16px;
    transition: transform .2s ease;
}

.nav-dropdown.active .dropdown-icon{ transform: rotate(180deg); }

.dropdown-menu{
    list-style: none;
    margin: 6px 14px;
    background: rgba(30,41,59,0.78);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
    max-height: 0;
    transition: all .3s ease;
}

.nav-dropdown.active .dropdown-menu{
    max-height: 360px;
    padding: 8px 0;
}

.dropdown-menu a{
    display:block;
    padding: 12px 16px;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}
.dropdown-menu a:hover{
    background: rgba(168,85,247,0.16);
    color: #fff;
    transform: translateX(6px);
}

.hero-section{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 120px;
}

.hero-background{
    position:absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    filter: saturate(1.05) contrast(1.05);
}

.hero-overlay{
    position:absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(219,172,255,0.78), rgba(178,85,255,0.65), rgba(185,98,250,0.52));
}

.hero-transition{
    position:absolute;
    bottom: 0; left: 0; right: 0;
    height: 260px;
    background: linear-gradient(to top, rgba(88,28,135,0.88), rgba(124,58,237,0.42), transparent);
}

.hero-content{
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 18px;
}

.hero-title{
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-subtitle{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-bottom: 26px;
}

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

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: all .25s ease;
    border: 2px solid rgba(255,255,255,0.25);
}
.hero-btn.primary{
    background: rgba(255,255,255,0.92);
    color: #1F2937;
}
.hero-btn.primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}
.hero-btn.ghost{
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.hero-btn.ghost:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
}

.scroll-indicator{
    position:absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: rgba(255,255,255,0.84);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.casino-section{
    padding: 72px 0;
    background: transparent;
}

.section-header{
    text-align: center;
    margin-bottom: 46px;
}

.section-title{
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.section-subtitle{
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.casino-cards{
    display:flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.casino-card-link{
    text-decoration: none;
    color: inherit;
    display:block;
    transition: transform .2s ease;
}
.casino-card-link:hover{ transform: scale(1.01); }

.casino-card{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 18px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);

    position: relative;
    overflow: hidden;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-card::before{
    content:'';
    position:absolute;
    top:0; left:-100%;
    width:100%; height:100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition:left .5s ease;
}
.casino-card:hover::before{ left:100%; }

.casino-card:hover{
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.casino-info{
    display:flex;
    align-items:center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.casino-logo{
    width: 150px;
    height: 80px;
    border-radius: 14px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.14);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink: 0;
}

.casino-logo-img{
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    display:block;
}

.casino-content{ min-width: 0; }
.casino-title{
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.55);
}

.casino-offers{
    display:flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.offer-item{ text-align:center; }
.offer-value{
    display:block;
    font-size: 20px;
    font-weight: 900;
    color: #3adf0c;
    text-shadow: 0 2px 4px rgba(7, 21, 5, 0.56);
}
.offer-label{
    display:block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

.casino-features{
    display:flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.feature{
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.90);
    text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}

.casino-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 0 8px;
}

.cta-button{
    background: linear-gradient(135deg, var(--emerald1), var(--emerald2), var(--emerald3));
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.35);
    box-shadow: 0 10px 26px rgba(16,185,129,0.35);
    transition: all .25s ease;
    white-space: nowrap;
}
.casino-card:hover .cta-button{
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 36px rgba(16,185,129,0.48);
    border-color: rgba(255,255,255,0.55);
}

.quick-links-section{
    padding: 32px 0;
}

.quick-links-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;

}

.quick-link-card{
    height: 150px;
    border-radius: 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration:none;
    position: relative;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    transition: all .3s ease;
}
.quick-link-card:hover{
    transform: translateY(-6px) scale(1.02);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.quick-link-card h3{ font-size: 18px; }

.bonuses-card{ background: linear-gradient(135deg, #DC2626, #991B1B); }
.casinos-card{ background: linear-gradient(135deg, #F59E0B, #D97706); }
.about-card{ background: linear-gradient(135deg, #3B82F6, #1D4ED8); }

.main-content-section{
    padding: 60px 0;
}

.content-card{
    max-width: 960px;
    margin: 30px auto;
    padding: 40px;
    border-radius: 16px;
    background: rgba(0,0,0,0.58);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
}

.content-title{
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.35;
}

.content-card p{
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.86);
}
.first-paragraph{ color:#fff; font-size: 17px; }

.content-card a{
    color: var(--accent-2);
    text-decoration: underline;
}

.feature-highlight{
    background: rgba(255,255,255,0.06);
    border-left: 4px solid var(--accent);
    padding: 14px 18px;
    margin-top: 18px;
    border-radius: 12px;
}

.faq-section{
    padding: 30px 0;
}

.faq-title{
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 26px;
    text-align: left;
}

.faq-section .container{
    max-width: 1080px;
    margin: 0 auto;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
}

.faq-item{
    background: rgba(15,15,40,0.85);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

.faq-question{
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}

.faq-question::after{
    content: "+";
    position: absolute;
    right: 22px;
    font-size: 18px;
    transition: transform .3s ease;
}

.faq-item.active .faq-question::after{ transform: rotate(45deg); }

.faq-answer{
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: rgba(255,255,255,0.85);
    transition: max-height .3s ease, padding .3s ease;
}
.faq-item.active .faq-answer{
    max-height: 420px;
    padding: 12px 22px 18px;
}
.faq-answer p{ line-height: 1.65; }

.footer{
    margin-top: 64px;
    padding: 64px 0 28px;
    background: linear-gradient(135deg, rgba(41, 20, 60, 0.98), rgba(44, 25, 81, 0.98));
    border-top: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
}

.footer-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    margin-bottom: 34px;
}

.footer-column h3{
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #FBBF24;
}

.footer-column ul{ list-style: none; }
.footer-column ul li{ margin-bottom: 10px; }

.footer-column ul li a{
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color .2s ease;
}
.footer-column ul li a:hover{ color: #64cd9d; }


.footer-column ul li span{
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    margin-left: 8px;
    font-weight: 800;
}

.footer-bottom{
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-bottom-left{
    display:flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 800;
}
.footer-bottom-left span{
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    font-weight: 700;
}
.responsible{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    font-weight: 800;
}
.responsible i{ color: #FBBF24; }

@media (max-width: 1024px){
    .main-content{ margin-left: 0; }
    .sidebar{ transform: translateX(-100%); }
    .sidebar.active{ transform: translateX(0); }
    .top-navbar{ display:flex; }
}

@media (max-width: 768px){
    .hero-section{ padding-bottom: 90px; }
    .scroll-indicator{ bottom: 52px; }
    .quick-links-grid{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; gap: 26px; text-align:center; }
    .footer-bottom{ flex-direction: column; text-align:center; }
    .faq-title{ text-align: center; }
    .faq-section .container{ padding-left: 16px; padding-right: 16px; }
    .content-card{ padding: 26px; }

    .casino-card{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 12px;
        gap: 16px;
    }
    .casino-info{
        flex-direction: column;
        width: 100%;
    }
    .casino-logo{
        width: 100%;
        max-width: 260px;
    }
    .casino-cta{ width: 100%; }
    .cta-button{
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}

.footer-column ul li a:hover{ color: #64cd9d !important; }

.footer-bottom-new{
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
}

.footer-help{
    display:flex;
    align-items:center;
    gap: 14px;
    justify-content: flex-start;
}
.help-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 130px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: all .2s ease;
}
.help-link:hover{
    transform: translateY(-2px);
    border-color: rgba(100,205,157,0.55);
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}
.help-link img{
    max-height: 45px;
    max-width: 150px;
    object-fit: contain;
    display:block;
    filter: brightness(1.05);
}

.footer-center-brand{
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    text-align: center;
}

.footer-right-copy{
    display:flex;
    align-items:center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}
.footer-right-copy .dot{ opacity: 0.55; }
.footer-right-copy .age{
    color: #FBBF24;
    font-weight: 900;
}

@media (max-width: 768px){
    .footer-bottom-new{
        grid-template-columns: 1fr !important;
        text-align:center;
        gap: 14px;
    }
    .footer-help{ justify-content: center; flex-wrap: wrap; }
    .footer-right-copy{
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        line-height: 1.4;
    }
}

body.menu-open .menu-button .hamburger-line:nth-child(1){
    transform: rotate(45deg) translate(5px, 5px);
}
body.menu-open .menu-button .hamburger-line:nth-child(2){
    opacity: 0;
}
body.menu-open .menu-button .hamburger-line:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
}

html, body {
    overflow-x: hidden;
}

.sidebar,
.nav-menu,
.nav-dropdown,
.dropdown-menu {
    overflow-x: hidden;
}

.dropdown-menu a:hover {
    transform: none !important;
}

.dropdown-menu {
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh !important;
        padding-bottom: 40px !important;
        align-items: flex-end !important;
    }

    .scroll-indicator {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .casino-section {
        padding-top: 28px !important;
        padding-bottom: 54px !important;
    }

    .casino-section .section-header {
        margin-bottom: 26px !important;
    }
}

#offers.casino-section{
    padding-top: 56px;
    padding-bottom: 72px;
}

#offers .section-header{
    margin-bottom: 28px;
}

#offers .section-title{
    letter-spacing: .08em;
}

#offers .section-subtitle{
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    opacity: .9;
}

#offers .casino-cards{
    gap: 18px;
}

#offers .casino-card{
    padding: 18px 18px;
    border-radius: 22px;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

#offers .casino-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

#offers .casino-info{
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

#offers .casino-logo{
    width: 170px;
    height: 86px;
    border-radius: 16px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.12);
}

#offers .casino-logo-img{
    max-width: 135px;
    max-height: 64px;
}

#offers .casino-title{
    font-size: 16px;
    letter-spacing: .06em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#offers .casino-offers{
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 180px));
    gap: 12px;
    margin-bottom: 10px;
}

#offers .offer-item{
    text-align: left;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.12);
}

#offers .offer-value{
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: none;
    line-height: 1.1;
}

#offers .offer-label{
    margin-top: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    color: rgba(255,255,255,0.72);
    text-shadow: none;
}

#offers .casino-features{
    gap: 10px 14px;
    margin-top: 4px;
}

#offers .feature{
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-shadow: none;
    white-space: nowrap;
}

#offers .cta-button{
    padding: 14px 22px;
    font-size: 12px;
    letter-spacing: .10em;
    border-radius: 999px;

    background: linear-gradient(135deg, rgba(100,205,157,0.95), rgba(16,185,129,0.95));
    color: #0b1f17;

    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 12px 26px rgba(16,185,129,0.28);
}

#offers .casino-card:hover .cta-button{
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(16,185,129,0.38);
}

@media (max-width: 768px){
    #offers.casino-section{
        padding-top: 22px;
        padding-bottom: 54px;
    }

    #offers .casino-card{
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        gap: 14px;
    }

    #offers .casino-info{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    #offers .casino-logo{
        width: 100%;
        max-width: 280px;
        height: 86px;
    }

    #offers .casino-offers{
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 520px;
    }

    #offers .offer-item{
        text-align: center;
    }

    #offers .casino-cta{
        width: 100%;
    }

    #offers .cta-button{
        width: 100%;
        text-align: center;
        padding: 16px 18px;
    }

    #offers .feature{
        white-space: normal;
    }
}

#offers .offer-item{
    text-align: center !important;
}

#offers .offer-value{
    color: #24fb56 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25) !important;
}

#offers .offer-label{
    color: rgba(255,255,255,0.72) !important;
}

#offers .offer-value b{
    color: #ffffff !important;
}

#offers .cta-button{
    background: #24fb56 !important;
    color: #000000 !important;
    border: 1px solid rgba(255,255,255,0.28) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,0.18) !important;
}

#offers .casino-card:hover .cta-button{
    background: rgba(255,255,255,0.20) !important;
    border-color: rgba(255,255,255,0.40) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22) !important;
}

#offers .casino-card:hover{
    border-color: rgba(100,205,157,0.35) !important;
}

@media (max-width: 768px){
    #offers .casino-features{
        justify-content: center !important;
    }

    #offers .feature{
        text-align: center !important;
    }
}

:root{
    --accent-ink: #0b1410;
}

body.theme-gold{
    --accent: #FBBF24;
    --accent-hover: #F59E0B;
    --accent-glow: rgba(251,191,36,0.45);
}

body.theme-green{
    --accent: #24fb56;
    --accent-hover: #16e84a;
    --accent-glow: rgba(36,251,86,0.40);
}

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

.nav-item:hover{
    color: var(--accent) !important;
}
.nav-item[aria-current="page"]{
    border-right-color: var(--accent) !important;
    color: var(--accent) !important;
}

.footer-column ul li a:hover{
    color: var(--accent) !important;
}

#offers .offer-value{
    color: var(--accent) !important;
    text-shadow: 0 8px 24px var(--accent-glow) !important;
}

#offers .cta-button{
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
    color: var(--accent-ink) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    box-shadow: 0 14px 34px var(--accent-glow) !important;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

#offers .casino-card:hover .cta-button{
    transform: translateY(-2px) scale(1.03) !important;
    filter: brightness(1.05) saturate(1.05) !important;
    box-shadow: 0 18px 46px var(--accent-glow) !important;
}

#offers .casino-card:hover{
    border-color: color-mix(in srgb, var(--accent) 55%, rgba(255,255,255,0.28)) !important;
}

.hero-btn.primary{
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
    color: var(--accent-ink) !important;
    border-color: rgba(255,255,255,0.18) !important;
    box-shadow: 0 14px 34px var(--accent-glow) !important;
}
.hero-btn.primary:hover{
    transform: translateY(-2px) !important;
    filter: brightness(1.05) saturate(1.05) !important;
    box-shadow: 0 18px 46px var(--accent-glow) !important;
}

@media (max-width: 768px){
    #offers .casino-features{
        justify-content: center !important;
        width: 100%;
    }
    #offers .feature{
        text-align: center !important;
    }
}
#offers .cta-button{
    background: linear-gradient(135deg, #24fb56 0%, #0fd84a 100%) !important;
    background-size: 220% 220% !important;
    background-position: 0% 50% !important;
    color: #041b0b !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    box-shadow: 0 14px 30px rgba(36,251,86,0.35) !important;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background-position .35s ease !important;
}

#offers .casino-card:hover .cta-button,
#offers .casino-card-link:hover .cta-button,
#offers .cta-button:hover{
    background: linear-gradient(135deg, #2cff62 0%, #12b945 100%) !important;
    background-position: 100% 50% !important;
    filter: brightness(1.04) saturate(1.15) !important;
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 20px 52px rgba(36,251,86,0.60) !important;
}
.quick-links-photos{
    gap: 22px;
}

.photo-card{
    height: 180px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
    transform: translateZ(0);
}

.photo-card__overlay{
    position:absolute;
    inset: 0;
    z-index: 0;
    background:
            radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.18), transparent 55%),
            linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.55) 100%);
}

.photo-card__overlay::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-40px;
    height: 120px;
    background: radial-gradient(70% 80% at 50% 0%, rgba(36,251,86,0.22), transparent 65%);
    filter: blur(6px);
}

.photo-card__shine{
    position:absolute;
    inset:-40%;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: rotate(18deg) translateX(-80%);
    transition: transform .55s ease;
    pointer-events:none;
}

.photo-card h3{
    position: relative;
    z-index: 2;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    text-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.photo-card__sub{
    position: relative;
    z-index: 2;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    text-align: center;
    display: block;
    text-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.photo-card:hover{
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(36,251,86,0.30);
    box-shadow: 0 26px 60px rgba(0,0,0,0.28);
}
.photo-card:hover .photo-card__shine{
    transform: rotate(18deg) translateX(80%);
}

@media (max-width: 768px){
    .photo-card{
        height: 150px;
    }
    .photo-card h3{
        font-size: 16px;
    }
}

.quick-links-photos{ gap: 22px; }

.photo-card{
    height: 180px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
    transform: translateZ(0);
}

.photo-card__overlay{
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.50) 100%);
    transition: opacity .25s ease;
    opacity: .75;
}

.photo-card__content{
    position:absolute;
    inset: 0;
    z-index: 1;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding: 18px;
}

.photo-card h3{
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

.photo-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform .35s ease;
}

.photo-card:hover::before{
    transform: scale(1.10);
}

.photo-card:hover .photo-card__overlay{
    opacity: .62;
}

.photo-card:hover{
    border-color: rgba(36,251,86,0.35);
    box-shadow:
            0 26px 60px rgba(0,0,0,0.28),
            0 0 0 3px rgba(36,251,86,0.16);
    transform: translateY(-6px);
}

@media (max-width: 768px){
    .photo-card{ height: 150px; }
    .photo-card h3{ font-size: 16px; }
}
@media (max-width: 768px){
    .quick-links-photos{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .photo-card{
        height: 210px !important;
        border-radius: 22px;
    }

    .photo-card h3{
        font-size: 18px;
        letter-spacing: 0.12em;
        margin-bottom: 6px;
    }

    .photo-card__sub{
        font-size: 14px;
        opacity: .92;
    }
}

.news-section{ padding: 70px 0; }

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

.news-card{
    position: relative;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    color: #fff;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
    transform: translateZ(0);
}

.news-card__overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.78) 100%);
    transition: opacity .25s ease, transform .35s ease;
    opacity: 1;
}

.news-card__content{
    position:absolute; inset:0;
    z-index: 2;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px;
}

.news-card__tag{
    align-self: flex-start;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .12em;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(36,251,86,0.18);
    border: 1px solid rgba(36,251,86,0.45);
    color: #eafff0;
}

.news-card h3{
    margin:0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .02em;
    text-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.news-card p{
    margin:0;
    color: rgba(255,255,255,0.90);
    line-height: 1.45;
    font-weight: 650;
    text-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.news-card:hover{
    border-color: rgba(36,251,86,0.55);
    box-shadow: 0 26px 60px rgba(0,0,0,0.28);
    transform: translateY(-6px);
}
.news-card:hover .news-card__overlay{
    opacity: .92;
    transform: scale(1.02);
}

@media (max-width: 1024px){
    .news-grid{ grid-template-columns: 1fr; }
    .news-card{ height: 230px; }
}
@media (max-width: 768px){
    .news-section{ padding: 52px 0; }
    .news-card{ height: 220px; }
}

.article-wrap{
    max-width: 960px;
    margin: 40px auto 0;
    padding: 34px;
    border-radius: 18px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
}

.article-title{
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
}

.article-meta{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
}

.article-lead{
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 18px;
}

.article-figure{
    margin: 18px 0 22px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
}
.article-figure img{ width:100%; display:block; }
.article-figure figcaption{
    padding: 10px 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    background: rgba(0,0,0,0.35);
}

.article-toc{
    margin: 18px 0 26px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.toc-title{
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}
.article-toc ol{ padding-left: 18px; }
.article-toc a{
    color: rgba(255,255,255,0.86);
    font-weight: 750;
    text-decoration: none;
}
.article-toc a:hover{ color: #24fb56; }

.article-wrap h2{
    font-size: 20px;
    font-weight: 900;
    margin: 22px 0 10px;
}
.article-wrap h3{
    font-size: 16px;
    font-weight: 900;
    margin: 16px 0 10px;
    color: rgba(255,255,255,0.95);
}
.article-wrap p{
    color: rgba(255,255,255,0.86);
    line-height: 1.75;
    margin-bottom: 14px;
}

.article-wrap ul, .article-wrap ol{
    margin: 10px 0 16px 18px;
    color: rgba(255,255,255,0.86);
    line-height: 1.7;
}
.article-wrap li{ margin-bottom: 6px; }

.article-table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 22px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
}
.article-table th, .article-table td{
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.article-table th{
    text-align:left;
    background: rgba(36,251,86,0.10);
    color: #eafff0;
    font-weight: 900;
}
.article-table td{ color: rgba(255,255,255,0.86); }

.article-note{
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(36,251,86,0.08);
    border: 1px solid rgba(36,251,86,0.20);
}

.news-section { padding: 64px 0; }
.news-head { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:22px; }
.news-title { margin:0; font-weight:900; letter-spacing:.04em; text-transform:uppercase; font-size:clamp(26px,2.6vw,40px); }

.news-all{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 14px; border-radius:999px; text-decoration:none;
    font-weight:800; color:#0c0f14;
    background: linear-gradient(135deg, #24fb56 0%, #8bff3a 100%);
    box-shadow: 0 10px 26px rgba(36,251,86,.22);
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.news-all:hover{
    transform: translateY(-1px);
    filter: brightness(1.02) saturate(1.06);
    box-shadow: 0 14px 34px rgba(36,251,86,.28);
}

.news-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }

.news-card{
    overflow:hidden; border-radius:22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.news-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(0,0,0,.32);
    border-color: rgba(36,251,86,.26);
}

.news-thumb{ position:relative; display:block; text-decoration:none; overflow:hidden; }
.news-thumb img{
    width:100%; display:block;
    aspect-ratio: 16/9; object-fit: cover;
    transform: scale(1.01);
    transition: transform .22s ease, filter .22s ease;
}
.news-thumb-overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.48) 100%);
    pointer-events:none;
}
.news-card:hover .news-thumb img{
    transform: scale(1.06);
    filter: contrast(1.04) saturate(1.06);
}

.news-body{ padding:16px 16px 18px; }
.news-meta{ font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; opacity:.85; margin-bottom:8px; }
.news-card-title{ margin:0 0 10px; font-size:18px; line-height:1.25; font-weight:900; }
.news-excerpt{ margin:0 0 14px; opacity:.9; line-height:1.45; }

.news-btn{
    display:inline-flex; align-items:center; justify-content:center;
    width:100%; padding:12px 14px; border-radius:14px;
    text-decoration:none; font-weight:900; letter-spacing:.03em;
    color:#0c0f14;
    background: linear-gradient(135deg, #24fb56 0%, #8bff3a 100%);
    box-shadow: 0 14px 34px rgba(36,251,86,.22);
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.news-btn:hover{
    transform: translateY(-1px);
    filter: brightness(1.02) saturate(1.06);
    box-shadow: 0 18px 44px rgba(36,251,86,.28);
}

@media (max-width: 1024px){ .news-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px){
    .news-head{ flex-direction:column; align-items:flex-start; }
    .news-grid{ grid-template-columns:1fr; }
    .news-section{ padding:46px 0; }
}

.article-wrap{
    max-width: 960px;
    margin: 0 auto;
    background: rgba(0,0,0,0.58);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    text-align: left;
}

.article-title{
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 10px;
}

.article-meta{
    color: rgba(255,255,255,0.72);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.article-meta .dot{ opacity: .6; }

.article-lead{
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.90);
    margin-bottom: 22px;
}

.article-figure{ margin: 18px 0 10px; }
.article-figure img{
    width: 100%;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
}
.article-figure figcaption{
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

.article-toc{
    margin: 24px 0;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}
.toc-title{
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.article-toc a{ color:#fff; text-decoration:none; opacity:.9; }
.article-toc a:hover{ color: var(--accent); }

.article-wrap h2{
    margin: 26px 0 12px;
    font-size: 22px;
    font-weight: 900;
}
.article-wrap h3{
    margin: 18px 0 10px;
    font-size: 16px;
    font-weight: 900;
}
.article-wrap p{
    margin: 0 0 14px;
    color: rgba(255,255,255,0.86);
    line-height: 1.75;
}
.article-wrap ul, .article-wrap ol{
    padding-left: 22px;
    margin: 10px 0 16px;
    color: rgba(255,255,255,0.86);
}
.article-wrap li{ margin: 8px 0; }

.table-scroll{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}
.article-table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
}
.article-table th, .article-table td{
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    vertical-align: top;
}
.article-table thead th{
    background: rgba(255,255,255,0.08);
    font-weight: 900;
}
.article-table tbody tr:hover{ background: rgba(36,251,86,0.06); }
.article-table a{ color:#24fb56; font-weight:900; text-decoration:none; }
.article-table a:hover{ text-decoration:underline; }

.article-note{
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(36,251,86,0.08);
    border: 1px solid rgba(36,251,86,0.22);
}

@media (max-width: 768px){
    .article-wrap{ padding: 22px 18px; }
    .article-title{ font-size: 24px; }
}

.article {
    overflow: hidden;
}

.article-head .article-meta {
    margin-top: 8px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.article-cover {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 14px;
    display: block;
}

.article-toc {
    margin-top: 18px;
    padding: 16px 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.article-toc h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.article-toc ol {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.article-toc a {
    text-decoration: none;
    opacity: 0.95;
}

.article-toc a:hover {
    opacity: 1;
    text-decoration: underline;
}

.article h2 {
    margin-top: 22px;
}

.article h3 {
    margin-top: 16px;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.article-table th,
.article-table td {
    padding: 12px 12px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.article-table th {
    text-align: left;
    font-weight: 700;
    background: rgba(255,255,255,0.04);
}

.article-note {
    margin-top: 12px;
    opacity: 0.85;
    font-size: 0.95rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.post-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 251, 86, 0.35);
    background: rgba(255,255,255,0.06);
}

.post-card__thumb {
    display: block;
    height: 190px;
    overflow: hidden;
}

.post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .25s ease;
    display: block;
}

.post-card:hover .post-card__thumb img {
    transform: scale(1.06);
}

.post-card__body {
    padding: 16px 16px 18px;
}

.post-card__title {
    margin: 0 0 10px;
    line-height: 1.2;
    font-size: 1.05rem;
}

.post-card__title a {
    text-decoration: none;
}

.post-card__excerpt {
    margin: 0 0 14px;
    opacity: 0.9;
}

.post-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    background: #24fb56;
    color: #0b0b0b;
    transition: transform .2s ease, filter .2s ease;
}

.post-card__cta:hover {
    transform: translateY(-1px);
    filter: brightness(0.92);
}

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .article-cover { height: 220px; }
    .post-card__thumb { height: 200px; }
    .article-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

.article-post{
    max-width: 960px;
    margin: 30px auto;
}

.article-post p{
    margin: 0 0 14px;
}

.article-post h1{
    line-height: 1.1;
    margin-bottom: 14px;
}

.article-post h2{
    margin: 26px 0 12px;
    line-height: 1.2;
}

.article-post h3{
    margin: 18px 0 10px;
    line-height: 1.25;
}

.article-figure{
    margin: 18px 0 8px;
}
.article-figure img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 28px rgba(0,0,0,0.30);
}

.article-post a{
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color .2s ease, opacity .2s ease;
}
.article-post a:hover{
    color: #7af0c3;
    opacity: 0.95;
}

.article-post ul,
.article-post ol{
    margin: 10px 0 14px;
    padding-left: 22px;
}

.article-post li{
    margin: 8px 0;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
}

.article-post ul li::marker,
.article-post ol li::marker{
    color: var(--accent);
    font-weight: 900;
}

.article-toc{
    margin: 18px 0 22px;
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.40);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.article-toc h2{
    margin: 0 0 12px !important;
    font-size: 18px;
    letter-spacing: .02em;
}

.article-toc ol{
    margin: 0;
    padding-left: 20px;
}

.article-toc li{
    margin: 8px 0;
}

.article-toc a{
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    border-bottom: 1px dashed rgba(100,205,157,0.55);
    padding-bottom: 2px;
}
.article-toc a:hover{
    color: var(--accent);
    border-bottom-color: rgba(100,205,157,1);
}

.article-links{
    list-style: none;
    padding-left: 0 !important;
    margin: 12px 0 14px;
    display: grid;
    gap: 10px;
}

.article-links li{
    margin: 0;
}

.article-links a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    color: rgba(255,255,255,0.90);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.article-links a:hover{
    transform: translateY(-2px);
    background: rgba(100,205,157,0.14);
    border-color: rgba(100,205,157,0.55);
    color: #fff;
}

.article-links .badge{
    margin-left: auto;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(100,205,157,0.18);
    border: 1px solid rgba(100,205,157,0.38);
    color: rgba(255,255,255,0.92);
}

.article-table{
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.35);
}

.article-table th,
.article-table td{
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    vertical-align: top;
}

.article-table th{
    text-align: left;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.06);
}

.article-table td{
    color: rgba(255,255,255,0.86);
    font-weight: 600;
}

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

@media (max-width: 720px){
    .article-table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
.post-card__link{ display:block; color:inherit; text-decoration:none; }
.post-card__cta{
    display:inline-flex;
    margin-top: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--accent);
}
.post-card__link:hover .post-card__cta{
    color: #7af0c3;
}

.article-related{
    margin: 26px 0 6px;
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.40);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
    position: relative;
    overflow: hidden;
}

.article-related::before{
    content:"";
    position:absolute;
    inset:-2px;
    background: radial-gradient(600px 240px at 20% 0%, rgba(100,205,157,0.20), transparent 55%),
    radial-gradient(520px 220px at 90% 30%, rgba(192,132,252,0.14), transparent 55%);
    pointer-events:none;
}

.article-related h2{
    position: relative;
    margin: 0 0 12px !important;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .02em;
    color: rgba(255,255,255,0.95);
}

.article-related .article-links{
    position: relative;
    list-style: none;
    padding: 0 !important;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.article-related .article-links a{
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 14px 14px;
    border-radius: 14px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);

    text-decoration: none;
    color: rgba(255,255,255,0.92);

    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
    min-height: 86px;
}

.article-related .article-links a:hover{
    transform: translateY(-3px);
    background: rgba(100,205,157,0.14);
    border-color: rgba(100,205,157,0.55);
    box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.article-related .article-links a{
    font-weight: 800;
    line-height: 1.35;
}

.article-related .article-links .badge{
    align-self: flex-start;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;

    padding: 5px 10px;
    border-radius: 999px;

    background: rgba(100,205,157,0.18);
    border: 1px solid rgba(100,205,157,0.38);
    color: rgba(255,255,255,0.92);

    transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.article-related .article-links a:hover .badge{
    background: rgba(100,205,157,0.26);
    border-color: rgba(100,205,157,0.70);
    transform: translateY(-1px);
}

.article-related .article-links a[href*="#offers"]{
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
}
.article-related .article-links a[href*="#offers"]:hover{
    background: rgba(100,205,157,0.16);
    border-color: rgba(100,205,157,0.70);
}

@media (max-width: 980px){
    .article-related .article-links{
        grid-template-columns: 1fr;
    }
    .article-related .article-links a{
        min-height: unset;
    }
}

.article-related{
    max-width: 960px;
    margin: 34px auto 10px;
    padding: 22px 22px;

    border-radius: 18px;
    background: rgba(0,0,0,0.46);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);

    position: relative;
    overflow: hidden;
}

.article-related::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:
            radial-gradient(700px 260px at 18% 0%, rgba(100,205,157,0.22), transparent 58%),
            radial-gradient(620px 260px at 92% 36%, rgba(192,132,252,0.14), transparent 58%);
    pointer-events:none;
}

.article-related h2{
    position: relative;
    margin: 0 0 16px !important;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .01em;
    color: rgba(255,255,255,0.95);
}

.article-related .article-links{
    position: relative;
    list-style: none;
    padding: 0 !important;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.article-related .article-links a{
    position: relative;
    display: block;
    padding: 16px 16px 14px;

    border-radius: 16px;
    text-decoration: none;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);

    color: rgba(255,255,255,0.92);
    font-weight: 900;
    line-height: 1.25;

    min-height: 96px;

    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, filter .22s ease;
    overflow: hidden;
}

.article-related .article-links a::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    transform: translateX(-120%);
    transition: transform .55s ease;
    pointer-events:none;
}

.article-related .article-links a::after{
    content:"→";
    position:absolute;
    right: 14px;
    top: 14px;

    font-size: 18px;
    font-weight: 900;
    color: rgba(255,255,255,0.55);
    transition: transform .22s ease, color .22s ease;
}

.article-related .article-links a:hover{
    transform: translateY(-4px);
    background: rgba(100,205,157,0.12);
    border-color: rgba(100,205,157,0.55);
    box-shadow: 0 18px 36px rgba(0,0,0,0.28);
    filter: saturate(1.05);
}
.article-related .article-links a:hover::before{
    transform: translateX(120%);
}
.article-related .article-links a:hover::after{
    transform: translateX(3px);
    color: rgba(100,205,157,0.95);
}

.article-related .article-links a:focus-visible{
    outline: none;
    box-shadow: 0 0 0 3px rgba(100,205,157,0.35), 0 18px 36px rgba(0,0,0,0.28);
    border-color: rgba(100,205,157,0.75);
}

.article-related .article-links .badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: 12px;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;

    padding: 6px 10px;
    border-radius: 999px;

    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.78);

    transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.article-related .article-links a:hover .badge{
    background: rgba(100,205,157,0.18);
    border-color: rgba(100,205,157,0.55);
    color: rgba(255,255,255,0.92);
}

.article-related .article-links a[href*="#offers"]{
    border-color: rgba(255,255,255,0.18);
}
.article-related .article-links a[href*="#offers"]:hover{
    border-color: rgba(100,205,157,0.75);
}

@media (max-width: 980px){
    .article-related{
        padding: 18px 16px;
    }
    .article-related .article-links{
        grid-template-columns: 1fr;
    }
    .article-related .article-links a{
        min-height: unset;
    }
}

@media (max-width: 520px){
    .article-related h2{
        font-size: 18px;
    }
    .article-related .article-links a{
        padding: 15px 14px 13px;
    }
}
.article-related .article-links{
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.article-related .article-links li{
    height: 100%;
}

.article-related .article-links a{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.article-related .article-link__title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

    line-height: 1.25;
    font-size: 16px;
    font-weight: 900;

    padding-right: 26px;
    min-height: calc(1.25em * 3);
}

.article-related .badge{
    margin-top: auto;
    align-self: flex-start;
}

.article-related .article-links a::after{
    top: 14px;
    right: 14px;
}

.article ul,
.article ol,
.article-post ul,
.article-post ol {
    margin: 14px 0;
    padding-left: 22px;
    line-height: 1.65;
}

.article ul,
.article-post ul {
    list-style: disc !important;
}

.article ol,
.article-post ol {
    list-style: decimal !important;
}

.article li,
.article-post li {
    margin: 8px 0;
}

.article li::marker,
.article-post li::marker {
    color: var(--accent, #24fb56);
    font-weight: 800;
}

.article ul li strong,
.article-post ul li strong {
    font-weight: 800;
}

.article-toc ol {
    padding-left: 22px;
}

.article-toc a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.25);
}

.article-toc a:hover {
    border-bottom-color: var(--accent, #24fb56);
    color: #fff;
}

#relacionadas.article-related{
    width: min(1100px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 26px 22px;
    border-radius: 22px;
    background: rgba(14, 10, 24, .45);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

#relacionadas .article-links{
    list-style: none;
    margin: 18px auto 0;
    padding: 0;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

#relacionadas .article-links > li{
    margin: 0;
    flex: 0 1 440px;
    min-width: 280px;
}

#relacionadas .article-links a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    text-decoration: none;
    min-height: 84px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

#relacionadas .article-links a:hover{
    transform: translateY(-2px);
    background: rgba(36,251,86,.10);
    border-color: rgba(36,251,86,.35);
    box-shadow: 0 16px 34px rgba(0,0,0,.35);
}

#relacionadas .article-link__title{
    font-weight: 700;
    line-height: 1.25;
    max-width: 32ch;
}

#relacionadas .badge{
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.12);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .02em;
}

@media (max-width: 640px){
    #relacionadas.article-related{
        width: calc(100% - 24px);
        padding: 18px 14px;
    }
    #relacionadas .article-links > li{
        flex-basis: 100%;
    }
    #relacionadas .article-link__title{
        max-width: 100%;
    }
}

:root{
    --container-max: 1120px;
    --gutter: clamp(16px, 3vw, 28px);
    --section-y: clamp(44px, 6vw, 88px);
}

.container{
    width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.page-home .home-section{
    padding-block: var(--section-y);
}

.page-home .section-header{
    text-align: center;
    margin-bottom: clamp(18px, 3.2vw, 34px);
}

.page-home .section-title{
    margin: 0;
    line-height: 1.05;
}

.page-home .section-subtitle{
    margin: 12px auto 0;
    max-width: 70ch;
    opacity: .9;
}

.page-home .casino-section,
.page-home .quick-links-section,
.page-home .news,
.page-home .main-content-section,
.page-home .faq-section{
    margin: 0;
}

.page-home .content-card{
    width: 100%;
    max-width: 100%;
}

body.page-home section.news .section-header{
    text-align: center;
    max-width: 920px;
    margin: 0 auto 28px;
}

body.page-home section.news .section-title{
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

body.page-home section.news .section-subtitle{
    max-width: 720px;
    margin: 12px auto 0;
    opacity: 0.88;
}

body.page-home section.news .news-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1024px){
    body.page-home section.news .news-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px){
    body.page-home section.news .news-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

body.page-home section.news .post-card{
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(20, 12, 36, 0.30);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.20);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.page-home section.news .post-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 26px 70px rgba(0,0,0,0.26);
}

body.page-home section.news .post-card__link{
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

body.page-home section.news .post-card__link:focus-visible{
    outline: 2px solid rgba(255,255,255,0.70);
    outline-offset: 3px;
    border-radius: 24px;
}

body.page-home section.news .post-card__thumb{
    aspect-ratio: 16 / 9;
    background: rgba(0,0,0,0.18);
    overflow: hidden;
}

body.page-home section.news .post-card__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 220ms ease, filter 220ms ease;
}

body.page-home section.news .post-card:hover .post-card__thumb img{
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.03);
}

body.page-home section.news .post-card__body{
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

body.page-home section.news .post-card__title{
    margin: 0;
    font-weight: 800;
    line-height: 1.18;
    font-size: clamp(18px, 1.1vw + 14px, 22px);
}

body.page-home section.news .post-card__excerpt{
    margin: 0;
    opacity: 0.86;
    line-height: 1.45;
    font-size: 15.5px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

    min-height: calc(1.45em * 3);
}

body.page-home section.news .post-card__cta{
    margin-top: auto;
    align-self: flex-start;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;
    border-radius: 999px;

    background: var(--accent, #24fb56) !important;
    color: #0b0b10 !important;

    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 13px !important;
    line-height: 1 !important;

    box-shadow: 0 14px 30px rgba(36,251,86,0.22);
}

body.page-home section.news .post-card:hover .post-card__cta{
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(36,251,86,0.26);
}

body.page-home section.news .post-card__body{
    text-align: center;
}

body.page-home section.news .post-card__title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    min-height: calc(1.18em * 2);
}

body.page-home section.news .post-card__excerpt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

    min-height: calc(1.45em * 3);
}

body.page-home section.news .post-card__cta{
    margin-top: auto;
    align-self: center;
}

.page-bonus .home-section { padding-block: 56px; }
.page-bonus .section-header { margin-bottom: 22px; }
.page-bonus .section-title { font-size: clamp(30px, 4vw, 56px); letter-spacing: .02em; }
.page-bonus .section-subtitle { opacity: .85; }

.bonus-hero { position: relative;   }
.bonus-hero::before{
    content:"";
    position:absolute; inset:-40%;
    background:
            radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 45%),
            radial-gradient(circle at 80% 30%, rgba(36,251,86,.14), transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(0,0,0,.12), transparent 55%);
    pointer-events:none;
    filter: blur(0px);
}

.bonus-hero__inner{
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: center;
}

.bonus-hero__title{
    margin: 0 0 10px;
    font-size: clamp(42px, 5.5vw, 78px);
    line-height: 1;
}

.bonus-hero__subtitle{
    margin: 0 0 18px;
    max-width: 60ch;
    font-size: 16px;
    opacity: .9;
}

.bonus-hero__actions{
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.trust-strip{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.trust-card{
    display:flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(12,10,28,.40);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.trust-card i{
    margin-top: 2px;
    font-size: 18px;
    color: var(--accent);
}
.trust-card strong{ display:block; font-size: 14px; }
.trust-card span{ display:block; font-size: 13px; opacity:.85; }

.bonus-hero__right .side-card{
    padding: 16px;
    border-radius: 22px;
    background: rgba(12,10,28,.48);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 26px 60px rgba(0,0,0,.22);
}

.side-card__head{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 10px;
}

.side-pill{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(36,251,86,.14);
    border: 1px solid rgba(36,251,86,.25);
    font-weight: 800;
    font-size: 12px;
}
.side-note{ font-size: 12px; opacity: .75; }

.mini-offer{
    display:block;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    text-decoration:none;
    color: inherit;
    margin-top: 10px;
}
.mini-offer:hover{ transform: translateY(-1px); }
.mini-offer__brand{ font-weight: 900; letter-spacing: .02em; }
.mini-offer__value{ opacity: .85; font-size: 13px; margin-top: 4px; }

.side-card__cta{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.bonus-footnote{
    margin-top: 16px;
    text-align:center;
    font-weight:700;
    color: rgba(255,255,255,.78);
}

.steps-grid{
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.step-card{
    padding: 18px 16px;
    border-radius: 22px;
    background: rgba(12,10,28,.42);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 55px rgba(0,0,0,.20);
}
.step-top{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 10px;
}
.step-num{
    width: 34px; height: 34px;
    display:grid; place-items:center;
    border-radius: 12px;
    background: rgba(36,251,86,.14);
    border: 1px solid rgba(36,251,86,.25);
    font-weight: 900;
}
.step-top i{ font-size: 18px; color: rgba(255,255,255,.85); }
.step-card h3{ margin: 0 0 6px; font-size: 16px; }
.step-card p{ margin: 0; opacity: .85; font-size: 13.5px; line-height: 1.45; }

.cta-band{
    margin-top: 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap: 14px;
}
.cta-band__text strong{ display:block; font-size: 14px; }
.cta-band__text span{ display:block; opacity:.85; font-size: 13px; }
.cta-band__actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.terms-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.term-card{
    padding: 16px;
    border-radius: 22px;
    background: rgba(12,10,28,.42);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 55px rgba(0,0,0,.20);
}
.term-head{
    display:flex;
    gap: 10px;
    align-items:center;
    margin-bottom: 8px;
}
.term-head i{ color: var(--accent); }
.term-card h3{ margin: 0; font-size: 16px; }
.term-card p{ margin: 0; opacity: .85; font-size: 13.5px; line-height: 1.45; }

.split-card{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(12,10,28,.42);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.split-card h3{ margin: 0 0 10px; }

.check-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display:flex;
    flex-direction: column;
    gap: 10px;
}
.check-list li{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    opacity: .92;
}
.check-list i{ color: var(--accent); margin-top: 2px; }

.mini-note{
    margin-top: 12px;
    display:flex;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    opacity: .92;
}

.badges{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.badge-chip{
    display:inline-flex;
    gap: 8px;
    align-items:center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    font-weight: 800;
    font-size: 12px;
}
.badge-chip i{ color: rgba(255,255,255,.85); }

.support-card{
    margin-top: 12px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(36,251,86,.10);
    border: 1px solid rgba(36,251,86,.22);
}
.support-card strong{ display:block; }
.support-card p{ margin: 6px 0 10px; opacity:.9; }

.faq-wrap{
    padding: 18px;
    border-radius: 26px;
    background: rgba(12,10,28,.42);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

@media (max-width: 1024px){
    .bonus-hero__inner{ grid-template-columns: 1fr; }
    .trust-strip{ grid-template-columns: 1fr; }
    .steps-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .terms-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split-card{ grid-template-columns: 1fr; }
    .cta-band{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px){
    .steps-grid{ grid-template-columns: 1fr; }
    .terms-grid{ grid-template-columns: 1fr; }
}
:root{
    --topbar-h: 64px;
}

@media (max-width: 900px){
    .top-navbar{ height: var(--topbar-h); }
    .main-content{ padding-top: calc(var(--topbar-h) + 14px); }
}
@media (max-width: 900px){
    .side-card__cta{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
    }

    .side-card__cta .hero-btn{
        margin: 0;
    }
}

@media (max-width: 520px){
    .side-card__cta{
        flex-direction: column;
    }

    .side-card__cta .hero-btn{
        width: min(320px, 100%);
        justify-content: center;
    }
}

.page-cassinos .home-section { padding-top: 44px; padding-bottom: 44px; }

.cassinos-hero2__inner{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: start;
}

.cassinos-hero2__title{
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.cassinos-kpis{
    margin-top: 16px;
    display:grid;
    gap: 10px;
}

.cassinos-kpis .kpi{
    display:flex;
    gap: 12px;
    align-items:center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.toplist{
    border-radius: 22px;
    padding: 16px;
    background: rgba(0,0,0,.20);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 16px 55px rgba(0,0,0,.22);
}

.toplist__head{
    display:flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    opacity: .95;
}

.toplist-row{
    display:flex;
    align-items:center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 10px;
    text-decoration: none;
}

.toplist-row__logo{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,0,0,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.toplist-row__logo img{
    width: 70%;
    height: auto;
    display:block;
}

.toplist-row__text strong{ display:block; }
.toplist-row__text span{ opacity:.85; font-weight:600; font-size: 13px; }

.toplist-row__tag{
    margin-left:auto;
    font-weight:900;
    font-size:12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(124,255,71,.22);
}

.toplist__actions{
    margin-top: 10px;
    display:flex;
    gap:10px;
    justify-content:center;
}

.cassinos-slots2 .slotlist{
    display:grid;
    gap: 12px;
    margin-top: 14px;
}

.slotrow{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

.slotrow__left{
    display:grid;
    gap: 4px;
}

.slotbadge{
    width: fit-content;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.slotname{ font-size: 18px; }
.slotdesc{ opacity:.85; font-weight:600; }

.slotcopy{
    border: 0;
    cursor:pointer;
    font-weight: 900;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(124,255,71,.30);
}

.provider-grid{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.provider-pill{
    display:inline-flex;
    align-items:center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
}

.cassinos-inline-cta{
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
}

.cassinos-inline-cta__text strong{ display:block; }
.cassinos-inline-cta__text span{ opacity:.9; font-weight:600; }

.cassinos-inline-cta__btns{
    display:flex;
    gap:10px;
}

@media (max-width: 980px){
    .cassinos-hero2__inner{ grid-template-columns: 1fr; }
    .toplist__actions{ flex-direction: column; }
    .cassinos-inline-cta{ flex-direction: column; align-items: flex-start; }
    .cassinos-inline-cta__btns{ width:100%; justify-content:center; flex-wrap: wrap; }
    .slotrow{ flex-direction: column; align-items:flex-start; }
    .slotcopy{ width: 100%; text-align:center; }
}
.c-hero__cover{
    grid-column: 1 / -1;
    margin: 0 0 14px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: rgba(0,0,0,.18);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-1);
    position: relative;
    max-height: 240px;
}

.c-hero__cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}



@media (max-width: 640px){
    .c-hero__cover{
        max-height: 200px;
        margin-bottom: 12px;
        border-radius: 18px;
    }
}
:root{
    --pol-line: rgba(255,255,255,.10);
    --pol-soft: rgba(255,255,255,.06);
    --pol-text: rgba(255,255,255,.88);
    --pol-muted: rgba(255,255,255,.72);
    --pol-accent: #7CFF6B;
    --pol-r-lg: 22px;
    --pol-r-md: 16px;
    --pol-shadow-1: 0 18px 60px rgba(0,0,0,.35);
    --pol-shadow-2: 0 10px 28px rgba(0,0,0,.25);
}

.page-policy .main-content { overflow-x: hidden; }

.pol-hero{
    position: relative;
    padding: 54px 0 18px;
}
.pol-hero::before{
    content:"";
    position:absolute; inset:-120px -40px auto -40px;
    height: 420px;
    background:
            radial-gradient(600px 260px at 18% 40%, rgba(124,255,107,.18), transparent 65%),
            radial-gradient(520px 260px at 80% 25%, rgba(255,255,255,.10), transparent 62%);
    pointer-events:none;
}
.pol-wrap{ position:relative; }

.pol-kicker{
    display:inline-flex;
    gap:10px; align-items:center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    border: 1px solid var(--pol-line);
    color: var(--pol-muted);
    font-weight: 800;
    letter-spacing: .02em;
    width: fit-content;
    margin-bottom: 12px;
}
.pol-kicker i{ color: var(--pol-accent); }

.pol-title{
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.08;
    margin: 0 0 10px;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-align: center;
}
.pol-subtitle{
    margin: 0 0 14px;
    color: var(--pol-text);
    max-width: 150ch;
    font-size: 15px;
    line-height: 1.65;
    text-align: center;
}

.pol-meta{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 12px;
}
.pol-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.14);
}
.pol-pill i{ color: var(--pol-accent); }

.pol-card{
    margin-top: 16px;
    border-radius: var(--pol-r-lg);
    background: linear-gradient(180deg, rgba(18,12,36,.62), rgba(18,12,36,.38));
    border: 1px solid var(--pol-line);
    box-shadow: var(--pol-shadow-1);
    padding: 16px;
}

.pol-grid{
    display:grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
    align-items: start;
}

.pol-nav{
    border-radius: var(--pol-r-lg);
    background: rgba(255,255,255,.045);
    border: 1px solid var(--pol-line);
    padding: 14px;
    position: sticky;
    top: 88px;
}
.pol-nav strong{
    display:block;
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 10px;
}
.pol-nav a{
    display:flex;
    gap:10px;
    align-items:center;
    padding: 10px 10px;
    border-radius: 14px;
    text-decoration:none;
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.12);
    margin-bottom: 8px;
    transition: transform .15s ease, background .15s ease;
}
.pol-nav a:hover{ transform: translateY(-1px); background: rgba(0,0,0,.18); }
.pol-nav i{ color: var(--pol-accent); }

.pol-content{
    border-radius: var(--pol-r-lg);
    background: rgba(255,255,255,.04);
    border: 1px solid var(--pol-line);
    padding: 18px;
}
.pol-content h2{
    margin: 18px 0 10px;
    font-size: 20px;
    letter-spacing: .01em;
    scroll-margin-top: 96px;
}
.pol-content h2:first-child{ margin-top: 0; }
.pol-content p{
    margin: 0 0 12px;
    color: rgba(255,255,255,.86);
    line-height: 1.72;
    font-size: 14px;
}
.pol-content ul{
    margin: 0 0 14px 18px;
    color: rgba(255,255,255,.84);
    line-height: 1.72;
    font-size: 14px;
}
.pol-content li{ margin: 6px 0; }

.pol-note{
    border-radius: var(--pol-r-md);
    background: rgba(124,255,107,.10);
    border: 1px solid rgba(124,255,107,.22);
    padding: 12px 14px;
    display:flex;
    gap: 12px;
    align-items:flex-start;
    margin: 14px 0;
}
.pol-note i{ color: var(--pol-accent); margin-top: 2px; }
.pol-note strong{ display:block; font-weight: 900; margin-bottom: 2px; }
.pol-note span{ display:block; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }

.pol-inline{
    color: rgba(255,255,255,.92);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(124,255,107,.55);
    text-underline-offset: 3px;
}
.pol-inline:hover{
    color:#fff;
    text-decoration-color: rgba(124,255,107,.95);
}

.pol-minihr{
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 14px 0;
    border-radius: 99px;
}

@media (max-width: 980px){
    .pol-grid{ grid-template-columns: 1fr; }
    .pol-nav{ position: relative; top: auto; }
}

:root{
    --link-purple: rgba(196, 164, 255, .95);
    --link-purple-2: rgba(160, 120, 255, .95);
}

.content-card a,
.feature-highlight a,
.faq-section .faq-answer a{
    color: var(--link-purple);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(196,164,255,.45);
    padding-bottom: 1px;
}

.content-card a:visited,
.feature-highlight a:visited,
.faq-section .faq-answer a:visited{
    color: var(--link-purple);
}

.content-card a:hover,
.feature-highlight a:hover,
.faq-section .faq-answer a:hover{
    color: var(--link-purple-2);
    border-bottom-color: rgba(160,120,255,.75);
}

.content-card a:focus-visible,
.feature-highlight a:focus-visible,
.faq-section .faq-answer a:focus-visible{
    outline: 2px solid rgba(196,164,255,.45);
    outline-offset: 3px;
    border-radius: 6px;
}

.hero-background{
    background-image: url("/assets/yuri-600.webp"); /* fallback */
    background-image: -webkit-image-set(
            url("/assets/yuri-600.webp") 1x,
            url("/assets/yuri-900.webp") 2x
    );
    background-image: image-set(
            url("/assets/yuri-600.avif") type("image/avif") 1x,
            url("/assets/yuri-900.avif") type("image/avif") 2x,
            url("/assets/yuri-600.webp") type("image/webp") 1x,
            url("/assets/yuri-900.webp") type("image/webp") 2x
    );

    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

