/* 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; animation: fadeIn 0.3s ease; }
.tab-content.active { display: grid; }

@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;
}

