/* Design System: The Apex */
:root {
    --bg-dark: #050810;
    --bg-card: #101c28;
    --gold-primary: #c9a84c;
    --gold-gradient: linear-gradient(135deg, #f5e4b8 0%, #c9a84c 50%, #8a7528 100%);
    --neon-green: #14d99a;
    --neon-red: #e83d6a;
    --accent-orange: #f97345;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #e0e7ef;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, .font-fantasy { font-family: 'Cinzel', serif; }

/* Advanced Glassmorphism */
.glass-panel {
    background: rgba(16, 28, 40, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glass-panel:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

/* Live RTP Pulsing Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.dot-green { background: var(--neon-green); }
.dot-green::after { background: var(--neon-green); }
.dot-red { background: var(--neon-red); }
.dot-red::after { background: var(--neon-red); }

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.8);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* Text Gradients */
.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tab Transition */
.tab-content:not(.active) {
    display: none !important;
}
.tab-content.active {
    display: grid;
    animation: fadeIn 0.3s ease;
}
.tab-content.active.tab-content-single {
    display: block;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #1e4558; border-radius: 10px; }

/* SEO Text Block Styles */
.seo-text-block {
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
}

.seo-text-content {
    max-width: none;
    color: #e0e7ef;
}

.seo-text-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.3;
}

.seo-text-content h2:first-child {
    margin-top: 0;
}

.seo-text-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
}

.seo-text-content p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #e0e7ef;
}

.seo-text-content ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
}

.seo-text-content ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
    counter-reset: seo-ol;
}

.seo-text-content ul li,
.seo-text-content ol li {
    position: relative;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    line-height: 1.7;
    color: #e0e7ef;
}

.seo-text-content ul li {
    padding-left: 1.25rem;
}

.seo-text-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.seo-text-content ol li {
    padding-left: 2.25rem;
    counter-increment: seo-ol;
}

.seo-text-content ol li::before {
    content: counter(seo-ol);
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.seo-text-content div:has(> table) {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 28, 40, 0.5);
    -webkit-overflow-scrolling: touch;
}

.seo-text-content table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.seo-text-content thead {
    background: rgba(26, 61, 82, 0.65);
}

.seo-text-content th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid rgba(201, 168, 76, 0.3);
    white-space: nowrap;
}

.seo-text-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #e0e7ef;
    vertical-align: middle;
}

.seo-text-content tbody tr:last-child td {
    border-bottom: none;
}

.seo-text-content tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.seo-text-content tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.seo-text-content tbody tr:last-child {
    background: rgba(201, 168, 76, 0.08);
}

.seo-text-content tbody tr:last-child td {
    font-weight: 600;
}

.seo-text-content strong {
    color: var(--gold-primary);
    font-weight: 700;
}

.seo-text-content em {
    font-style: italic;
    color: #c9d2de;
}

.seo-features-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.seo-feature-card {
    background: rgba(26, 61, 82, 0.4);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
}

.seo-feature-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.seo-feature-text {
    font-size: 0.625rem;
    color: #94a0b0;
}

/* Payment Methods */
.payment-methods-section {
    margin-top: 0;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .payment-methods-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.payment-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 88px;
    padding: 1rem 0.75rem;
    background: rgba(16, 28, 40, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.payment-method-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(26, 61, 82, 0.45);
    transform: translateY(-2px);
}

.payment-method-logo {
    height: 28px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.payment-method-logo.is-brand {
    height: 32px;
    max-width: 96px;
    filter: none;
    opacity: 1;
}

.payment-method-name {
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a0b0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

/* Game Providers */
.providers-section {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .providers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.provider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.625rem 0.75rem;
    background: rgba(16, 28, 40, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.provider-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(26, 61, 82, 0.45);
    transform: translateY(-2px);
}

.provider-logo {
    width: 100%;
    max-width: 120px;
    height: 32px;
    object-fit: contain;
}

