/* Design System: The Apex */
:root {
    --bg-dark: #020403;
    --bg-card: #0d1a16;
    --gold-primary: #d4af37;
    --gold-gradient: linear-gradient(135deg, #fceabb 0%, #d4af37 50%, #9c7e1e 100%);
    --neon-green: #00ff88;
    --neon-red: #ff3366;
    --accent-orange: #ff7f50;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #e2e8f0;
    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(13, 26, 22, 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(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 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(212, 175, 55, 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 { display: none !important; animation: fadeIn 0.3s ease; }
.tab-content.active.grid { display: grid !important; }
.tab-content.active:not(.grid) { display: block !important; }

@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: #1f4b3a; 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: #e2e8f0;
}

.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: #e2e8f0;
}

.seo-text-content ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.seo-text-content li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #e2e8f0;
}

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

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

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

.seo-feature-card {
    background: rgba(21, 64, 50, 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: #9ca3af;
}

/* Payment Methods Grid */
.payment-methods-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(21, 64, 50, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.payment-methods-title {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

@media (min-width: 1024px) {
    .payment-methods-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.payment-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    min-height: 48px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.payment-method-item img {
    max-width: 100%;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-payment-methods img {
    height: 22px;
    width: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem;
    padding: 0.25rem 0.375rem;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-payment-methods img:hover {
    opacity: 1;
}

/* Game Providers Grid */
.providers-section {
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: rgba(21, 64, 50, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.providers-title {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.providers-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1.25rem;
}

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

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

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

.provider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    padding: 0.75rem;
    min-height: 56px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.provider-item img {
    max-width: 100%;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

