@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');
:root{
 --bg-deep:#06080f;
 --bg-dark:#0a0e1a;
 --bg-card:#111827;
 --bg-card-alt:#0f1523;
 --bg-section-alt:#0d1120;
 --gold:#c9a84c;
 --gold-light:#e4cc7a;
 --gold-dim:rgba(201,168,76,0.15);
 --red:#e63946;
 --red-hover:#ff4d5a;
 --green:#2ecc71;
 --blue-accent:#3b82f6;
 --text:#e8e8ec;
 --text-muted:#8a8fa8;
 --text-heading:#f5f5f7;
 --white:#ffffff;
 --border:rgba(201,168,76,0.12);
 --border-strong:rgba(201,168,76,0.25);
 --glass:rgba(17,24,39,0.7);
 --shadow:0 8px 32px rgba(0,0,0,0.4);
 --shadow-gold:0 0 30px rgba(201,168,76,0.08);
 --radius:12px;
 --radius-sm:8px;
 --radius-lg:20px;
 --font-display:'Cormorant Garamond',Georgia,serif;
 --font-body:'DM Sans',system-ui,sans-serif;
 --max-w:1180px;
 --header-h:72px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 16px);overflow-x:hidden}
body{
 font-family:var(--font-body);
 font-size:16px;
 line-height:1.7;
 color:var(--text);
 background:var(--bg-deep);
 -webkit-font-smoothing:antialiased;
 overflow-x:hidden;
}
img{display:block;height:auto;border-radius:var(--radius)}
a{color:var(--gold);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold-light)}
.container{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.site-header{
 position:fixed;top:0;left:0;right:0;
 height:var(--header-h);
 background:rgba(6,8,15,0.85);
 backdrop-filter:blur(16px);
 -webkit-backdrop-filter:blur(16px);
 border-bottom:1px solid var(--border);
 z-index:1000;
 transition:background .3s;
}
.header-inner{
 max-width:var(--max-w);margin:0 auto;padding:0 24px;
 display:flex;align-items:center;justify-content:space-between;
 height:100%;
}
.logo{
 display:flex;align-items:center;
}
.logo-img{
 height:34px;width:auto;
 filter:brightness(1.1);
 transition:filter .2s;
}
.logo:hover .logo-img{filter:brightness(1.3)}
.main-nav{display:flex;gap:4px;align-items:center}
.main-nav a{
 font-size:.85rem;font-weight:500;
 color:var(--text-muted);padding:8px 14px;
 border-radius:var(--radius-sm);
 transition:all .2s;
}
.main-nav a:hover{color:var(--gold);background:var(--gold-dim)}
.header-cta{
 display:inline-flex;gap:10px;align-items:center;
}
.btn{
 display:inline-flex;align-items:center;justify-content:center;
 gap:8px;padding:12px 28px;
 font-family:var(--font-body);font-size:.9rem;font-weight:600;
 border:none;border-radius:var(--radius-sm);cursor:pointer;
 transition:all .25s;text-decoration:none;
}
.btn-primary{
 background:var(--red);color:var(--white);
 box-shadow:0 4px 20px rgba(230,57,70,0.3);
}
.btn-primary:hover{
 background:var(--red-hover);color:var(--white);
 box-shadow:0 6px 28px rgba(230,57,70,0.45);
 transform:translateY(-1px);
}
.btn-outline{
 background:transparent;color:var(--gold);
 border:1px solid var(--border-strong);
}
.btn-outline:hover{
 background:var(--gold-dim);color:var(--gold-light);
}
.btn-lg{padding:16px 36px;font-size:1rem;border-radius:var(--radius)}
.btn-full{width:100%}
.hero{
 position:relative;
 background-size:cover;
 background-position:center right;
 background-repeat:no-repeat;
 padding:calc(var(--header-h) + 48px) 0 0;
}
.hero-overlay{
 position:absolute;inset:0;
 background:linear-gradient(90deg,rgba(6,8,15,0.92) 0%,rgba(6,8,15,0.75) 50%,rgba(6,8,15,0.3) 100%);
 z-index:1;
}
.hero-content{
 position:relative;z-index:2;
 max-width:620px;
 padding-bottom:40px;
}
.hero-badge{
 display:inline-flex;align-items:center;gap:8px;
 background:var(--gold-dim);border:1px solid var(--border-strong);
 border-radius:40px;padding:6px 16px;
 font-size:.8rem;color:var(--gold);font-weight:600;
 margin-bottom:20px;
 animation:fadeInDown .6s ease-out;
}
.hero h1{
 font-family:var(--font-display);
 font-size:clamp(2.2rem,4.5vw,3.4rem);
 font-weight:700;line-height:1.15;
 color:var(--text-heading);
 margin-bottom:20px;
 animation:fadeInDown .6s ease-out .1s both;
}
.hero h1 .gold{color:var(--gold)}
.hero-sub{
 font-size:1.05rem;color:var(--text-muted);line-height:1.65;
 margin-bottom:28px;
 animation:fadeInDown .6s ease-out .2s both;
}
.hero-rating{
 display:flex;align-items:center;gap:12px;
 margin-bottom:32px;
 animation:fadeInDown .6s ease-out .25s both;
}
.hero-stars{color:var(--gold);font-size:1.2rem;letter-spacing:2px}
.hero-rating-text{font-size:.95rem;color:var(--text-muted)}
.hero-rating-text strong{color:var(--text-heading)}
.hero-actions{
 display:flex;gap:14px;flex-wrap:wrap;
 animation:fadeInDown .6s ease-out .3s both;
}
.hero-tags{
 display:flex;flex-wrap:wrap;gap:10px;
 margin-top:24px;
 animation:fadeInDown .6s ease-out .35s both;
}
.hero-tag{
 font-size:.78rem;font-weight:500;
 padding:6px 14px;border-radius:40px;
 background:rgba(17,24,39,0.7);
 border:1px solid var(--border);
 color:var(--text-muted);
}
.hero-stats{
 position:relative;z-index:2;
 display:flex;
 background:var(--bg-card);
 border:1px solid var(--border-strong);
 border-radius:var(--radius);
 overflow:hidden;
 box-shadow:var(--shadow);
 margin-top:-20px;
 margin-bottom:40px;
}
.hero-stat{
 flex:1;text-align:center;padding:16px 12px;
 border-right:1px solid var(--border);
}
.hero-stat:last-child{border-right:none}
.hero-stat-icon{font-size:1.3rem;margin-bottom:4px}
.hero-stat-value{
 font-family:var(--font-display);font-size:1.3rem;font-weight:700;
 color:var(--gold);
}
.hero-stat-label{font-size:.7rem;color:var(--text-muted);margin-top:2px}
section{padding:80px 0}
section:nth-child(even){background:var(--bg-section-alt)}
.section-icon{font-size:1.1rem;margin-bottom:8px;display:block}
.section-label{
 font-size:.75rem;font-weight:700;text-transform:uppercase;
 letter-spacing:2.5px;color:var(--gold);margin-bottom:12px;
}
.section-title{
 font-family:var(--font-display);
 font-size:clamp(1.8rem,3vw,2.4rem);
 font-weight:700;color:var(--text-heading);
 margin-bottom:20px;line-height:1.2;
}
.section-desc{
 font-size:1rem;color:var(--text-muted);
 max-width:680px;margin-bottom:40px;line-height:1.7;
}
.quick-stats{
 display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
 gap:16px;margin-top:32px;
}
.qs-card{
 background:var(--bg-card);
 border:1px solid var(--border);
 border-radius:var(--radius);
 padding:20px 16px;text-align:center;
 transition:border-color .3s,transform .3s;
}
.qs-card:hover{border-color:var(--border-strong);transform:translateY(-3px)}
.qs-icon{font-size:1.5rem;margin-bottom:8px}
.qs-value{
 font-family:var(--font-display);font-size:1.5rem;font-weight:700;
 color:var(--gold);
}
.qs-label{font-size:.75rem;color:var(--text-muted);margin-top:4px}
.rating-grid{
 display:grid;grid-template-columns:200px 1fr;
 gap:40px;align-items:start;
}
.rating-circle{
 text-align:center;
 background:var(--bg-card);
 border:1px solid var(--border-strong);
 border-radius:var(--radius-lg);
 padding:32px 24px;
 box-shadow:var(--shadow-gold);
}
.rating-number{
 font-family:var(--font-display);font-size:3.6rem;font-weight:700;
 color:var(--gold);line-height:1;
}
.rating-of{font-size:.85rem;color:var(--text-muted);margin:4px 0 8px}
.rating-stars-lg{color:var(--gold);font-size:1.1rem;letter-spacing:2px}
.rating-bars{display:flex;flex-direction:column;gap:16px}
.rating-bar-row{display:flex;align-items:center;gap:16px}
.rating-bar-label{
 font-size:.85rem;color:var(--text-muted);
 min-width:120px;flex-shrink:0;
}
.rating-bar-track{
 flex:1;height:10px;background:rgba(201,168,76,0.08);
 border-radius:20px;overflow:hidden;
}
.rating-bar-fill{
 height:100%;border-radius:20px;
 background:linear-gradient(90deg,var(--gold),var(--gold-light));
 transition:width 1.2s cubic-bezier(0.25,1,0.5,1);
 width:0;
}
.rating-bar-value{
 font-size:.85rem;font-weight:600;color:var(--gold);
 min-width:32px;text-align:right;
}
.overview-content{
 display:grid;grid-template-columns:1fr 380px;
 gap:48px;align-items:start;
}
.overview-text p{margin-bottom:16px}
.overview-text ul{
 list-style:none;margin:20px 0;
}
.overview-text ul li{
 padding:6px 0 6px 28px;position:relative;
 color:var(--text);font-size:.95rem;
}
.overview-text ul li::before{
 content:'✦';position:absolute;left:0;color:var(--gold);font-size:.7rem;top:10px;
}
.overview-image{
 position:relative;
}
.overview-image img{
 border-radius:var(--radius);
 border:1px solid var(--border);
 box-shadow:var(--shadow);
}
.login-grid{
 display:grid;grid-template-columns:1fr 1fr;
 gap:48px;align-items:center;
}
.login-steps{margin-top:24px}
.login-step{
 display:flex;gap:16px;align-items:flex-start;
 padding:16px 0;
 border-bottom:1px solid var(--border);
}
.login-step:last-child{border-bottom:none}
.login-step-num{
 width:36px;height:36px;flex-shrink:0;
 display:flex;align-items:center;justify-content:center;
 background:var(--gold-dim);
 border:1px solid var(--border-strong);
 border-radius:50%;
 font-family:var(--font-display);font-weight:700;
 color:var(--gold);font-size:1rem;
}
.login-step-text h4{
 font-size:.95rem;font-weight:600;color:var(--text-heading);
 margin-bottom:4px;
}
.login-step-text p{font-size:.85rem;color:var(--text-muted);line-height:1.5}
.login-image img{
 border-radius:var(--radius);border:1px solid var(--border);
 box-shadow:var(--shadow);
}
.bonus-grid{
 display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
 gap:20px;
}
.bonus-card{
 background:var(--bg-card);
 border:1px solid var(--border);
 border-radius:var(--radius);
 padding:28px 24px;
 transition:border-color .3s,transform .3s,box-shadow .3s;
 position:relative;overflow:hidden;
}
.bonus-card::before{
 content:'';position:absolute;top:0;left:0;right:0;height:3px;
 background:linear-gradient(90deg,var(--gold),var(--gold-light));
 opacity:0;transition:opacity .3s;
}
.bonus-card:hover{
 border-color:var(--border-strong);
 transform:translateY(-4px);
 box-shadow:var(--shadow-gold);
}
.bonus-card:hover::before{opacity:1}
.bonus-card-icon{font-size:2rem;margin-bottom:12px}
.bonus-card-name{
 font-size:.75rem;font-weight:700;text-transform:uppercase;
 letter-spacing:1.5px;color:var(--gold);margin-bottom:8px;
}
.bonus-card-value{
 font-family:var(--font-display);font-size:1.6rem;font-weight:700;
 color:var(--text-heading);margin-bottom:4px;line-height:1.2;
}
.bonus-card-extra{
 font-size:.9rem;color:var(--gold);margin-bottom:14px;
}
.bonus-card-desc{
 font-size:.85rem;color:var(--text-muted);line-height:1.55;
 margin-bottom:14px;
}
.bonus-card-terms{
 font-size:.75rem;color:var(--text-muted);
 padding-top:12px;border-top:1px solid var(--border);
 font-style:italic;
}
.games-grid{
 display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
 gap:20px;margin-bottom:40px;
}
.game-card{
 position:relative;overflow:hidden;
 border-radius:var(--radius);
 border:1px solid var(--border);
 transition:border-color .3s,transform .3s;
}
.game-card:hover{
 border-color:var(--border-strong);
 transform:translateY(-4px);
}
.section-banner{margin-bottom:28px}
.overview-image img,
.login-image img,
.mobile-image img{
 border:1px solid var(--border);
 box-shadow:var(--shadow);
}
.game-card img{
 width:100%;height:200px;object-fit:cover;
 transition:transform .4s;
}
.game-card:hover img{transform:scale(1.05)}
.game-card-body{
 padding:20px;background:var(--bg-card);
}
.game-card-title{
 font-family:var(--font-display);font-size:1.2rem;font-weight:700;
 color:var(--text-heading);margin-bottom:4px;
}
.game-card-count{font-size:.85rem;color:var(--text-muted)}
.game-card-providers{font-size:.78rem;color:var(--gold);margin-top:8px}
.providers-strip{
 display:flex;align-items:center;gap:24px;flex-wrap:wrap;
 padding:24px;
 background:var(--bg-card);
 border:1px solid var(--border);
 border-radius:var(--radius);
}
.providers-strip img{
 height:28px;opacity:0.6;filter:grayscale(30%);
 transition:opacity .3s;
}
.providers-strip img:hover{opacity:1}
.providers-label{
 font-size:.78rem;color:var(--text-muted);font-weight:600;
 text-transform:uppercase;letter-spacing:1px;
 margin-right:8px;
}
.mid-cta{
 text-align:center;
 padding:56px 32px;
 background:
 radial-gradient(ellipse 70% 100% at 50% 100%,rgba(201,168,76,0.06) 0%,transparent 60%),
 var(--bg-card);
 border:1px solid var(--border-strong);
 border-radius:var(--radius-lg);
 margin:0 auto;
 max-width:800px;
}
.mid-cta .section-title{margin-bottom:12px}
.mid-cta p{
 color:var(--text-muted);margin-bottom:28px;
 font-size:1rem;
}
.payments-table-wrap{
 overflow-x:auto;
 border-radius:var(--radius);
 border:1px solid var(--border);
}
.payments-table{
 width:100%;border-collapse:collapse;
 font-size:.9rem;
}
.payments-table thead{background:var(--bg-card-alt)}
.payments-table th{
 padding:14px 18px;text-align:left;
 font-size:.75rem;font-weight:700;text-transform:uppercase;
 letter-spacing:1px;color:var(--gold);
 border-bottom:1px solid var(--border-strong);
}
.payments-table td{
 padding:14px 18px;
 border-bottom:1px solid var(--border);
 color:var(--text);
}
.payments-table tbody tr{
 transition:background .2s;
}
.payments-table tbody tr:hover{background:var(--gold-dim)}
.payments-table tbody tr:last-child td{border-bottom:none}
.pay-status{
 font-size:.78rem;font-weight:600;
 padding:3px 10px;border-radius:20px;
 display:inline-block;
}
.pay-status.available{background:rgba(46,204,113,0.12);color:var(--green)}
.pay-status.fast{background:rgba(201,168,76,0.12);color:var(--gold)}
.payment-notes{margin-top:28px}
.payment-notes ul{list-style:none}
.payment-notes ul li{
 padding:5px 0 5px 24px;position:relative;
 font-size:.88rem;color:var(--text-muted);
}
.payment-notes ul li::before{
 content:'•';position:absolute;left:8px;color:var(--gold);
}
.mobile-grid{
 display:grid;grid-template-columns:1fr 1fr;
 gap:48px;align-items:center;
}
.mobile-features{margin-top:20px}
.mobile-features li{
 padding:6px 0 6px 28px;position:relative;
 font-size:.92rem;color:var(--text);
 list-style:none;
}
.mobile-features li::before{
 content:'✓';position:absolute;left:0;color:var(--green);font-weight:700;
}
.mobile-image img{
 border-radius:var(--radius-lg);
 border:1px solid var(--border);
 box-shadow:var(--shadow);
}
.security-grid{
 display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
 gap:16px;
}
.sec-card{
 display:flex;gap:16px;align-items:flex-start;
 background:var(--bg-card);
 border:1px solid var(--border);
 border-radius:var(--radius);
 padding:24px;
 transition:border-color .3s;
}
.sec-card:hover{border-color:var(--border-strong)}
.sec-card-icon{
 width:48px;height:48px;flex-shrink:0;
 display:flex;align-items:center;justify-content:center;
 background:var(--gold-dim);
 border-radius:var(--radius-sm);
 font-size:1.4rem;
}
.sec-card-title{
 font-size:.95rem;font-weight:600;
 color:var(--text-heading);margin-bottom:4px;
}
.sec-card-desc{font-size:.83rem;color:var(--text-muted);line-height:1.5}
.faq-list{max-width:800px}
.faq-item{
 border:1px solid var(--border);
 border-radius:var(--radius);
 margin-bottom:8px;
 overflow:hidden;
 transition:border-color .3s;
}
.faq-item.active{border-color:var(--border-strong)}
.faq-q{
 display:flex;justify-content:space-between;align-items:center;
 padding:18px 24px;cursor:pointer;
 font-size:.95rem;font-weight:600;color:var(--text-heading);
 background:var(--bg-card);
 transition:background .2s;
}
.faq-q:hover{background:var(--bg-card-alt)}
.faq-q::after{
 content:'▾';font-size:1.1rem;color:var(--gold);
 transition:transform .3s;
}
.faq-item.active .faq-q::after{transform:rotate(180deg)}
.faq-a{
 max-height:0;overflow:hidden;
 transition:max-height .35s ease;
}
.faq-a-inner{
 padding:0 24px 20px;
 font-size:.9rem;color:var(--text-muted);line-height:1.65;
}
.footer-cta{
 text-align:center;
 padding:64px 32px;
 background:
 radial-gradient(ellipse 60% 80% at 50% 0%,rgba(201,168,76,0.05) 0%,transparent 60%),
 var(--bg-deep);
}
.footer-cta .section-title{margin-bottom:10px}
.footer-cta p{color:var(--text-muted);margin-bottom:28px}
.footer-cta-buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.site-footer{
 background:var(--bg-dark);
 border-top:1px solid var(--border);
 padding:48px 0 32px;
}
.footer-grid{
 display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
 gap:32px;margin-bottom:40px;
}
.footer-brand .logo{margin-bottom:12px}
.footer-brand p{font-size:.83rem;color:var(--text-muted);line-height:1.55}
.footer-col h4{
 font-size:.75rem;font-weight:700;text-transform:uppercase;
 letter-spacing:1.5px;color:var(--gold);margin-bottom:16px;
}
.footer-col a{
 display:block;font-size:.85rem;color:var(--text-muted);
 padding:4px 0;transition:color .2s;
}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{
 display:flex;justify-content:space-between;align-items:center;
 padding-top:24px;border-top:1px solid var(--border);
 font-size:.78rem;color:var(--text-muted);
 flex-wrap:wrap;gap:12px;
}
.footer-badges{display:flex;gap:12px;align-items:center}
.footer-badge{
 display:inline-flex;align-items:center;justify-content:center;
 width:40px;height:40px;
 background:var(--bg-card);
 border:1px solid var(--border);
 border-radius:var(--radius-sm);
 font-size:.9rem;font-weight:700;color:var(--gold);
}
.responsible-notice{
 text-align:center;margin-top:24px;
 font-size:.75rem;color:var(--text-muted);
 line-height:1.5;
}