﻿/* ===== GLOBAL VARIABLES ===== */
:root {
    --bg-dark: #0f172a;
    --bg-darker: #0b1120;
    --bg-radial: radial-gradient(circle at 50% 0%, rgba(247, 147, 26, 0.15) 0%, transparent 50%);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --primary: #f7931a;
    --primary-glow: rgba(247, 147, 26, 0.4);
    --secondary: #818cf8;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --glass-bg: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(30, 41, 59, 0.9);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    background-image: var(--bg-radial);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

a:hover {
    color: var(--text-main);
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.cta-button:focus-visible,
.nav-menu-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.35);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 1200;
    background: #fff;
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}

.skip-link:focus {
    left: 12px;
}

.inline-link {
    text-decoration: underline;
    text-decoration-color: rgba(247, 147, 26, 0.5);
    text-underline-offset: 0.16em;
}

.inline-link-strong {
    color: var(--primary);
    font-weight: 700;
}

.inline-link-strong:hover {
    color: var(--text-main);
}


.text-primary {
    color: var(--primary);
}
.text-muted {
    color: var(--text-muted);
}

.section-cta-wrap {
    text-align: center;
    margin: 3rem 0;
}
/* ===== GLASSMORPHISM UTILITIES ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--glass-hover);
}

.alert-box {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.alert-box h4 {
    color: var(--warning);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.cta-button.primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.cta-button.primary:hover {
    background: var(--text-main);
    color: #000;
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: transparent;
    border-color: var(--glass-border);
    color: var(--text-main);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.cta-button.compact {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 80px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 0 5%;
}

.nav-shell {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
}

.crypto-icon {
    background: var(--primary);
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    white-space: nowrap;
}

.nav-menu-toggle {
    display: none;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.nav-menu-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-menu-icon {
    width: 16px;
    height: 2px;
    background: var(--text-main);
    position: relative;
    border-radius: 2px;
}

.nav-menu-icon::before,
.nav-menu-icon::after {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--text-main);
    position: absolute;
    left: 0;
    border-radius: 2px;
}

.nav-menu-icon::before {
    top: -5px;
}

.nav-menu-icon::after {
    top: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    min-height: 64vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5% 2.2rem;
    gap: 3rem;
}

.hero-content {
    flex: 1 1 640px;
}

.hero-visual {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: rgba(247, 147, 26, 0.1);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.1vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust-items {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem 1.3rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-index-card {
    text-align: center;
    box-shadow: 0 0 40px var(--primary-glow);
    width: min(100%, 320px);
}

.hero-index-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.hero-index-copy {
    color: var(--text-muted);
}

/* ===== SECTION HELPERS ===== */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.section-title-center {
    text-align: center;
}

.section-heading-accent {
    color: var(--primary) !important;
}

.disclosure-box {
    margin: 0 auto 1.5rem;
    max-width: 980px;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--primary);
    background: rgba(247, 147, 26, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.disclosure-box p {
    color: #c3d4e5;
    margin: 0;
    font-size: 0.96rem;
}

.table-wrapper {
    overflow-x: auto;
}

/* ===== TABLES ===== */
.casino-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.casino-table th,
.casino-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: top;
}

.casino-table th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
    font-weight: 600;
}

.casino-name {
    color: var(--text-main);
    font-size: 1.1rem;
}

.rank-badge {
    background: #ffd700;
    color: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 800;
    margin-right: 0.5rem;
}

.rank-silver {
    background: #c0c0c0;
}

.rank-bronze {
    background: #cd7f32;
}

.mini-note {
    color: var(--text-muted);
}

.mini-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-stars {
    color: var(--warning);
    letter-spacing: 0.04em;
}

/* ===== CONTENT ARTICLES ===== */
.content-wrapper {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

.content-wrapper h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.content-wrapper h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.content-wrapper p,
.text-block p {
    font-size: 1.1rem;
    color: #b0bdc9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-wrapper ul,
.text-block ul,
.content-wrapper ol,
.text-block ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
    color: #b0bdc9;
}

.content-wrapper li,
.text-block li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.text-block {
    margin-bottom: 2.5rem;
}

.step-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.4rem;
    border-radius: 10px;
    margin-bottom: 1.1rem;
}

.step-box h4 {
    margin-bottom: 0.6rem;
    color: var(--text-main);
    font-size: 1.15rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1rem 0 1rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.method-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
}

.method-card p {
    margin: 0;
    font-size: 0.98rem;
}

.muted-note {
    color: #8ea0b4;
    font-size: 0.92rem;
    margin-top: 0.6rem;
}

/* PROS CONS GRID */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pro-card {
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
}

.con-card {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
}

.pros-title {
    color: #00ff66;
}

.cons-title {
    color: #ff4444;
}

/* FAQ */
.faq-container {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1rem;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: #0b1120;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-title {
    color: #f7931a;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-risk {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 2rem;
}

.footer-legal {
    text-align: center;
    padding: 3rem 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-menu-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(11, 17, 32, 0.97);
        border-bottom: 1px solid var(--glass-border);
        padding: 1rem 5% 1.25rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-open .nav-panel {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-open {
        overflow: hidden;
    }

    .hero {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: 0;
        padding-top: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 1.8rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-items {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .casino-table {
        margin: 1.25rem 0;
        border: 0;
        background: transparent;
    }

    .casino-table thead {
        display: none;
    }

    .casino-table tbody {
        display: grid;
        gap: 1rem;
    }

    .casino-table tr {
        display: block;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 1rem;
    }

    .casino-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 0.45rem 0;
        border-bottom: 0;
        text-align: left;
    }

    .casino-table td::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-weight: 600;
        font-size: 0.9rem;
        min-width: 42%;
    }

    .casino-table td > * {
        flex: 1;
    }

    .casino-table td:last-child .cta-button {
        width: 100%;
    }

    .method-grid,
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .faq-item,
    .pro-card,
    .con-card {
        padding: 1.4rem;
    }
}


.text-body-muted {
    color: #b0bdc9;
}

.text-alert-red {
    color: #ff4444;
}

.text-alert-green {
    color: #00ff66;
}

.text-main-strong {
    color: var(--text-main);
    font-size: 1.1rem;
}

.table-scroll {
    overflow-x: auto;
}


