/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Royal x Casino — Dark Casino Theme */
    --page-bg: #070a12;
    --white: #101828;
    --dark-card: #0e1524;
    --dark-border: rgba(212, 175, 55, 0.18);
    --dark: #070a12;
    --black: #04060c;

    --primary: #d4af37;
    --primary-light: #f0cf6a;
    --primary-dark: #b8912a;
    --primary-glow: rgba(212, 175, 55, 0.22);

    --green: #27ae60;
    --green-light: #2ecc71;
    --green-glow: rgba(46, 204, 113, 0.18);

    --red: #c0392b;
    --red-light: #e74c3c;

    --heading: #f5f0e1;
    --text: #c9cdd6;
    --muted: #8b93a3;
    --faint: #6b7383;

    --gold: var(--primary);
    --gold-light: var(--primary-light);
    --gold-dark: var(--primary-dark);
    --gold-glow: var(--primary-glow);

    --gray-light: var(--text);
    --gray: var(--muted);
    --gray-dark: var(--muted);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.4);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 72px 0; }

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
    padding: 5px 16px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.6vw, 2.8rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

.section-subtitle {
    font-size: 1.03rem;
    color: var(--muted);
    max-width: 660px;
    margin-bottom: 36px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #f0cf6a 0%, #d4af37 45%, #b8912a 100%);
    color: #1a1208;
    box-shadow: 0 4px 24px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #f7dd85 0%, #e2bd44 45%, #c99f30 100%);
    color: #1a1208;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary { background: transparent; color: var(--heading); border: 1.5px solid rgba(212, 175, 55, 0.45); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); background: rgba(212, 175, 55, 0.06); }

.btn-gold-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-gold-outline:hover { background: var(--primary); color: #1a1208; transform: translateY(-2px); box-shadow: 0 8px 28px var(--primary-glow); }

.btn-green { background: linear-gradient(135deg, #2ecc71, #1e8449); color: #ffffff; box-shadow: 0 4px 20px var(--green-glow); }
.btn-green:hover { background: linear-gradient(135deg, #34d97a, #23934f); color: #ffffff; transform: translateY(-2px); }

.btn-red { background: linear-gradient(135deg, #e74c3c, #922b21); color: #ffffff; box-shadow: 0 4px 20px rgba(231, 76, 60, 0.25); }
.btn-red:hover { background: linear-gradient(135deg, #ec5f50, #a93226); color: #ffffff; transform: translateY(-2px); }

.btn-sm { padding: 8px 22px; font-size: 0.78rem; }
.btn-lg { padding: 16px 40px; font-size: 1.02rem; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--page-bg); }
::-webkit-scrollbar-thumb { background: #2a3040; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(7, 10, 18, 0.95);
    border-bottom: 1px solid var(--dark-border);
}
/* Blur layer isolated on pseudo-element so child buttons/text stay sharp */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: transparent;
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.logo .crown { color: var(--primary); font-size: 1.3rem; text-shadow: 0 0 14px rgba(212, 175, 55, 0.6); }
.logo span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; flex-wrap: wrap; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text); transition: var(--transition); position: relative; white-space: nowrap; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a.active::after { width: 100%; }
.nav-links a.btn::after { display: none; }

.nav-links .btn { padding: 8px 20px; font-size: 0.78rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--heading); border-radius: 4px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(212, 175, 55, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(155, 28, 28, 0.12) 0%, transparent 50%),
        linear-gradient(160deg, #0a0f1c 0%, #070a12 55%, #0d0710 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 18% 45%, rgba(212, 175, 55, 0.10) 0%, transparent 58%),
        radial-gradient(ellipse at 82% 18%, rgba(192, 57, 43, 0.08) 0%, transparent 48%),
        radial-gradient(ellipse at 55% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 42%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container { position: relative; z-index: 1; }

.hero-page { min-height: auto; padding: 120px 0 56px; }
.hero-page h1 { font-family: var(--font-display); font-size: clamp(2.1rem, 4.8vw, 3.2rem); font-weight: 800; color: var(--heading); line-height: 1.12; margin-bottom: 14px; letter-spacing: -0.5px; }
.hero-page h1 .highlight { color: var(--primary); }
.hero-page p { font-size: 1.05rem; color: var(--muted); max-width: 680px; }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-sm);
    padding: 6px 18px 6px 10px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green-light); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; box-shadow: 0 0 10px var(--green-light); }

@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.4vw, 4.1rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.06;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.12));
    border-radius: 4px;
}

.hero p { font-size: 1.08rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--dark-border); flex-wrap: wrap; }
.hero-stats .stat-number { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--heading); }
.hero-stats .stat-number .gold { color: var(--primary); }
.hero-stats .stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.hero-stats .stat-item { text-align: center; }

/* ===== HERO / SECTION IMAGES ===== */
.hero-visual { position: relative; }
.hero-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(212, 175, 55, 0.12);
    transform: rotate(1.5deg);
    transition: var(--transition);
}
.hero-img-frame:hover { transform: rotate(0deg) scale(1.02); }
.hero-img-frame img { width: 100%; display: block; }
.hero-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 10, 18, 0.75) 100%);
    pointer-events: none;
}
.hero-img-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7, 10, 18, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
}

.img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow);
    margin: 22px 0;
}
.img-frame img { width: 100%; display: block; transition: var(--transition); }
.img-frame:hover img { transform: scale(1.03); }

.screenshot-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 26px 0; }
.screenshot-row figure {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: var(--shadow-sm);
    background: var(--dark-card);
    transition: var(--transition);
}
.screenshot-row figure:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.55); box-shadow: var(--shadow); }
.screenshot-row img { width: 100%; height: 210px; object-fit: cover; }
.screenshot-row figcaption {
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--heading);
    text-align: center;
    border-top: 1px solid var(--dark-border);
}

.phone-mockup {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.14);
}
.phone-mockup img { width: 100%; display: block; }

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: center;
}
.about-grid .phone-mockup { max-width: 280px; }

/* ===== CARDS / GRIDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 16px; }

.card {
    background: linear-gradient(160deg, #111a2c 0%, #0c1220 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), transparent);
    opacity: 0;
    transition: var(--transition);
}
.card:hover { border-color: rgba(212, 175, 55, 0.55); transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .icon { font-size: 2.3rem; margin-bottom: 12px; display: block; filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35)); }
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.card p { font-size: 0.85rem; color: var(--muted); }
.card .glow { position: absolute; top: -40%; right: -40%; width: 120px; height: 120px; background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent); border-radius: 50%; pointer-events: none; }

.card.game-card { padding: 0; cursor: pointer; }
.card.game-card .game-thumb { width: 100%; height: 170px; object-fit: cover; display: block; border-bottom: 1px solid var(--dark-border); }
.card.game-card .card-body { padding: 18px 16px 22px; }

/* ===== SECTION BANDS ===== */
.section-dark {
    background:
        radial-gradient(ellipse at 90% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
        var(--dark-card);
}
.section-black { background: var(--page-bg); }

/* ===== ARTICLE / BLOG CONTENT ===== */
.article-wrap { max-width: 860px; margin: 0 auto; }
.article-wrap a { color: var(--primary); font-weight: 600; }
.article-wrap a:hover { color: var(--primary-light); text-decoration: underline; }
.article-wrap h2 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3.2vw, 2.1rem);
    font-weight: 800;
    color: var(--heading);
    margin: 44px 0 14px;
    padding-top: 12px;
    scroll-margin-top: 100px;
    letter-spacing: -0.4px;
}
.article-wrap h2 .highlight { color: var(--primary); }
.article-wrap h3 { font-size: 1.25rem; font-weight: 700; color: var(--heading); margin: 28px 0 10px; }
.article-wrap h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 20px 0 8px; }
.article-wrap p { font-size: 0.98rem; color: var(--text); margin-bottom: 16px; }
.article-wrap ul, .article-wrap ol { margin: 0 0 18px 22px; }
.article-wrap li { font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.article-wrap li strong { color: var(--heading); }
.article-wrap strong { color: var(--heading); }
.article-wrap code { background: rgba(212, 175, 55, 0.1); border: 1px solid var(--dark-border); color: var(--primary-light); padding: 2px 8px; border-radius: 6px; font-size: 0.85em; }

.callout {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    margin: 22px 0;
}
.callout.tip { border-left-color: var(--green-light); }
.callout.tip .callout-title { color: var(--green-light); }
.callout.warn { border-left-color: var(--red-light); }
.callout.warn .callout-title { color: var(--red-light); }
.callout .callout-title { font-weight: 700; color: var(--primary); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.callout p { margin-bottom: 0; font-size: 0.92rem; }

.step-list { counter-reset: step; list-style: none; margin-left: 0 !important; }
.step-list > li {
    counter-increment: step;
    position: relative;
    padding: 16px 18px 16px 62px;
    background: #0d1424;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.step-list > li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0cf6a, #b8912a);
    color: #1a1208;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-list > li strong { color: var(--heading); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.pros-cons .pc-block { background: #0d1424; border: 1px solid var(--dark-border); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); }
.pros-cons .pc-block h4 { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 1rem; color: var(--heading); }
.pros-cons .pc-pros { border-top: 3px solid var(--green-light); }
.pros-cons .pc-pros h4 { color: var(--green-light); }
.pros-cons .pc-cons { border-top: 3px solid var(--red-light); }
.pros-cons .pc-cons h4 { color: var(--red-light); }
.pros-cons ul { list-style: none; margin: 0; }
.pros-cons li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.9rem; color: var(--text); }
.pros-cons li::before { position: absolute; left: 0; font-weight: 800; }
.pros-cons .pc-pros li::before { content: '✓'; color: var(--green-light); }
.pros-cons .pc-cons li::before { content: '✕'; color: var(--red-light); }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; margin: 22px 0; }
table.site-table { width: 100%; border-collapse: collapse; background: #0d1424; border-radius: var(--radius-sm); overflow: hidden; min-width: 520px; box-shadow: var(--shadow-sm); border: 1px solid var(--dark-border); }
.site-table th { background: linear-gradient(135deg, #b8912a, #8a6d1c); color: #1a1208; font-weight: 700; text-align: left; padding: 13px 16px; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.4px; }
.site-table td { padding: 12px 16px; border-top: 1px solid rgba(212, 175, 55, 0.1); font-size: 0.88rem; color: var(--text); }
.site-table tr:nth-child(even) td { background: rgba(212, 175, 55, 0.03); }
.site-table td .yes, .site-table td strong { color: var(--heading); }
.site-table td .yes { color: var(--green-light); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #0d1424; border: 1px solid var(--dark-border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.faq-item:hover { border-color: rgba(212, 175, 55, 0.45); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--heading);
    transition: var(--transition);
    gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-question .icon { flex-shrink: 0; color: var(--primary); font-size: 1.1rem; transition: var(--transition); }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text); line-height: 1.8; margin-bottom: 8px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-card { background: #0d1424; border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-card h3 { color: var(--heading); font-size: 1.15rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.contact-card h3 .icon { color: var(--primary); }
.contact-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.1); font-size: 0.92rem; color: var(--text); }
.contact-row:last-child { border-bottom: none; }
.contact-row strong { color: var(--heading); }
.contact-row .icon { color: var(--primary); width: 22px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--heading); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #0a1120;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    color: var(--heading);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }

/* ===== FOOTER ===== */
.footer { background: #05080f; border-top: 2px solid var(--primary); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 300px; }
.footer-brand .socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-brand .socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-brand .socials a:hover { background: var(--primary); color: #1a1208; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px var(--primary-glow); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: var(--muted); transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--muted);
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal a { color: var(--muted); transition: var(--transition); }
.footer-bottom .legal a:hover { color: var(--primary); }

.responsible-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--dark-border);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 40px;
    font-size: 0.7rem;
    color: var(--muted);
}
.responsible-badge .icon { color: var(--green-light); }

.age-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--muted);
    padding: 5px 16px;
    border: 1px solid var(--dark-border);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
}
.age-notice .icon { color: var(--red-light); font-size: 0.8rem; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 92px 0 18px; background: #0a0f1c; font-size: 0.8rem; color: var(--muted); border-bottom: 1px solid var(--dark-border); }
.breadcrumbs a { color: var(--text); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 8px; color: var(--faint); }
.breadcrumbs .current { color: var(--primary); font-weight: 600; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== PAYMENT BADGES ===== */
.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--dark-border);
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
}
.pay-badge.green i, .pay-badge.green { color: var(--green-light); }
.pay-badge.red i, .pay-badge.red { color: var(--red-light); }

/* ===== 404 ===== */
.error-wrap { max-width: 560px; margin: 0 auto; text-align: center; padding: 40px 0 20px; }
.error-code { font-size: clamp(5rem, 18vw, 9rem); font-weight: 800; line-height: 1; color: var(--primary); opacity: 0.25; font-family: var(--font-display); margin-bottom: 8px; }
.error-wrap h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--heading); margin-bottom: 12px; font-weight: 800; }
.error-wrap p { color: var(--muted); margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
    .pros-cons { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-grid .phone-mockup { max-width: 240px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 72%;
        max-width: 300px;
        height: 100vh;
        background: #0a0f1c;
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 32px 32px;
        gap: 18px;
        transition: var(--transition);
        border-left: 1px solid var(--dark-border);
        overflow-y: auto;
        box-shadow: var(--shadow);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; z-index: 1001; }
    .hero { min-height: auto; padding: 110px 0 60px; }
    .section-padding { padding: 52px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom .legal { justify-content: center; }
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
    .card-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.15rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; letter-spacing: 0.3px; }
    .section-title { font-size: 1.7rem; }
    .container { padding: 0 16px; }
    .step-list > li { padding-left: 56px; }
    .screenshot-row { grid-template-columns: 1fr; }
    .screenshot-row img { height: auto; }
    .hero-img-frame { transform: none; }
    .hero-img-tag { font-size: 0.62rem; padding: 5px 12px; }
    .phone-mockup { max-width: 220px; }
    .hero-stats { gap: 22px; }
    .hero-stats .stat-number { font-size: 1.5rem; }
}
