/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --burgundy: #4a0e1c;
    --burgundy-light: #6b1a2e;
    --burgundy-deep: #2e0812;
    --felt-green: #1a5c3a;
    --felt-dark: #0f3a24;
    --gold: #d4a745;
    --gold-light: #f0d078;
    --gold-dark: #a07d2e;
    --cream: #f5e6c8;
    --warm-white: #faf0e0;
    --cherry: #c0392b;
    --cherry-light: #e74c3c;
    --text: #faf0e0;
    --text-muted: #c4a87a;
    --text-dim: #8a6f4a;
    --border: rgba(212, 167, 69, 0.2);
    --border-gold: rgba(212, 167, 69, 0.5);
    --radius: 8px;
    --radius-sm: 6px;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--burgundy);
    background-image:
        radial-gradient(ellipse 150% 100% at 50% 0%, var(--burgundy-light) 0%, transparent 60%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(26, 92, 58, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a745' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ===== Header with Marquee Lights ===== */
.site-header {
    background: linear-gradient(180deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Marquee lights — row of animated "bulbs" */
.header-marquee {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 4px 0;
    background: var(--burgundy-deep);
    overflow: hidden;
}
.header-marquee span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold), 0 0 12px rgba(212, 167, 69, 0.4);
    animation: marquee-blink 1.5s ease-in-out infinite alternate;
}
.header-marquee span:nth-child(even) { animation-delay: 0.75s; }
.header-marquee span:nth-child(3n) { background: var(--cherry); box-shadow: 0 0 6px var(--cherry), 0 0 12px rgba(192, 57, 43, 0.4); }
.header-marquee span:nth-child(5n) { background: var(--cream); box-shadow: 0 0 6px var(--cream), 0 0 12px rgba(245, 230, 200, 0.3); }

@keyframes marquee-blink {
    0% { opacity: 0.4; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.1); }
}

.header-marquee-bottom { border-bottom: 2px solid var(--border); }

.site-logo {
    font-family: 'Abril Fatface', serif;
    font-size: 1.6rem;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 20px rgba(212, 167, 69, 0.2);
    letter-spacing: 0.02em;
}
.site-logo:hover { color: var(--gold-light); }
.site-nav { display: flex; gap: 6px; }
.site-nav a {
    color: var(--cream);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.site-nav a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 167, 69, 0.08);
}

/* ===== Main ===== */
.site-main { padding: 36px 0 52px; min-height: 60vh; }
.site-main h1 {
    font-family: 'Abril Fatface', serif;
    margin-bottom: 28px;
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--burgundy-deep);
    border-top: 2px solid var(--border);
    color: var(--text-dim);
    padding: 28px 0;
    text-align: center;
    font-size: 0.82rem;
}
.footer-links { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); margin: 0 12px; }
.footer-links a:hover { color: var(--gold); }

/* ===== Alphabet Filter ===== */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 30px;
    padding: 14px 16px;
    background: var(--burgundy-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.alphabet-label {
    font-weight: 700;
    margin-right: 10px;
    line-height: 32px;
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.alphabet-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 5px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cream);
    background: rgba(255,255,255,0.04);
    transition: all 0.2s;
}
.alphabet-filter a:hover,
.alphabet-filter a.active {
    background: var(--cherry);
    color: #fff;
    box-shadow: 0 2px 10px rgba(192, 57, 43, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.alphabet-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.3;
}

/* ===== Slots Grid ===== */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

/* ===== Slot Card ===== */
.slot-card {
    background: var(--burgundy-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.slot-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 167, 69, 0.1);
}
.slot-card:hover::after { opacity: 1; }

.slot-card a { display: block; color: inherit; }
.slot-card a:hover { text-decoration: none; }
.slot-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.95);
    transition: all 0.4s;
}
.slot-card:hover .slot-card-img { filter: saturate(1.1) brightness(1.05); transform: scale(1.04); }
.slot-card-placeholder { width: 100%; aspect-ratio: 1; background: var(--burgundy); }
.slot-card-title {
    padding: 10px 12px 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slot-card-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 10px;
    font-size: 0.73rem;
    color: var(--text-muted);
}
.slot-card-rtp { color: var(--gold-light); font-weight: 700; }

/* ===== Providers Grid ===== */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}
.provider-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--burgundy-deep);
    border: 1px solid var(--border);
    padding: 16px 18px;
    border-radius: var(--radius);
    color: inherit;
    transition: all 0.25s;
}
.provider-card:hover {
    border-color: var(--gold);
    background: rgba(212, 167, 69, 0.05);
}
.provider-card h3 { font-size: 0.95rem; margin: 0; color: var(--cream); }
.provider-count { font-size: 0.78rem; color: var(--text-dim); white-space: nowrap; }

/* ===== Top Providers (Home) ===== */
.top-providers { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border); }
.top-providers h2 {
    font-family: 'Abril Fatface', serif;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 1.4rem;
}
.providers-list { display: flex; flex-wrap: wrap; gap: 8px; }
.provider-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--burgundy-deep);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
    transition: all 0.25s;
}
.provider-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 167, 69, 0.08);
}
.provider-link:hover .provider-count { color: var(--gold-dark); }

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; }
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    background: var(--burgundy-deep);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.pagination-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.pagination-current {
    background: var(--cherry);
    color: #fff;
    border-color: var(--cherry-light);
    box-shadow: 0 2px 12px rgba(192, 57, 43, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.pagination-dots { display: inline-flex; align-items: center; padding: 0 4px; color: var(--text-dim); }

/* ===== Slot Page ===== */
.slot-page h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Slot Info Row */
.slot-info-row {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-top: 24px;
}
.slot-info-row .slot-thumbnail {
    flex-shrink: 0;
    width: 280px;
}
.slot-info-row .slot-thumbnail img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    border: 2px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.slot-specs-wrap { flex: 1; min-width: 0; }

.slot-specs {
    width: 100%;
    border-collapse: collapse;
}
.slot-specs th, .slot-specs td {
    padding: 9px 10px;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.slot-specs th { color: var(--text-muted); font-weight: 500; width: 40%; }
.slot-specs td { color: var(--cream); font-weight: 600; }
.slot-specs a { color: var(--gold-light); }
.slot-tags { margin-top: 14px; font-size: 0.85rem; color: var(--text-muted); }
.tag {
    display: inline-block;
    padding: 3px 10px;
    margin: 3px;
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: 14px;
    font-size: 0.76rem;
    color: var(--cherry-light);
    font-weight: 600;
}

/* ===== Demo Banner ===== */
.demo-section { margin-top: 36px; }

.demo-banner {
    position: relative;
    width: 100%;
    padding-bottom: 44%;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--border-gold);
}
.demo-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(46, 8, 18, 0.92) 0%, rgba(74, 14, 28, 0.78) 50%, rgba(46, 8, 18, 0.92) 100%);
}
.demo-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    z-index: 1;
}
.demo-banner-content h2 {
    font-family: 'Abril Fatface', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.demo-banner-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(180deg, var(--cherry-light) 0%, var(--cherry) 100%);
    color: #fff;
    box-shadow: 0 4px 0 #8b1a12, 0 6px 20px rgba(192, 57, 43, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    font-size: 0.95rem;
    padding: 16px 42px;
}
.btn-primary:hover {
    box-shadow: 0 6px 0 #8b1a12, 0 8px 30px rgba(192, 57, 43, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    color: #fff;
}
.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #8b1a12, inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-demo {
    background: rgba(255,255,255,0.06);
    color: var(--cream);
    border: 2px solid var(--gold-dark);
}
.btn-demo:hover {
    background: rgba(212, 167, 69, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== Demo iframe ===== */
.demo-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    border: 2px solid var(--border-gold);
}
.demo-iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Slot Review ===== */
.slot-review {
    margin-top: 40px;
    background: var(--burgundy-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
}
.slot-review::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(212, 167, 69, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(192, 57, 43, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.slot-review h2 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.2rem;
    margin: 28px 0 14px;
    color: var(--gold);
}
.slot-review h2:first-child { margin-top: 0; }
.slot-review h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--cream);
}
.slot-review p {
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.8;
}
.slot-review ul, .slot-review ol {
    margin: 14px 0;
    padding-left: 22px;
    color: var(--text);
}
.slot-review li { margin-bottom: 6px; }
.slot-review li::marker { color: var(--cherry-light); }
.slot-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}
.slot-review table th,
.slot-review table td {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.slot-review table th {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.slot-review table td { color: var(--text); }

/* ===== Related Slots ===== */
.related-slots { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); }
.related-slots h2 {
    font-family: 'Abril Fatface', serif;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1.4rem;
}

/* ===== Provider Page ===== */
.provider-description { margin-bottom: 24px; color: var(--text-muted); line-height: 1.8; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .slot-info-row { flex-direction: column; }
    .slot-info-row .slot-thumbnail { width: 100%; max-width: 320px; }
    .slots-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .demo-banner { padding-bottom: 60%; }
    .demo-banner-content h2 { font-size: 1.3rem; }
    .btn { padding: 12px 24px; font-size: 0.82rem; }
    .btn-primary { padding: 14px 30px; font-size: 0.88rem; }
    .slot-review { padding: 22px; }
    .site-main h1 { font-size: 1.5rem; }
    .header-marquee { gap: 12px; }
}
@media (max-width: 480px) {
    .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .site-main h1 { font-size: 1.3rem; }
    .demo-banner { padding-bottom: 80%; }
    .demo-banner-buttons { flex-direction: column; gap: 10px; }
    .slot-review { padding: 16px; }
    .site-logo { font-size: 1.2rem; }
    .header-marquee span { width: 6px; height: 6px; }
    .header-marquee { gap: 10px; }
}
/* Home page additional content sections - Improved spacing */
.home-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 2rem 0;
    padding: 0;
}

.home-bottom-content {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(13,2,33,0.9) 0%, rgba(26,11,46,0.9) 100%);
    border: 1px solid var(--border);
    position: relative;
}

.home-bottom-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--accent), var(--gold), transparent);
}

.home-bottom-content h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: var(--gold);
    font-family: 'Abril Fatface', serif;
}

.home-bottom-content h2:first-child {
    margin-top: 0;
}

.home-bottom-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}

.home-bottom-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .home-intro-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .home-bottom-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .home-bottom-content h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .home-bottom-content {
        padding: 1rem;
    }
    .home-bottom-content h2 {
        font-size: 1.1rem;
    }
}

/* FAQ Section with Schema.org markup - Accordion style */
.home-faq {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(180deg, #0d0221 0%, #1a0b2e 100%);
    border-radius: 0;
    border: 3px solid #ff006e;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3), inset 0 0 30px rgba(255, 0, 110, 0.05);
    position: relative;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff006e, #00f5ff, #ff006e, transparent);
}

.home-faq h2 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
    color: #ff006e;
    text-align: center;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(13, 2, 33, 0.8);
    border: 2px solid #00f5ff;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff006e, #00f5ff, #ff006e);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: rgba(0, 245, 255, 0.1);
}

.faq-question[aria-expanded="true"] {
    background: rgba(0, 245, 255, 0.15);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #00f5ff;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.faq-answer-wrapper {
    padding: 0 1.5rem 1.25rem 1.5rem;
    animation: faqFadeIn 0.3s ease;
    position: relative;
    z-index: 1;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.faq-answer p {
    margin: 0 0 0.75rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .home-faq {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .home-faq h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    .faq-icon {
        font-size: 1.5rem;
    }
    .faq-answer-wrapper {
        padding: 0 1.25rem 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .home-faq {
        padding: 1rem;
        border-width: 2px;
    }
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    .faq-answer-wrapper {
        padding: 0 1rem 0.875rem 1rem;
    }
}

/* Provider page additional content sections */
.provider-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.provider-bottom-content {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(13,2,33,0.9) 0%, rgba(26,11,46,0.9) 100%);
    border: 1px solid var(--border);
    position: relative;
}

.provider-bottom-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--accent), var(--gold), transparent);
}

.provider-bottom-content h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: var(--gold);
    font-family: 'Abril Fatface', serif;
}

.provider-bottom-content h2:first-child {
    margin-top: 0;
}

.provider-bottom-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}

.provider-bottom-content p:last-child {
    margin-bottom: 0;
}

.provider-faq {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .provider-intro-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .provider-bottom-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .provider-bottom-content h2 {
        font-size: 1.2rem;
    }
    .provider-faq {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .provider-bottom-content {
        padding: 1rem;
    }
    .provider-bottom-content h2 {
        font-size: 1.1rem;
    }
}
