/* --- CSS DESIGN SYSTEM: MYSTIC DARK GOLD --- */
:root {
    --bg-dark: #090e17;
    --bg-surface: #121a28;
    --bg-surface-alt: #182335;
    --primary-gold: #e5b842;
    --primary-gold-glow: rgba(229, 184, 66, 0.3);
    --primary-gold-dark: #b88f28;
    --accent-red: #ff4a5a;
    --accent-green: #2ecc71;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(229, 184, 66, 0.15);
    --border-color-light: rgba(255, 255, 255, 0.08);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* --- STRUCTURAL LAYOUT UTILITIES --- */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-section {
    padding: 100px 0;
    position: relative;
}

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

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.vertical-center {
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center-max {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color-light);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    height: 44px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

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

.nav-menu a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 8px var(--primary-gold-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 28px;
    height: 30px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background: radial-gradient(circle at 70% 30%, #152238 0%, var(--bg-dark) 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(229, 184, 66, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 184, 66, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- FRAMES & IMAGES --- */
.image-glowing-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(229, 184, 66, 0.15);
    border: 1px solid var(--border-color);
}

.premium-figure {
    width: 100%;
}

.figure-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

figcaption {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* --- SECTION HEADERS --- */
.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-gold-glow);
}

.align-left .accent-line {
    margin-left: 0;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 900px;
    margin-bottom: 40px;
}

/* --- PREMIUM TABLES --- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--bg-surface);
}

th, td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color-light);
}

th {
    background-color: var(--bg-surface-alt);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
}

tr:last-child td {
    border-bottom: none;
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 600;
}

.badge-status {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(229, 184, 66, 0.08);
    border: 1px solid rgba(229, 184, 66, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
}

/* --- ACCORDIONS & BLOCKS --- */
.premium-quote {
    margin: 28px 0;
    padding-left: 24px;
    border-left: 4px solid var(--primary-gold);
    font-style: italic;
    color: #e2e8f0;
}

.security-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.icon-pulse-gold {
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: goldPulse 3s infinite ease-in-out;
}

@keyframes goldPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(229, 184, 66, 0)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(229, 184, 66, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(229, 184, 66, 0)); }
}

.security-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.security-card p {
    color: var(--text-muted);
}

/* --- STEPS LAYOUT --- */
.premium-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-steps li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content {
    font-size: 1.05rem;
    color: var(--text-main);
    padding-top: 4px;
}

.alert-box {
    margin-top: 32px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.alert-warning {
    background: rgba(255, 74, 90, 0.08);
    border: 1px solid rgba(255, 74, 90, 0.25);
    color: #f8fafc;
}

.alert-warning svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

/* --- BONUS CARDS --- */
.bonus-highlight-card {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-grid-spacing {
    gap: 32px;
}

.list-card-premium {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-light);
    padding: 36px;
    border-radius: 12px;
}

.accent-border {
    border-color: var(--border-color);
    box-shadow: 0 10px 30px rgba(229, 184, 66, 0.03);
}

.list-card-premium h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 14px;
}

.styled-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.styled-bullet-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-main);
}

.styled-bullet-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.styled-bullet-list.alternate-color li::before {
    color: var(--accent-red);
}

/* --- GAME CATALOGUE GRID --- */
.grid-three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.game-type-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-light);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.game-type-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.game-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.game-type-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.game-type-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.game-footer-text {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color-light);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-muted);
}

/* --- LIVE & MOBILE COMBINED --- */
.horizontal-divider-glow {
    height: 1px;
    background: linear-gradient(90deg, rgba(229,184,66,0) 0%, rgba(229,184,66,0.3) 50%, rgba(229,184,66,0) 100%);
    margin: 80px 0;
}

.premium-info-container {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color-light);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.2);
}

/* --- OPERATION CARDS --- */
.macro-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.category-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-surface-alt);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.bullet-gold-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.operations-grid {
    margin-top: 56px;
}

.operation-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-light);
    padding: 36px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-gold);
}

.operation-card.border-alt-color {
    border-top-color: var(--accent-red);
}

.operation-card h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.styled-ordered-list {
    list-style: none;
    counter-reset: op-counter;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.styled-ordered-list li {
    counter-increment: op-counter;
    position: relative;
    padding-left: 32px;
}

.styled-ordered-list li::before {
    content: counter(op-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: rgba(255,255,255,0.06);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* --- RATINGS & PROS/CONS --- */
.valuation-table-container {
    margin-bottom: 56px;
}

.score-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.score-high {
    background: rgba(229, 184, 66, 0.1);
    color: var(--primary-gold);
    border-color: rgba(229, 184, 66, 0.3);
}

.score-highest {
    background: rgba(46, 204, 113, 0.1);
    color: var(--accent-green);
    border-color: rgba(46, 204, 113, 0.3);
}

.pros-cons-card {
    padding: 40px;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--border-color-light);
}

.pros-bg {
    background: linear-gradient(135deg, var(--bg-surface) 0%, #0d2318 100%);
}

.cons-bg {
    background: linear-gradient(135deg, var(--bg-surface) 0%, #281216 100%);
}

.card-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-badge {
    background-color: var(--accent-green);
    color: var(--bg-dark);
}

.con-badge {
    background-color: var(--accent-red);
    color: #ffffff;
}

.pros-cons-card h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.icon-checked-list, .icon-crossed-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.icon-checked-list li, .icon-crossed-list li {
    position: relative;
    padding-left: 28px;
}

.icon-checked-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.icon-crossed-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

/* --- USER PROFILES --- */
.profile-matching-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-light);
    padding: 40px;
    border-radius: 16px;
}

.match-yes {
    border-top: 4px solid var(--accent-green);
}

.match-no {
    border-top: 4px solid var(--accent-red);
}

.profile-matching-card h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
}

.profile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-list li {
    position: relative;
    padding-left: 28px;
}

.icon-yes li::before {
    content: "👍";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.icon-no li::before {
    content: "👎";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* --- RESPONSIBLE GAMING --- */
.responsible-gaming-bg {
    background: radial-gradient(circle at 50% 50%, var(--bg-surface-alt) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}

.premium-alert-block {
    background: rgba(9, 14, 23, 0.6);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 16px;
    margin-top: 24px;
    text-align: left;
}

.premium-alert-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.premium-alert-block p:last-child {
    margin-bottom: 0;
}

.highlight-paragraph {
    border-left: 3px solid var(--primary-gold);
    padding-left: 20px;
}

/* --- FINAL BOX --- */
.final-box-premium {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    font-size: 1.15rem;
    line-height: 1.75;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* --- ACCORDION CORE --- */
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.accordion-icon::before, .accordion-icon::after {
    content: "";
    position: absolute;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.accordion-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.accordion-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.accordion-item.active {
    border-color: var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.panel-inner {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 1rem;
}

.last-section-padding {
    padding-bottom: 140px;
}

/* --- FOOTER LAYOUT --- */
.site-footer {
    background-color: #05080d;
    border-top: 1px solid var(--border-color-light);
    padding: 80px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-disclaimer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links-block h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.footer-links-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-block a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-block a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color-light);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.eighteen-plus-badge {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.5rem; }
    .grid-three-cards { grid-template-columns: 1fr; gap: 20px; }
    .content-section { padding: 70px 0; }
}

@media (max-width: 768px) {
    .grid-two-columns { grid-template-columns: 1fr; gap: 36px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 450px; margin: 0 auto; }
    .invert-mobile .media-container { order: 2; }
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-surface);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .nav-menu.active { max-height: 400px; }
    .nav-menu ul { flex-direction: column; padding: 24px; gap: 16px; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .flex-between-center { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
}