@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Bebas+Neue&display=swap");

:root {
    --primary: #f5c518;
    --secondary: #2a2a2a;
    --dark: #1a1a1a;
    --darker: #0f0f0f;
    --light: #d4d4d4;
    --muted: #a1a1aa;
    --card: rgba(26, 26, 26, 0.85);
    --card-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 1.25rem;
    --radius-md: 0.75rem;
    --shadow-lg: 0 20px 45px -20px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif !important;
    background-color: var(--dark) !important;
    color: var(--light) !important;
    line-height: 1.7;
    scroll-behavior: smooth;
}

img {
    border-radius: var(--radius-md);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

.heading-font {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
}

.navbar {
    backdrop-filter: blur(12px);
    background-color: rgba(26, 26, 26, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.nav-link {
    color: var(--light);
}

.nav-link.active {
    color: var(--primary);
}

.contact-button {
    color: #0a0a0a;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

.mobile-link {
    color: var(--light);
}

.mobile-link.active {
    background-color: rgba(245, 197, 24, 0.15);
    color: var(--primary);
}

.page-hero,
.hero-gradient {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(10, 10, 10, 0.92));
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(245, 197, 24, 0.9);
}

.info-card,
.glass-card,
.highlight-card,
.card,
.cta-block {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-block {
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
}

.cta-block strong {
    color: var(--primary);
}

.affiliate-cta {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem;
    margin: 2.5rem auto;
    max-width: 980px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.affiliate-cta__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.affiliate-cta__eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(245, 197, 24, 0.8);
    margin-bottom: 0.5rem;
}

.affiliate-cta__headline {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.affiliate-cta__copy {
    color: #d1d5db;
    margin-bottom: 1.25rem;
}

.affiliate-cta__list {
    margin: 0 0 1rem 1.25rem;
    color: #d1d5db;
    list-style: disc;
}

.affiliate-cta__alt {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.affiliate-cta__disclosure {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.affiliate-disclosure-line {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 1rem 0 1.5rem;
}

@media (min-width: 768px) {
    .affiliate-cta {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    }
}

.toc {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    color: #e5e5e5;
}

.button-primary,
.btn-primary {
    background: linear-gradient(90deg, #f5c518, #f59e0b);
    color: #0a0a0a;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button-secondary,
.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}

/* Tailwind utility overrides for consistent theme */
.bg-white {
    background-color: #0f0f0f !important;
}

.bg-gray-50 {
    background-color: #111111 !important;
}

.bg-gray-100,
.bg-gray-200 {
    background-color: #151515 !important;
}

.bg-gray-800,
.bg-gray-900 {
    background-color: #0b0b0b !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.text-gray-900,
.text-gray-800 {
    color: #f5f5f5 !important;
}

.text-gray-700 {
    color: #d1d5db !important;
}

.text-gray-600 {
    color: #cbd5e1 !important;
}

.text-gray-500 {
    color: #a1a1aa !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.shadow-lg,
.shadow-xl,
.shadow-2xl {
    box-shadow: var(--shadow-lg) !important;
}

@media (max-width: 768px) {
    .cta-block {
        margin: 1.5rem 1rem;
    }
}
