:root {
    --primary-color: #8F6400;
    --accent-color: #D6E93A;
    --text-dark: #2F2500;
    --text-light: #6E5A1C;
    --bg-light: #FFFBE8;
    --white: #FFFFFF;
    --gray-border: #F1E2A8;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate-modal {
    background-color: var(--white);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    max-width: 560px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    border: 1px solid rgba(241, 226, 168, 0.8);
}

.age-gate-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.age-gate-text {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
}

.age-gate-subtext {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #F7C948 0%, #D6E93A 100%);
    color: #4A3600;
    box-shadow: 0 14px 30px rgba(214, 233, 58, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F0BE2D 0%, #C8DD2F 100%);
}

.btn-secondary {
    background-color: var(--gray-border);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #CBD5E1;
}

.legal-top-bar {
    background-color: #D32F2F;
    color: var(--white);
    text-align: center;
    padding: 5px 0;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.site-logo img {
    width: 42px;
    height: 42px;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-text span {
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hero-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at top left, rgba(255, 239, 120, 0.95) 0%, rgba(255, 239, 120, 0) 38%),
        linear-gradient(135deg, #FFFDF1 0%, #FFF7BF 48%, #F5FFB8 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-meta {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(177, 142, 22, 0.18);
}

.editorial-section,
.insights-section,
.criteria-section,
.longform-section {
    padding: 60px 0;
}

.editorial-grid,
.insights-grid,
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.insights-grid,
.criteria-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.editorial-card,
.insight-card,
.criteria-card,
.longform-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,252,237,0.98) 100%);
    border: 1px solid var(--gray-border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(201, 165, 46, 0.08);
}

.editorial-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 249, 214, 0.9);
    border: 1px solid rgba(241, 226, 168, 0.9);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.editorial-card h2,
.insight-card h3,
.criteria-card h3,
.longform-card h2 {
    color: var(--primary-color);
    margin-bottom: 14px;
}

.editorial-card p + p,
.longform-card p + p {
    margin-top: 14px;
}

.longform-section {
    background: var(--bg-light);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 250, 214, 0.9);
    border: 1px solid rgba(241, 226, 168, 0.9);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.platforms-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.platform-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,252,237,0.98) 100%);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 40px rgba(201, 165, 46, 0.08);
}

.card-logo {
    height: 72px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 251, 232, 0.9);
    border: 1px solid rgba(241, 226, 168, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.card-rating {
    margin-bottom: 15px;
}

.stars {
    color: #E0A100;
}

.rating-value {
    font-weight: bold;
    margin-left: 5px;
}

.card-payments {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-card-visit {
    background: linear-gradient(135deg, #F5D451 0%, #D6E93A 100%);
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 10px;
}

.btn-card-visit:hover {
    background: linear-gradient(135deg, #EDC83A 0%, #C9DE31 100%);
}

.btn-card-more {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
    padding: 9px;
}

.btn-card-more:hover {
    background-color: rgba(214, 233, 58, 0.16);
}

.detail-hero {
    padding: 70px 0 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 239, 120, 0.8) 0%, rgba(255, 239, 120, 0) 34%),
        linear-gradient(135deg, #FFFDF3 0%, #FFF7C5 45%, #F6FFBF 100%);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 34px;
    align-items: center;
}

.detail-hero-copy h1 {
    font-size: 2.7rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.detail-hero-copy p {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 760px;
}

.detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.detail-summary-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,251,232,0.96) 100%);
    border: 1px solid var(--gray-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 50px rgba(201, 165, 46, 0.12);
}

.detail-summary-logo {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(241, 226, 168, 0.9);
    margin-bottom: 18px;
}

.detail-summary-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.detail-rating strong {
    font-size: 1.5rem;
}

.detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.detail-meta div {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 249, 214, 0.82);
    border: 1px solid rgba(241, 226, 168, 0.85);
}

.detail-meta span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-section {
    padding: 56px 0;
}

.detail-section.alt {
    background: var(--bg-light);
}

.detail-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.detail-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,252,237,0.98) 100%);
    border: 1px solid var(--gray-border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(201, 165, 46, 0.08);
}

.detail-card h2,
.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.detail-card p + p {
    margin-top: 12px;
}

.detail-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.detail-list li {
    padding-left: 18px;
    position: relative;
    color: var(--text-light);
}

.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F3CC49 0%, #D6E93A 100%);
}

.detail-table-wrapper {
    overflow-x: auto;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
}

.detail-table th,
.detail-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gray-border);
}

.detail-table th {
    background: linear-gradient(135deg, #D8AE28 0%, #B8860B 100%);
    color: #FFFDF6;
}

.detail-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.advantages-section {
    padding: 60px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    background-color: #FFFDF3;
}

.advantage-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.table-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-border);
}

.comparison-table th {
    background: linear-gradient(135deg, #D8AE28 0%, #B8860B 100%);
    color: #FFFDF6;
}

.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    border: 1px solid var(--gray-border);
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFCEF 100%);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F4CC4C 0%, #D7E83A 100%);
    color: #5A4300;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
}

.regulators-section {
    padding: 30px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    background: linear-gradient(135deg, #5A4300 0%, #7A5A05 52%, #94710C 100%);
}

.regulators-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.regulators-container a {
    min-height: 96px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 232, 154, 0.28);
    background: rgba(47, 37, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(29, 21, 0, 0.22);
}

.regulators-container a:hover {
    transform: translateY(-2px);
    background: rgba(47, 37, 0, 0.54);
}

.regulators-container img {
    max-width: 100%;
    max-height: 54px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.08) contrast(1.08);
}

.responsible-block {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(135deg, #FFF8D7 0%, #F6FFCC 100%);
    border-left: 6px solid #E0B01D;
}

.responsible-block h2 {
    color: #9B7100;
    margin-bottom: 15px;
}

.responsible-block p {
    max-width: 800px;
    margin: 0 auto;
    color: #6C5715;
}

.site-footer {
    background-color: #111111;
    color: #AAAAAA;
    padding: 40px 0;
    font-size: 0.85rem;
}

.footer-legal-text {
    border-bottom: 1px solid #222222;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-legal-text strong {
    color: #DDDDDD;
}

.company-mention {
    margin-top: 10px;
    font-size: 0.8rem;
}

.footer-links {
    text-align: center;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        display: none;
    }
    .editorial-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .detail-hero-grid,
    .detail-grid-2,
    .detail-meta {
        grid-template-columns: 1fr;
    }
    .detail-hero-copy h1 {
        font-size: 2.1rem;
    }
}