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

:root {
    --bg: #0b0d12;
    --surface: #141820;
    --surface-2: #1a1f2b;
    --surface-glass: rgba(20, 24, 32, .82);
    --border: rgba(255,255,255,.08);
    --border-hover: rgba(255,255,255,.14);
    --text: #f4f6fb;
    --muted: #9aa3b2;
    --green: #22c55e;
    --premier-accent: #ff7a00;
    --premier-glow: rgba(255,122,0,.28);
    --betlaps-accent: #c467ff;
    --betlaps-glow: rgba(196,103,255,.28);
    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --header-h: 52px;
    --header-pad: 10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(255,122,0,.14), transparent 55%),
        radial-gradient(ellipse 55% 45% at 105% 35%, rgba(196,103,255,.1), transparent 50%),
        radial-gradient(ellipse 45% 40% at -5% 75%, rgba(196,103,255,.07), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.page {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

/* ── Animations ── */
@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { transform: translateX(-120%) skewX(-18deg); }
    100% { transform: translateX(220%) skewX(-18deg); }
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,.25); }
    50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); }
}

@keyframes glow-drift {
    0%, 100% { opacity: .32; }
    50% { opacity: .48; }
}

.anim-rise {
    opacity: 0;
    animation: rise .65s var(--ease-out) forwards;
}

.anim-fade {
    opacity: 0;
    animation: fade .5s var(--ease-out) forwards;
}

.anim-d1 { animation-delay: .08s; }
.anim-d2 { animation-delay: .16s; }
.anim-d3 { animation-delay: .24s; }
.anim-d4 { animation-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .anim-rise, .anim-fade, .hero-badge { opacity: 1; animation: none; }
    .card::before { animation: none; }
    .cta::after { display: none; }
    .card { transition: none; }
}

.page {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

/* ── Masthead (hero alanı — header üstüne bindirir) ── */
.masthead {
    position: relative;
    margin: calc(-1 * var(--header-h)) -16px 8px;
    padding: var(--header-h) 16px 26px;
    border-radius: 0 0 24px 24px;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(26,31,43,.72) 0%, rgba(20,24,32,.38) 55%, transparent 100%);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.masthead::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse 80% 65% at 50% -5%, rgba(255,122,0,.16), transparent 58%),
        radial-gradient(ellipse 50% 45% at 95% 15%, rgba(196,103,255,.12), transparent 50%),
        radial-gradient(ellipse 40% 35% at 5% 25%, rgba(196,103,255,.08), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.masthead::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,122,0,.35), rgba(196,103,255,.35), transparent);
    pointer-events: none;
    z-index: 0;
}

/* ── Header ── */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    margin: 0 -16px;
    padding: var(--header-pad) 16px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.top-bar.is-scrolled {
    background: rgba(11, 13, 18, .9);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
    position: relative;
    z-index: 1;
}

.site-logo:hover { opacity: .88; }
.site-logo:active { transform: scale(.97); }

.site-logo-img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.age-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--muted);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 5px 10px;
}

.age-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239,68,68,.5);
    flex-shrink: 0;
}

/* ── Hero ── */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4px 0 4px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #e2e8f0;
    background: rgba(20, 24, 32, .45);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 7px 16px;
    margin-bottom: 18px;
    opacity: 0;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 4px 20px rgba(255,122,0,.06),
        0 4px 20px rgba(196,103,255,.04);
    animation: rise .65s var(--ease-out) forwards;
}

.hero-badge-icon {
    flex-shrink: 0;
    color: var(--premier-accent);
}

.hero h1 {
    font-size: clamp(1.55rem, 5.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.03em;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 20%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.55;
    max-width: 34ch;
    margin: 0 auto;
}

/* ── Trust strip ── */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding: 12px 10px;
    background: rgba(20, 24, 32, .45);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.trust-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.3;
    color: #cbd5e1;
}

.trust-strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--premier-accent);
}

.trust-strip-item:nth-child(2) .trust-strip-icon { color: #fbbf24; }
.trust-strip-item:nth-child(3) .trust-strip-icon { color: var(--betlaps-accent); }

/* ── Section label ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 2px;
}

.section-label::before,
.section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-label span {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

/* ── Cards ── */
.cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    overflow: hidden;
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    pointer-events: none;
    z-index: 0;
    animation: glow-drift 5s ease-in-out infinite;
}

.card-premier::before {
    background: radial-gradient(ellipse at top right, var(--premier-glow), transparent 62%);
}

.card-betlaps::before {
    background: radial-gradient(ellipse at top right, var(--betlaps-glow), transparent 62%);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,.1), transparent 40%, rgba(255,255,255,.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

@media (hover: hover) {
    .card:hover {
        transform: translateY(-3px);
        border-color: var(--border-hover);
        box-shadow: 0 16px 40px rgba(0,0,0,.35);
    }

    .card-premier:hover { box-shadow: 0 16px 44px var(--premier-glow); }
    .card-betlaps:hover { box-shadow: 0 16px 44px var(--betlaps-glow); }
}

.card:active { transform: scale(.985) translateY(0); }

.badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 7px;
    padding: 5px 10px;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.brand-logo {
    display: block;
    max-width: 160px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.card-premier .brand-name { color: var(--premier-accent); }
.card-betlaps .brand-name { color: var(--betlaps-accent); }

.badge-green { color: #fff; background: linear-gradient(135deg, #22c55e, #16a34a); }
.badge-purple { color: #fff; background: linear-gradient(135deg, #a855f7, #7c3aed); }
.badge-orange { color: #fff; background: linear-gradient(135deg, #f97316, #ea580c); }
.badge-red { color: #fff; background: linear-gradient(135deg, #ef4444, #dc2626); }
.badge-blue { color: #fff; background: linear-gradient(135deg, #3b82f6, #2563eb); }
.badge-gold { color: #1a1a1a; background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.badge-pink { color: #fff; background: linear-gradient(135deg, #ec4899, #db2777); }
.badge-cyan { color: #fff; background: linear-gradient(135deg, #06b6d4, #0891b2); }
.badge-featured { color: #fff; background: linear-gradient(135deg, #22c55e, #16a34a); }
.badge-new { color: #fff; background: linear-gradient(135deg, #a855f7, #7c3aed); }

.bonus-block {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.bonus-main {
    font-size: clamp(1.15rem, 4.2vw, 1.72rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #f4f6fb;
}

.card-premier .bonus-num {
    color: #ff9a3c;
    text-shadow: 0 0 20px var(--premier-glow);
}

.card-betlaps .bonus-num {
    color: #e9c4ff;
    text-shadow: 0 0 20px var(--betlaps-glow);
}

.bonus-sub .bonus-num {
    font-weight: 700;
}

.card-premier .bonus-main .bonus-num,
.card-betlaps .bonus-main .bonus-num {
    font-weight: 900;
}

.bonus-sub {
    margin-top: 6px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
}

.card-premier .bonus-sub .bonus-num { color: #ffb366; }
.card-betlaps .bonus-sub .bonus-num { color: #d8b4fe; }

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    font-weight: 600;
    color: #d1d5db;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 999px;
    padding: 6px 11px;
    transition: background .2s ease, border-color .2s ease;
}

@media (hover: hover) {
    .feature:hover {
        background: rgba(255,255,255,.07);
        border-color: rgba(255,255,255,.1);
    }
}

.feature::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2322c55e' fill-opacity='.2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2322c55e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 13px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform .2s var(--ease-out), filter .2s ease, box-shadow .2s ease, gap .2s ease;
}

.cta-arrow {
    flex-shrink: 0;
    transition: transform .2s var(--ease-out);
}

@media (hover: hover) {
    a.card:hover .cta-arrow {
        transform: translateX(3px);
    }
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: translateX(-120%) skewX(-18deg);
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}

.cta:active { transform: scale(.98); }

.card-premier .cta {
    background: linear-gradient(135deg, #ff8c2a 0%, var(--premier-accent) 50%, #e56a00 100%);
    box-shadow: 0 8px 28px var(--premier-glow);
}

.card-betlaps .cta {
    background: linear-gradient(135deg, #d07aff 0%, var(--betlaps-accent) 50%, #9333ea 100%);
    box-shadow: 0 8px 28px var(--betlaps-glow);
}

@media (hover: hover) {
    .cta:hover {
        filter: brightness(1.1);
        transform: translateY(-1px);
    }

    a.card:hover .cta {
        filter: brightness(1.1);
        transform: translateY(-1px);
    }

    .card-premier .cta:hover,
    a.card.card-premier:hover .cta { box-shadow: 0 12px 32px var(--premier-glow); }
    .card-betlaps .cta:hover,
    a.card.card-betlaps:hover .cta { box-shadow: 0 12px 32px var(--betlaps-glow); }
}

/* ── Trust ── */
.trust {
    margin-top: 22px;
    padding: 16px 18px;
    text-align: center;
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted);
    background: linear-gradient(165deg, rgba(26,31,43,.5) 0%, rgba(20,24,32,.35) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    line-height: 1.55;
}

.trust strong {
    font-weight: 700;
    background: linear-gradient(90deg, var(--premier-accent), var(--betlaps-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Footer ── */
.footer {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.footer h3 {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 8px;
    color: #fca5a5;
}

.footer p, .footer li {
    font-size: .76rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.65;
}

.footer ul {
    list-style: none;
    margin-top: 10px;
}

.footer li + li { margin-top: 6px; }

.footer a {
    color: #93c5fd;
    text-decoration: none;
    transition: color .2s ease;
}

.footer a:hover { color: #bfdbfe; }

.copyright {
    margin-top: 18px;
    text-align: center;
    font-size: .7rem;
    font-weight: 500;
    color: #6b7280;
}

@media (min-width: 520px) {
    .page { max-width: 520px; padding-top: 4px; }
}
