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

:root {
    --bg-main: #1a0a3e;
    --bg-card: #2d1566;
    --bg-card-hover: #3d1f8a;
    --bg-surface: #240e55;
    --yellow: #ffe14d;
    --yellow-dark: #f5a623;
    --orange: #ff6b35;
    --pink: #ff3c8e;
    --cyan: #00e5ff;
    --green: #39e75f;
    --purple-light: #b388ff;
    --red: #ff4757;
    --text: #fff;
    --text-muted: #c9a8ff;
    --text-dim: #8b6abf;
    --border: rgba(255, 255, 255, 0.1);
    --border-fun: rgba(255, 225, 77, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-card: 0 6px 0 rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(255, 225, 77, 0.2);
}

body {
    font-family: 'Fredoka', 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-main);
    background-image:
        radial-gradient(ellipse 120% 80% at 20% 10%, rgba(255, 60, 142, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 90%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* ===== Background Decorations ===== */
.bg-decorations { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.bg-star {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.15;
    animation: twinkle 3s ease-in-out infinite;
}
.bg-star-1 { top: 10%; left: 5%; animation-delay: 0s; }
.bg-star-2 { top: 30%; right: 8%; width: 14px; height: 14px; animation-delay: 1s; }
.bg-star-3 { bottom: 20%; left: 12%; width: 18px; height: 18px; animation-delay: 2s; }

.bg-coin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2), 0 0 20px rgba(255, 225, 77, 0.15);
    opacity: 0.12;
    animation: float 6s ease-in-out infinite;
}
.bg-coin::after {
    content: '$';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: rgba(0,0,0,0.3);
}
.bg-coin-1 { top: 15%; right: 15%; animation-delay: 0s; }
.bg-coin-2 { bottom: 25%; left: 20%; width: 30px; height: 30px; animation-delay: 3s; }
.bg-coin-2::after { font-size: 14px; }

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.3); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

/* ===== Header ===== */
.site-header {
    background: linear-gradient(180deg, rgba(45, 21, 102, 0.95) 0%, rgba(26, 10, 62, 0.9) 100%);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 4px 20px rgba(255, 225, 77, 0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-logo {
    font-family: 'Lilita One', cursive;
    font-size: 1.5rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--orange), 4px 4px 0 rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
    transition: transform 0.2s;
}
.site-logo:hover { transform: scale(1.05) rotate(-1deg); color: var(--yellow); }
.site-nav { display: flex; gap: 6px; }
.site-nav a {
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.25s;
}
.site-nav a:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 60, 142, 0.4);
}

/* ===== Main ===== */
.site-main { padding: 32px 0 48px; min-height: 60vh; position: relative; z-index: 1; }
.site-main h1 {
    font-family: 'Lilita One', cursive;
    margin-bottom: 24px;
    font-size: 2rem;
    color: var(--yellow);
    text-shadow: 2px 3px 0 rgba(0,0,0,0.3);
    letter-spacing: 0.01em;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-surface);
    border-top: 3px solid var(--border-fun);
    color: var(--text-dim);
    padding: 28px 0;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}
.footer-links { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); margin: 0 12px; }
.footer-links a:hover { color: var(--yellow); }

/* ===== Alphabet Filter ===== */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 28px;
    padding: 16px;
    background: var(--bg-card);
    border: 2px solid var(--border-fun);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}
.alphabet-label {
    font-weight: 700;
    margin-right: 10px;
    line-height: 34px;
    color: var(--yellow);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.alphabet-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 2px solid transparent;
    transition: all 0.2s;
}
.alphabet-filter a:hover,
.alphabet-filter a.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--yellow);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}
.alphabet-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--text-dim);
    opacity: 0.35;
}

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

/* ===== Slot Card ===== */
.slot-card {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.slot-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--pink), var(--cyan), var(--yellow));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.slot-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 0 rgba(0,0,0,0.3), 0 0 40px rgba(255, 60, 142, 0.3);
    border-color: transparent;
}
.slot-card:hover::before { 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;
    transition: transform 0.3s;
}
.slot-card:hover .slot-card-img { transform: scale(1.08) rotate(1deg); }
.slot-card-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
}
.slot-card-title {
    padding: 10px 12px 4px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slot-card-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.slot-card-rtp {
    color: var(--green);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(57, 231, 95, 0.4);
}

/* ===== 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(--bg-card);
    border: 2px solid var(--border);
    padding: 16px 18px;
    border-radius: var(--radius);
    color: inherit;
    box-shadow: var(--shadow-card);
    transition: all 0.25s;
}
.provider-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 0 rgba(0,0,0,0.3), 0 0 20px rgba(0, 229, 255, 0.2);
}
.provider-card h3 { font-size: 0.95rem; margin: 0; color: #fff; }
.provider-count { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }

/* ===== Top Providers (Home) ===== */
.top-providers { margin-top: 40px; }
.top-providers h2 {
    font-family: 'Lilita One', cursive;
    margin-bottom: 16px;
    color: var(--cyan);
    text-shadow: 1px 2px 0 rgba(0,0,0,0.3);
    font-size: 1.4rem;
}
.providers-list { display: flex; flex-wrap: wrap; gap: 10px; }
.provider-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 3px 0 rgba(0,0,0,0.25);
    transition: all 0.25s;
}
.provider-link:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--bg-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.3), 0 0 20px rgba(0, 229, 255, 0.3);
}
.provider-link:hover .provider-count { color: rgba(0,0,0,0.5); }

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: var(--bg-card);
    border: 2px solid var(--border);
    box-shadow: 0 3px 0 rgba(0,0,0,0.25);
    transition: all 0.2s;
}
.pagination-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}
.pagination-current {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    border-color: var(--yellow);
    box-shadow: 0 3px 0 rgba(0,0,0,0.3), 0 0 16px rgba(255, 107, 53, 0.4);
}
.pagination-dots { display: inline-flex; align-items: center; padding: 0 4px; color: var(--text-dim); }

/* ===== Slot Page ===== */
.slot-page h1 {
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    color: var(--yellow);
    text-shadow: 2px 3px 0 var(--orange), 4px 5px 0 rgba(0,0,0,0.2);
}

/* 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: 3px solid var(--border-fun);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.slot-specs-wrap { flex: 1; min-width: 0; }

.slot-specs {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
}
.slot-specs th, .slot-specs td {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.88rem;
}
.slot-specs th {
    color: var(--text-muted);
    font-weight: 600;
    width: 40%;
    background: rgba(255,255,255,0.03);
    border-radius: 8px 0 0 8px;
}
.slot-specs td {
    color: #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    border-radius: 0 8px 8px 0;
}
.slot-specs a { color: var(--cyan); }
.slot-tags { margin-top: 14px; font-size: 0.85rem; color: var(--text-muted); }
.tag {
    display: inline-block;
    padding: 4px 12px;
    margin: 3px;
    background: linear-gradient(135deg, rgba(255, 60, 142, 0.2), rgba(0, 229, 255, 0.15));
    border: 1px solid rgba(255, 60, 142, 0.25);
    border-radius: 25px;
    font-size: 0.78rem;
    color: var(--pink);
    font-weight: 600;
}

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

.demo-banner {
    position: relative;
    width: 100%;
    padding-bottom: 45%;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--border-fun);
    box-shadow: var(--shadow-card);
}
.demo-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 10, 62, 0.88) 0%, rgba(45, 21, 102, 0.7) 40%, rgba(255, 60, 142, 0.15) 100%);
}
.demo-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    z-index: 1;
}
.demo-banner-content h2 {
    font-family: 'Lilita One', cursive;
    color: var(--yellow);
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-shadow: 2px 3px 0 var(--orange), 4px 5px 0 rgba(0,0,0,0.3);
}
.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 32px;
    border-radius: 30px;
    font-family: 'Fredoka', cursive;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-3px) scale(1.05); }

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--bg-main);
    box-shadow: 0 5px 0 #c77800, 0 0 30px rgba(255, 225, 77, 0.3);
    font-size: 1.1rem;
    padding: 16px 42px;
    border: 3px solid var(--yellow);
}
.btn-primary:hover {
    box-shadow: 0 7px 0 #c77800, 0 0 50px rgba(255, 225, 77, 0.5);
    color: var(--bg-main);
}
.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c77800;
}

.btn-demo {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 3px solid var(--cyan);
    box-shadow: 0 4px 0 rgba(0, 180, 200, 0.5);
}
.btn-demo:hover {
    background: var(--cyan);
    color: var(--bg-main);
    box-shadow: 0 6px 0 rgba(0, 180, 200, 0.6), 0 0 30px rgba(0, 229, 255, 0.4);
}

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

/* ===== Slot Review ===== */
.slot-review {
    margin-top: 36px;
    background: var(--bg-card);
    border: 2px solid var(--border-fun);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow-card);
    position: relative;
}
.slot-review::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--cyan));
    border-radius: var(--radius) var(--radius) 0 0;
}
.slot-review h2 {
    font-family: 'Lilita One', cursive;
    font-size: 1.25rem;
    margin: 28px 0 12px;
    color: var(--yellow);
    text-shadow: 1px 2px 0 rgba(0,0,0,0.2);
}
.slot-review h2:first-child { margin-top: 0; }
.slot-review h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 8px;
    color: var(--cyan);
}
.slot-review p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
}
.slot-review ul, .slot-review ol {
    margin: 12px 0;
    padding-left: 24px;
    color: rgba(255,255,255,0.88);
}
.slot-review li { margin-bottom: 6px; }
.slot-review li::marker { color: var(--yellow); }
.slot-review table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
    margin: 16px 0;
}
.slot-review table th,
.slot-review table td {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.88rem;
}
.slot-review table th {
    color: var(--yellow);
    font-weight: 700;
    background: rgba(255, 225, 77, 0.08);
}
.slot-review table th:first-child { border-radius: 8px 0 0 8px; }
.slot-review table th:last-child { border-radius: 0 8px 8px 0; }
.slot-review table td {
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.03);
}
.slot-review table td:first-child { border-radius: 8px 0 0 8px; }
.slot-review table td:last-child { border-radius: 0 8px 8px 0; }

/* ===== Related Slots ===== */
.related-slots { margin-top: 44px; }
.related-slots h2 {
    font-family: 'Lilita One', cursive;
    margin-bottom: 20px;
    color: var(--pink);
    text-shadow: 1px 2px 0 rgba(0,0,0,0.3);
    font-size: 1.4rem;
}

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

/* ===== 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.9rem; }
    .btn-primary { padding: 14px 28px; font-size: 1rem; }
    .slot-review { padding: 20px; }
    .site-main h1 { font-size: 1.5rem; }
    .bg-decorations { display: none; }
}
@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; }
}
/* Home page additional content sections - Improved spacing */
.home-intro-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 2rem 0;
    padding: 0 0.5rem;
}

.home-bottom-content {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.1);
}

.home-bottom-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #fff;
    font-family: 'Lilita One', cursive;
    text-shadow: 1px 2px 0 rgba(0,0,0,0.3);
}

.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;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    .home-bottom-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .home-bottom-content h2 {
        font-size: 1.3rem;
    }
}

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

/* FAQ Section with Schema.org markup - Accordion style */
.home-faq {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 16px;
    border: 3px solid #ffb6c1;
}

.home-faq h2 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
    color: #ff6b6b;
    text-align: center;
    font-family: 'Lilita One', cursive;
    text-shadow: 2px 2px 0 #ffe4e1;
}

.faq-item {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.1);
    border: 2px solid #ffe4e1;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.15);
}

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

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b6b;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #fff5f5;
}

.faq-question[aria-expanded="true"] {
    background: #ffe4e1;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ff6b6b;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
    font-family: 'Fredoka', sans-serif;
}

.faq-answer-wrapper {
    padding: 0 1.5rem 1.25rem 1.5rem;
    animation: faqFadeIn 0.3s ease;
}

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

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

.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.95rem;
    }
    .faq-answer-wrapper {
        padding: 0 1rem 0.875rem 1rem;
    }
}

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

.provider-bottom-content {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.1);
}

.provider-bottom-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #fff;
    font-family: 'Lilita One', cursive;
    text-shadow: 1px 2px 0 rgba(0,0,0,0.3);
}

.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;
        padding: 0;
    }
    .provider-bottom-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .provider-bottom-content h2 {
        font-size: 1.3rem;
    }
    .provider-faq {
        margin-top: 2rem;
    }
}

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