/* Gamdom-like promo landing (WP-masked theme).
   Note: This is a visual baseline; swap colors/images to match gamdom.com if needed. */

:root{
    --bg0:#070b14;
    --bg1:#0b1426;
    --card:#0f1b33;
    --muted:rgba(255,255,255,.72);
    --text:#e9f2ff;
    --line:rgba(255,255,255,.12);
    --accent:#18d7ff;
    --accent2:#00d084;
    --danger:#ff5c7a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
    background: radial-gradient(1200px 600px at 20% -10%, rgba(24,215,255,.14), transparent 60%),
                radial-gradient(900px 450px at 90% 0%, rgba(0,208,132,.10), transparent 55%),
                linear-gradient(180deg, var(--bg0), var(--bg1));
    color:var(--text);
    padding-bottom:100px; /* for fixed promo bar */
}

a{color:inherit}

.container{max-width:1200px;margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.skip-link{
    position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
    left:18px; top:18px; width:auto; height:auto; padding:10px 12px;
    background: #000; border:1px solid var(--line); border-radius:10px; z-index:9999;
}

/* Header */
.site-header{
    position:sticky; top:0;
    z-index:50;
    background: rgba(7,11,20,.72);
    backdrop-filter: blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 0;
}
.logo{display:block}
.top-nav{
    display:flex; gap:18px; align-items:center;
    flex-wrap:wrap;
}
.nav-link{
    text-decoration:none;
    font-size:14px;
    color:rgba(233,242,255,.86);
    padding:8px 10px;
    border-radius:12px;
}
.nav-link.is-active{
    background: rgba(24,215,255,.10);
    border:1px solid rgba(24,215,255,.26);
}

.header-actions{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
    display:inline-flex; align-items:center; justify-content:center;
    text-decoration:none;
    border-radius:14px;
    padding:10px 14px;
    border:1px solid transparent;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    white-space:nowrap;
    transition: transform .08s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn-small{padding:8px 12px; border-radius:12px; font-size:13px}
.btn-large{padding:12px 18px; border-radius:16px; font-size:15px}
.btn-block{width:100%}
.btn-primary{
    background: linear-gradient(135deg, rgba(24,215,255,.95), rgba(0,208,132,.95));
    color:#06101a;
    border-color: rgba(255,255,255,.10);
}
.btn-primary:hover{transform: translateY(-1px)}
.btn-ghost{
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.12);
    color: rgba(233,242,255,.92);
}
.btn-ghost:hover{background: rgba(255,255,255,.07)}
.btn.btn-ghost.btn-large{
    padding:12px 18px;
}

/* Layout */
.site-main{padding:26px 0 30px}

/* Hero */
.hero-grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:22px;
    align-items:center;
}
.hero-media{
    border:1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border-radius:22px;
    overflow:hidden;
    padding:16px;
}
.hero-form-card{
    padding:18px;
}
.hero-image-inline{
    display:block;
    margin-top:14px;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.02);
    text-decoration:none;
}
.hero-img-inline{
    width:100%;
    height:auto;
    display:block;
}
.hero-img{
    width:100%;
    height:auto;
    display:block;
}

.badge{
    display:inline-flex;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background: rgba(0,208,132,.10);
    border:1px solid rgba(0,208,132,.28);
    font-weight:800;
    font-size:12.5px;
    color: rgba(233,242,255,.92);
    margin-bottom:14px;
}
.hero-title{
    font-size:42px;
    line-height:1.05;
    margin:0 0 10px;
}
.accent{color:var(--accent)}
.hero-sub{
    margin:0 0 18px;
    color: rgba(233,242,255,.88);
    font-size:16px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}
.trust-cards{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
}
.trust-card{
    padding:14px 14px;
    border-radius:18px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
}
.trust-title{font-weight:900; margin-bottom:6px}
.trust-text{color: rgba(233,242,255,.80)}

/* Sections */
.section{margin:26px 0}
.section-title{
    margin:0 0 12px;
    font-size:22px;
}
.two-col{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap:18px;
    align-items:start;
}
.info-card{
    padding:18px;
    border-radius:22px;
    background: linear-gradient(180deg, rgba(24,215,255,.06), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.11);
}
.info-card-top{margin-bottom:12px}
.info-title{font-weight:900; font-size:18px}
.info-sub{color: rgba(233,242,255,.80); font-size:13.5px}
.info-row{
    display:flex; justify-content:space-between; gap:10px;
    padding:10px 0;
    border-top:1px solid rgba(255,255,255,.08);
}
.info-row:first-of-type{border-top:none}
.info-key{color: rgba(233,242,255,.72); font-size:13.5px}
.info-val{font-weight:900}
.info-note{
    margin:12px 0 16px;
    padding:12px;
    border-radius:16px;
    background: rgba(255,255,255,.03);
    border:1px dashed rgba(255,255,255,.18);
}

/* Steps */
.steps-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:14px;
    margin-top:12px;
}
.step{
    padding:16px;
    border-radius:18px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
}
.step-num{
    width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    border-radius:12px;
    background: rgba(24,215,255,.12);
    border:1px solid rgba(24,215,255,.25);
    font-weight:900;
    margin-bottom:10px;
}
.step-title{font-weight:900; margin-bottom:6px}
.step-text{color: rgba(233,242,255,.82); line-height:1.55}

.cta-inline{
    display:flex; gap:12px; align-items:center; justify-content:space-between;
    margin-top:18px;
    padding:14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}
.cta-inline-text{color: rgba(233,242,255,.88)}

/* Games grid */
.games-grid{
    margin-top:14px;
    display:grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap:12px;
}
.game-item{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:10px 10px;
    border-radius:16px;
    text-decoration:none;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
    color: rgba(233,242,255,.86);
    font-weight:850;
}
.games-note{margin-top:12px; font-size:14px}

/* Signup */
.signup-grid{
    margin-top:10px;
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:18px;
    align-items:start;
}
.hero-form-title{
    font-weight:1000;
    margin-bottom:10px;
}
.hero-form .form-row{margin-bottom:10px}

/* Quick interactive cards */
.quick-grid{
    margin-top:12px;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:12px;
}
.quick-card{
    padding:14px 14px;
    border-radius:18px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
}
.quick-card summary{
    cursor:pointer;
    font-weight:1000;
    color: rgba(233,242,255,.92);
}
.quick-body{margin-top:10px; color: rgba(233,242,255,.84); line-height:1.6}
.signup-card{
    padding:18px;
    border-radius:22px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
}
.signup-aside{display:flex; flex-direction:column; gap:14px}
.aside-card{
    padding:16px;
    border-radius:22px;
    background: linear-gradient(180deg, rgba(0,208,132,.08), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.10);
}
.aside-title{font-weight:900; margin-bottom:10px}
.aside-list{display:flex; flex-direction:column; gap:8px; color: rgba(233,242,255,.86)}
.aside-li{position:relative; padding-left:14px}
.aside-li::before{
    content:'';
    position:absolute; left:0; top:.55em;
    width:7px; height:7px; border-radius:2px;
    background: rgba(24,215,255,.9);
}

.form-row{margin-bottom:12px}
label{display:block; margin-bottom:6px; font-weight:800; color: rgba(233,242,255,.86); font-size:14px}
input, textarea{
    width:100%;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.20);
    color: var(--text);
    outline:none;
}
textarea{resize:vertical; min-height:120px}
input:focus, textarea:focus{border-color: rgba(24,215,255,.42)}
.field-help{
    margin-top:8px;
    padding:10px 12px;
    border-radius:14px;
    border:1px dashed rgba(255,255,255,.18);
    background: rgba(255,255,255,.02);
    font-size:13.5px;
}
.form-actions{margin-top:14px}
.privacy-note{font-size:13.5px; margin-top:12px}

/* FAQ */
.faq{display:grid; grid-template-columns: 1fr; gap:12px; margin-top:10px}
.faq-item{
    padding:14px 14px;
    border-radius:18px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
}
.faq-item summary{
    cursor:pointer;
    font-weight:900;
    color: rgba(233,242,255,.92);
}
.faq-item p{margin:10px 0 0; color: rgba(233,242,255,.84); line-height:1.6}

/* Footer */
.site-footer{margin-top:20px; padding:24px 0 60px}
.footer-inner{
    display:grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap:18px;
    align-items:start;
}
.footer-logo-row{margin-bottom:10px}
.footer-col{padding:10px 0}
.footer-title{font-weight:900; margin-bottom:10px}
.footer-link{
    display:block;
    text-decoration:none;
    padding:8px 0;
    color: rgba(233,242,255,.86);
}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08); padding-top:16px}

/* Pop-up promo bar (fixed) */
.promo-bar{
    position:fixed;
    left:0; right:0; bottom:0;
    z-index:999;
    border-top:1px solid rgba(255,255,255,.12);
    background: rgba(8,12,22,.92);
    backdrop-filter: blur(12px);
    padding:10px 0;
}
.promo-inner{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
}
.promo-item{display:flex; flex-direction:column; gap:4px}
.promo-label{
    font-size:12px;
    color: rgba(233,242,255,.70);
    font-weight:900;
}
.promo-code{
    display:inline-flex;
    font-weight:1000;
    font-size:15px;
    padding:8px 12px;
    border-radius:14px;
    background: rgba(24,215,255,.10);
    border:1px solid rgba(24,215,255,.30);
    text-decoration:none;
}
.promo-code:hover{opacity:.92}
.promo-bonus-text{font-weight:900; font-size:13.5px}
.promo-button-wrap{min-width:140px; align-items:flex-end}
.promo-toast{
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    bottom:62px;
    background: rgba(0,0,0,.75);
    border:1px solid rgba(255,255,255,.18);
    color: #fff;
    padding:10px 14px;
    border-radius:14px;
    opacity:0;
    pointer-events:none;
    transition: opacity .15s ease, transform .15s ease;
}
.promo-toast.is-visible{
    opacity:1;
    transform: translateX(-50%) translateY(-2px);
}
.noscript-note{
    padding:12px;
    background: rgba(255,92,122,.12);
    border:1px solid rgba(255,92,122,.35);
    border-radius:16px;
    margin:16px;
}

/* Contact */
.contact-grid{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap:18px;
    margin-top:14px;
}
.contact-card{padding:18px; border:1px solid rgba(255,255,255,.10); border-radius:22px; background: rgba(255,255,255,.03)}
.contact-aside{display:flex; flex-direction:column; gap:14px}

/* Clickable form card */
.hero-form-card-link{
    display:block;
    text-decoration:none;
    color:inherit;
    border:1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border-radius:22px;
    overflow:hidden;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.hero-form-card-link:hover{
    transform: translateY(-2px);
    border-color: rgba(24,215,255,.35);
    box-shadow: 0 8px 32px rgba(24,215,255,.12);
}
.hero-form-card-inner{
    padding:20px;
}
.fake-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.fake-input{
    padding:12px 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.20);
}
.fake-input.promo-input{
    background: rgba(24,215,255,.08);
    border-color: rgba(24,215,255,.25);
}
.fake-input.highlight{
    background: rgba(0,208,132,.12);
    border-color: rgba(0,208,132,.35);
}
.fake-label{
    display:block;
    font-size:11px;
    color: rgba(233,242,255,.60);
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.5px;
}
.fake-placeholder{
    color: rgba(233,242,255,.40);
}
.fake-value{
    font-weight:900;
    color: var(--accent);
}
.fake-value.large{
    font-size:18px;
}
.fake-btn{
    padding:14px;
    border-radius:14px;
    background: linear-gradient(135deg, rgba(24,215,255,.95), rgba(0,208,132,.95));
    color:#06101a;
    font-weight:900;
    text-align:center;
    margin-top:4px;
}
.form-note{
    margin-top:12px;
    font-size:12px;
    color: rgba(233,242,255,.60);
    text-align:center;
}
.bonus-display{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 14px;
    border-radius:14px;
    background: rgba(0,208,132,.08);
    border:1px solid rgba(0,208,132,.20);
}
.bonus-label{
    font-size:12px;
    color: rgba(233,242,255,.70);
}
.bonus-value{
    font-weight:900;
    color: var(--accent2);
}

/* Feature cards */
.feature-card{
    padding:18px;
    border-radius:18px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
    text-align:center;
}
.feature-icon{
    font-size:28px;
    margin-bottom:10px;
}
.feature-title{
    font-weight:900;
    margin-bottom:6px;
}
.feature-text{
    color: rgba(233,242,255,.80);
    font-size:14px;
    line-height:1.5;
}

/* Feature list */
.feature-list{
    list-style:none;
    padding:0;
    margin:14px 0;
}
.feature-list li{
    position:relative;
    padding-left:20px;
    margin-bottom:10px;
    color: rgba(233,242,255,.88);
}
.feature-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    color: var(--accent2);
    font-weight:bold;
}

/* CTA Banner */
.cta-banner{
    padding:32px;
    border-radius:22px;
    background: linear-gradient(135deg, rgba(24,215,255,.12), rgba(0,208,132,.12));
    border:1px solid rgba(255,255,255,.12);
    text-align:center;
}
.cta-banner h2{
    margin:0 0 10px;
}
.cta-banner p{
    margin:0 0 18px;
    color: rgba(233,242,255,.85);
}

/* Screenshot */
.hero-screenshot{
    display:block;
    margin-top:18px;
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.hero-screenshot:hover{
    transform: translateY(-3px);
    border-color: rgba(24,215,255,.35);
    box-shadow: 0 12px 40px rgba(24,215,255,.15);
}
.screenshot-img{
    width:100%;
    height:auto;
    display:block;
}

/* Disclaimer */
.disclaimer{
    padding:16px;
    border-radius:16px;
    background: rgba(255,92,122,.08);
    border:1px solid rgba(255,92,122,.20);
    font-size:13px;
    line-height:1.6;
}

/* 404 Page */
.error-page{
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
}
.error-content{
    max-width:500px;
}
.error-code{
    font-size:120px;
    font-weight:900;
    line-height:1;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom:10px;
}
.error-title{
    font-size:28px;
    margin:0 0 14px;
}
.error-text{
    color: rgba(233,242,255,.80);
    margin-bottom:24px;
    line-height:1.6;
}
.error-actions{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
}

/* Game items hover */
.game-item{
    transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.game-item:hover{
    transform: translateY(-2px);
    border-color: rgba(24,215,255,.30);
    background: rgba(24,215,255,.08);
}

/* Responsive */
@media (max-width: 980px){
    .hero-grid{grid-template-columns: 1fr; gap:14px}
    .two-col{grid-template-columns: 1fr; gap:14px}
    .signup-grid{grid-template-columns: 1fr; gap:14px}
    .footer-inner{grid-template-columns: 1fr; gap:10px}
    .games-grid{grid-template-columns: repeat(3, minmax(0, 1fr));}
    .quick-grid{grid-template-columns: 1fr;}
    .cta-inline{flex-direction:column; align-items:flex-start}
    .contact-grid{grid-template-columns: 1fr}
}
@media (max-width: 640px){
    .top-nav{display:none}
    .hero-title{font-size:28px}
    .trust-cards{grid-template-columns: 1fr}
    .steps-grid{grid-template-columns: 1fr}
    .games-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
    .promo-inner{flex-wrap:wrap}
    .promo-button-wrap{min-width:100%}
    .error-code{font-size:80px}
    .cta-banner{padding:24px 18px}
}

