/* =========================================================
   Laser247exch.live — Main Stylesheet
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #0b1320;
    --color-bg-alt: #111c2e;
    --color-surface: #18243a;
    --color-card: #1d2c46;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-primary: #ffcb05;
    --color-primary-dark: #e6b400;
    --color-accent: #25d366;
    --color-accent-dark: #1ebe5a;
    --color-red: #e74c3c;
    --color-text: #eef2f8;
    --color-muted: #a7b3c7;
    --color-heading: #ffffff;
    --color-table-stripe: rgba(255, 255, 255, 0.03);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
    --container: 1180px;
    --transition: 0.25s ease;
    --font-sans: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: #fff; }

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

h1, h2, h3, h4, h5 {
    color: var(--color-heading);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; color: var(--color-text); }

ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.4rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

section {
    padding: 70px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 1.2rem;
}
.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.98rem;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-primary);
    color: #1a1a1a;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 203, 5, 0.25);
}
.btn-wa {
    background: var(--color-accent);
    color: #fff;
}
.btn-wa:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}
.btn-xl {
    padding: 18px 36px;
    font-size: 1.1rem;
}
.btn-block {
    display: inline-flex;
    margin-top: 0.5rem;
}
.btn svg { width: 22px; height: 22px; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 19, 32, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand .brand-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 12px var(--color-primary);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
}
.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 90px 0 80px;
    background-color: #0a1322;
    background-image: url("1266-1.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}
/* dark gradient overlay on top of the hero image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1200px 600px at 20% 0%, rgba(255, 203, 5, 0.18), transparent 60%),
        radial-gradient(900px 500px at 90% 30%, rgba(37, 211, 102, 0.12), transparent 60%),
        linear-gradient(180deg, rgba(10, 19, 34, 0.78) 0%, rgba(11, 19, 32, 0.92) 100%);
    pointer-events: none;
}
/* subtle dotted texture above the gradient for depth */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23ffffff' opacity='0.07'/></svg>");
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
/* centered hero (no side card) */
.hero--centered { padding: 110px 0 100px; }
.hero--centered .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}
.hero-content { max-width: 820px; }
.hero--centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero--centered .hero-cta { justify-content: center; }
.hero--centered .hero-badges { justify-content: center; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--color-primary); }
.hero-sub {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--color-muted);
}
.hero-badge::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
}

/* hero visual */
.hero-card {
    position: relative;
    background: linear-gradient(145deg, #1f2c47, #131e34);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.hero-card h3 { color: #fff; margin-bottom: 1rem; }
.hero-card .live-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}
.hero-card .live-row .odd {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.05rem;
}
.hero-card .live-row .team { color: #fff; font-weight: 500; }
.hero-card .live-row .meta { color: var(--color-muted); font-size: 0.8rem; }
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #fff;
    background: var(--color-red);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.live-pill::before {
    content: "";
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.4s infinite;
}
.live-pill.upcoming-pill {
    background: var(--color-accent);
    color: #fff;
}
.live-pill.upcoming-pill::before {
    background: #fff;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ---------- Generic Cards Grid ---------- */
.grid {
    display: grid;
    gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: transform var(--transition), border-color var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 203, 5, 0.4);
}
.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,203,5,0.18), rgba(37,211,102,0.15));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.card h3 { color: #fff; }
.card p { color: var(--color-muted); margin-bottom: 0; }

/* ---------- Step List ---------- */
.steps {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 1.5rem;
}
.step {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
}
.step-num {
    position: absolute;
    top: -18px;
    left: 22px;
    width: 38px; height: 38px;
    background: var(--color-primary);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
}
.step h4 { color: #fff; margin-top: 8px; }
.step p { color: var(--color-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Feature Bullets ---------- */
.feature-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}
.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--color-text);
}
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px; height: 22px;
    background: rgba(37, 211, 102, 0.2);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ---------- Tables ---------- */
.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-card);
}
table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-text);
    font-size: 0.95rem;
}
thead th {
    background: rgba(255, 203, 5, 0.08);
    color: var(--color-primary);
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
}
tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}
tbody tr:nth-child(even) td {
    background: var(--color-table-stripe);
}
tbody tr:last-child td { border-bottom: none; }

/* ---------- Payment Marquee ---------- */
.payment {
    background: var(--color-bg-alt);
    padding: 50px 0;
    overflow: hidden;
}
.payment h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}
.payment-track {
    display: flex;
    gap: 24px;
    animation: scrollPay 28s linear infinite;
    width: max-content;
}
.payment-logo {
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    height: 68px;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition);
}
.payment-logo:hover {
    transform: translateY(-3px);
}
.payment-logo img {
    max-height: 42px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/* dark pill for logos that have WHITE text/elements on transparent backgrounds */
.payment-logo.is-dark {
    background: #1a2b48;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
@keyframes scrollPay {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 820px;
    margin: 0 auto;
}
.faq details {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq details[open] {
    border-color: rgba(255, 203, 5, 0.4);
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    color: var(--color-primary);
    font-size: 1.4rem;
    transition: transform var(--transition);
    line-height: 1;
}
.faq details[open] summary::after {
    content: "−";
}
.faq .answer {
    padding: 0 22px 18px;
    color: var(--color-muted);
}
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, #1f2c47 0%, #0f1a2e 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(255, 203, 5, 0.15), transparent 60%);
    pointer-events: none;
}
.cta-banner h2, .cta-banner p { position: relative; }
.cta-banner h2 { margin-bottom: 0.5rem; }
.cta-banner p { color: var(--color-muted); margin-bottom: 1.5rem; }

/* ---------- Trust Row ---------- */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 2rem;
}
.trust-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
}
.trust-item .icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.trust-item h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}
.trust-item p {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ---------- Author Block ---------- */
.author {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    gap: 22px;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
}
.author-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
    padding: 3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--color-card);
}
.author h3 { color: #fff; margin-bottom: 4px; font-size: 1.1rem; }
.author .author-role { color: var(--color-primary); font-size: 0.85rem; margin-bottom: 8px; }
.author p { color: var(--color-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Page Header (sub pages) ---------- */
.page-head {
    padding: 90px 0 50px;
    text-align: center;
    background:
        radial-gradient(900px 500px at 50% 0%, rgba(255, 203, 5, 0.1), transparent 60%),
        var(--color-bg);
}
.page-head h1 { margin-bottom: 1rem; }
.page-head .lead {
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 1.5rem;
}
.read-meta {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* ---------- Prose Section (long content pages) ---------- */
.prose {
    max-width: 880px;
    margin: 0 auto;
}
.prose h2 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 14px;
}
.prose h3 {
    margin-top: 1.6rem;
    color: var(--color-primary);
}
.prose p, .prose li {
    color: var(--color-text);
}
.prose ul, .prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.prose .note {
    background: rgba(255, 203, 5, 0.08);
    border-left: 3px solid var(--color-primary);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--color-text);
    margin: 1.2rem 0;
}
.prose-image {
    margin: 1.8rem auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: var(--color-card);
}
.prose-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Sticky WhatsApp ---------- */
.sticky-wa {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 60;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition);
}
.sticky-wa:hover { transform: scale(1.08); color: #fff; }
.sticky-wa svg { width: 30px; height: 30px; }

/* ---------- Responsible Gaming Strip ---------- */
.responsible {
    background: var(--color-bg-alt);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}
.responsible h3 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.responsible-logos a,
.responsible-logos .rg-logo {
    background: #fff;
    border-radius: 12px;
    padding: 14px 22px;
    height: 84px;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition);
}
.responsible-logos a:hover,
.responsible-logos .rg-logo:hover {
    transform: translateY(-3px);
}
.responsible-logos img {
    max-height: 56px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #060b16;
    padding: 50px 0 24px;
    border-top: 1px solid var(--color-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}
.footer-grid h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 1rem;
}
.footer-grid p, .footer-grid li {
    color: var(--color-muted);
    font-size: 0.9rem;
}
.footer-grid ul {
    list-style: none;
    margin: 0;
}
.footer-grid a {
    color: var(--color-muted);
    transition: color var(--transition);
}
.footer-grid a:hover { color: var(--color-primary); }
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.85rem;
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    section { padding: 50px 0; }
    .hero { padding: 60px 0 50px; }
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 22px;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-cta .btn { padding: 10px 18px; font-size: 0.9rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .author { flex-direction: column; text-align: center; }
    .cta-banner { padding: 36px 22px; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.45rem; }
}
