/*!
Theme Name: Betlify-theme
Theme URI: http://pryvus.com/
Author: Pryvus
Author URI: http://pryvus.com/
Description: Custom light theme
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Betlify-theme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Unique Brand Identity - Deep purple/violet with gold accents */
    --primary-color: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-dark: #1a1a2e;
    --accent-gold: #f59e0b;
    --accent-coral: #f43f5e;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #faf5ff;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --rating-gold: #fbbf24;
    --success-green: #10b981;
    --urgency-red: #dc2626;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsible Gambling Top Banner */
.responsible-banner {
    background-color: #1a1a2e;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.responsible-banner__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-badge img {
    height: 40px;
    width: auto;
}

.responsible-banner__message {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    a {
        text-decoration: none;
        font-size: 16px;
    }
}

.responsible-banner__message strong {
    color: #fbbf24;
}

.responsible-banner__logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.responsible-banner__logos a {
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.responsible-banner__logos a:hover {
    opacity: 1;
}

.responsible-banner__logos img {
    height: 28px;
    width: auto;
}

.help-link {
    background-color: #dc2626;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.help-link:hover {
    background-color: #b91c1c;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d1b4e 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' 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");
    pointer-events: none;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero__title .primary {
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.hero__description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
}

.read-more-toggle {
    display: none;
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-section .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.filter-btn .icon {
    margin-right: 6px;
}

/* Collapsible Filter Toggle (Mobile) */
.filter-toggle {
    display: none;
    width: 100%;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}

.filter-toggle__icon {
    transition: transform 0.3s ease;
}

.filter-toggle.active .filter-toggle__icon {
    transform: rotate(180deg);
}

/* Main Content */
main {
    padding: 60px 0 0px;
}

.brands-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 32px;
    display: grid;
    grid-template-columns: 200px 1fr auto auto;
    gap: 32px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    /* transform: translateY(-4px); */
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); */
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.brand-offer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.offer-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.brand-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 20px;
    height: 20px;
}

.star svg {
    width: 100%;
    height: 100%;
    fill: var(--rating-gold);
}

.brand-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 160px;
}

.brand-cta p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: center;
    padding-top: 10px;
}

.cta-button {
    display: inline-block;
    /* background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%); */
    /* color: var(--white); */
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    /* transition: all 0.3s ease; */
    /* box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); */
}
/* 
.cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
} */

.brand-disclaimer {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Single Primary Badge */
.brand-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-badge--featured {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
    color: var(--white);
}

.brand-badge--no-wagering {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: var(--white);
}

.brand-badge--fast-payout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
}

.brand-badge--no-deposit {
    background: linear-gradient(135deg, var(--accent-coral) 0%, #e11d48 100%);
    color: var(--white);
}

.brand-card {
    position: relative;
    margin-top: 12px;
}

/* Subtle Offer Expiry */
.offer-expiry {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

.offer-expiry strong {
    color: var(--urgency-red);
}

/* Collapsible More Info Section */
.more-info-toggle {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.more-info-toggle:hover {
    color: var(--primary-hover);
}

.more-info-toggle__icon {
    transition: transform 0.3s ease;
}

.more-info-toggle.active .more-info-toggle__icon {
    transform: rotate(180deg);
}

/* Pros and Cons - Hidden by default */
.pros-cons {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 16px 0;
    background: var(--bg-light);
    margin: 0 -32px;
    padding: 20px 32px;
    border-radius: 0 0 12px 12px;
}

.pros-cons.expanded {
    display: grid;
}

.pros, .cons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-title, .cons-title {
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pros-title {
    color: var(--success-green);
}

.cons-title {
    color: var(--urgency-red);
}

.pros-list, .cons-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.pros-list li, .cons-list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--urgency-red);
    font-weight: bold;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.sticky-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.sticky-cta__text {
    font-size: 0.9rem;
}

.sticky-cta__text strong {
    color: var(--primary-color);
    display: block;
}

.sticky-cta__btn {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.6); }
}

/* Exit Intent Popup */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: popupSlide 0.3s ease-out;
}

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

.exit-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.exit-popup__close:hover {
    background: var(--border-color);
}

.exit-popup__header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.exit-popup__header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.exit-popup__header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.exit-popup__body {
    padding: 30px;
}

.exit-popup__offer {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px dashed var(--primary-color);
}

.exit-popup__offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.exit-popup__offer-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.exit-popup__cta {
    display: block;
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.exit-popup__cta:hover {
    transform: translateY(-2px);
}

.exit-popup__skip {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

/* Educational Content Section */
.education-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: 40px;
}

.education-section__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.education-section__title span {
    color: var(--primary-color);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.education-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.education-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.education-card__icon img {
    filter: brightness(0) invert(1);
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.education-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.education-card__text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.education-card__link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.education-card__link:hover {
    text-decoration: underline;
}

/* About/Text Content Section */
.content-section {
    background: var(--white);
    padding: 60px 0px;
    margin-top: 24px;
}

.content-section__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.content-section__title span {
    color: var(--primary-color);
}

.content-section__text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
}

.content-box__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-box__title img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%)
            invert(33%)
            sepia(92%)
            saturate(3578%)
            hue-rotate(258deg)
            brightness(97%)
            contrast(101%);
}

.content-box__list {
    list-style: none;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.content-box__list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.content-box__list li:last-child {
    border-bottom: none;
}

.content-box__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Responsible Gambling Section */
.responsible-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d1b4e 100%);
    padding: 60px 0;
    color: var(--white);
}

.responsible-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.responsible-section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.responsible-section__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.responsible-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: background 0.3s ease;
}

.responsible-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.responsible-card__icon {
    /* width: 50px;
    height: 50px;
    background: var(--accent-gold); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.responsible-card__icon img {
    height: 36px;
    width: auto;
    fill: var(--primary-dark);
}

.responsible-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.responsible-card__text {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.6;
}

.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-logos a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.responsible-logos a:hover {
    opacity: 1;
}

.responsible-logos img {
    height: 36px;
    width: auto;
}

.responsible-helpline {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.responsible-helpline__text {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.responsible-helpline__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 0px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 16px;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.8;
}

.menu-footer-menu-container .menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
    list-style: none;
}

.menu-footer-menu-container .menu a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.menu-footer-menu-container .menu a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.85rem;
}

.content__header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d1b4e 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

.page-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    position: relative;
}

.page-header__subtitle {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
}

.page-content {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.info-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}
.info-box__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-box__title svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}


.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin-top: 40px;
    text-align: center;
}
.page-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-cta__button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}
.page-content ul, .page-content ol {
    margin: 16px 0;
    padding-left: 32px;
}
.page-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}
.last-updated {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}
.help-cta {
    background: linear-gradient(135deg, var(--urgency-red) 0%, #b91c1c 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
    text-align: center;
}
.help-cta__button {
    display: inline-block;
    background: var(--white);
    color: var(--urgency-red);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    margin: 0 8px;
}
.help-cta__phone {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.warning-box {
    background: #fef2f2;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid var(--urgency-red);
}
.info-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.success-box {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid var(--success-green);
}
.page-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.page-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brand-card {
        grid-template-columns: 150px 1fr auto;
        gap: 24px;
    }

    .brand-cta {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    /* Compact Responsible Banner */
    .responsible-banner {
        padding: 8px 12px;
    }

    .responsible-banner .container {
        justify-content: center;
        text-align: center;
    }

    .responsible-banner__left {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .age-badge img {
        height: 28px;
    }

    .responsible-banner__message {
        font-size: 0.75rem;
        text-align: left;
    }

    .responsible-banner__logos {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .responsible-banner__logos img {
        height: 18px;
    }

    .help-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Compact Hero Section */
    header {
        padding: 30px 16px;
    }

    .hero__title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero__description {
        font-size: 0.85rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero__description.expanded {
        display: block;
        -webkit-line-clamp: unset;
    }

    .read-more-toggle {
        display: inline-block;
        margin-top: 8px;
        color: var(--accent-gold);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: underline;
    }

    /* Collapsible Filters */
    .filter-section {
        padding: 12px 0;
    }

    .filter-label {
        display: none;
    }

    .filter-toggle {
        display: flex;
    }

    .filter-buttons {
        display: none;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .filter-buttons.expanded {
        display: flex;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        text-align: left;
    }

    /* Compact Main Content */
    main {
        padding: 30px 0 100px;
    }

    .brands-list {
        gap: 16px;
    }

    .brand-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 16px;
    }

    .brand-logo,
    .brand-rating {
        justify-content: center;
    }

    .brand-logo img {
        max-height: 50px;
    }

    .brand-offer {
        align-items: center;
    }

    .offer-title {
        font-size: 1.1rem;
    }

    .rating-score {
        font-size: 1.5rem;
    }

    .cta-button {
        width: 100%;
        padding: 14px 24px;
    }

    .footer-logos {
        gap: 16px;
    }

    .footer-logo img {
        height: 32px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 16px;
        margin: 0 -16px;
    }

    .brand-badge {
        left: 16px;
    }

    .sticky-cta {
        display: block;
    }

    .education-section {
        padding: 40px 0;
        margin-top: 20px;
    }

    .education-section__title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .education-card {
        padding: 20px;
    }

    .brand-disclaimer {
        padding-top: 12px;
        font-size: 0.75rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-section__title {
        font-size: 1.4rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 24px;
    }

    .content-box {
        padding: 20px;
    }

    .responsible-section {
        padding: 40px 0;
    }

    .responsible-section__title {
        font-size: 1.5rem;
    }

    .responsible-section__subtitle {
        font-size: 0.95rem;
    }

    .responsible-grid {
        display: flex;
        flex-direction: column;
    }

    .responsible-card {
        padding: 16px;
    }

    .responsible-card__icon {
        width: 40px;
        height: 40px;
    }

    .responsible-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .responsible-logos {
        gap: 16px;
    }

    .responsible-logos img {
        height: 28px;
    }

    footer {
        margin-top: 40px;
        padding: 40px 0 20px;
    }
}
