:root {
    --bg-cream: #fdf8f3;
    --bg-white: #ffffff;
    --bg-light: #fff7f0;
    --bg-dark: #1a1a2e;
    --accent: #e8762a;
    --accent-hover: #d06520;
    --accent-light: #fff0e6;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;
    --border: #e8e4df;
    --card-shadow: 0 2px 16px rgba(26, 26, 46, 0.06);
    --card-shadow-hover: 0 8px 32px rgba(26, 26, 46, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-cream);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'DM Serif Display', serif;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== AGE VERIFICATION ========== */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}
.age-overlay.hidden {
    display: none;
}

.age-popup {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}
.age-popup-logo {
    width: 56px;
    margin-bottom: 20px;
}
.age-popup h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.age-popup p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}
.age-popup-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ========== BUTTONS ========== */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
}
.btn-main svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 118, 42, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
}
.header-logo img {
    height: 36px;
    width: 36px;
}
.header-logo:hover {
    color: var(--text-dark);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-main a {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}
.nav-main a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-main a:hover,
.nav-main a.active {
    color: var(--accent);
}
.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}
.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    font-family: 'DM Serif Display', serif;
    color: var(--text-dark);
}
.hero-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
}
.hero-card.accent {
    background: var(--accent);
    color: #fff;
}
.hero-card.accent .hero-card-value {
    color: #fff;
}
.hero-card.accent .hero-card-label {
    color: rgba(255, 255, 255, 0.8);
}

.hero-card-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.hero-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--bg-white);
}
.section .container,
.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-label {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ========== FEATURED BOOKMAKER ========== */
.bookmaker-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.bookmaker-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.bookmaker-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.bookmaker-info {
    flex: 1;
}
.bookmaker-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.bookmaker-offer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.bookmaker-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.bookmaker-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-body);
}
.bookmaker-feature svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    fill: #22c55e;
}

.bookmaker-right {
    text-align: center;
    flex-shrink: 0;
}
.bookmaker-rating {
    font-size: 2.8rem;
    font-family: 'DM Serif Display', serif;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.bookmaker-rating-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-item:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-light);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== STEPS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.step-item {
    position: relative;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
}

/* ========== GUIDE CARDS ========== */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.guide-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.guide-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}
.guide-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent-light), #fde0c8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
}
.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide-card-body {
    padding: 24px;
}
.guide-card-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.guide-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.guide-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.guide-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}
.guide-card-link:hover {
    color: var(--accent-hover);
}

/* ========== RESPONSIBLE GAMBLING ========== */
.responsible-section {
    padding: 48px 0;
    text-align: center;
}
.responsible-section h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}
.responsible-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.responsible-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0.7;
}
.responsible-logos a:hover {
    opacity: 1;
    transform: scale(1.05);
}
.responsible-logos a img {
    height: 32px;
    width: auto;
}
.responsible-logos a.dark-bg {
    background: var(--bg-dark);
    padding: 10px 18px;
    border-radius: 10px;
    opacity: 1;
}
.responsible-logos a.dark-bg:hover {
    background: #2a2a3e;
}

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0;
    text-align: center;
}
.cta-box {
    background: var(--accent);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}
.cta-box h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 36px;
    width: 36px;
}
.footer-logo span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-column h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-column ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}
.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-inner p {
    font-size: 0.85rem;
    flex: 1;
    margin: 0;
}
.cookie-inner a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    padding: 48px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.page-hero .breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    list-style: none;
    padding: 0;
}
.page-hero .breadcrumb a {
    color: var(--text-muted);
}
.page-hero .breadcrumb a:hover {
    color: var(--accent);
}
.page-hero .breadcrumb .separator {
    color: var(--border);
}
.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ========== LEGAL CONTENT ========== */
.article-content h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 12px;
}
.article-content h2:first-of-type { margin-top: 0; }
.article-content p { margin-bottom: 16px; }
.article-content a { color: var(--accent); text-decoration: underline; }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px;
}
.legal-content .last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}
.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 28px;
    margin-bottom: 12px;
}
.legal-content p {
    margin-bottom: 16px;
}
.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}
.legal-content li {
    margin-bottom: 8px;
}
.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 118, 42, 0.12);
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}
.contact-info-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== RESPONSIBLE GAMBLING PAGE ========== */
.rg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.rg-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}
.rg-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.rg-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.rg-card ul {
    padding-left: 20px;
}
.rg-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.org-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}
.org-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.org-card img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}
.org-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}
.org-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.org-card a {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 64px 24px;
}
.about-block {
    margin-bottom: 48px;
}
.about-block h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.about-block p {
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.about-value-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}
.about-value-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}
.about-value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== REVIEWS PAGE ========== */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.review-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.review-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    position: relative;
}
.review-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: -10px;
    left: 28px;
    background: var(--accent);
    color: #fff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}
.review-card-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.review-card-logo .placeholder-logo {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}
.review-card-info {
    flex: 1;
}
.review-card-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.review-card-info .offer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.review-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.review-card-tag {
    padding: 3px 10px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}
.review-card-right {
    text-align: center;
    flex-shrink: 0;
}
.review-card-rating {
    font-size: 2.2rem;
    font-family: 'DM Serif Display', serif;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.review-card-rating-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ========== PLACEHOLDER ========== */
.img-placeholder {
    background: linear-gradient(135deg, var(--accent-light), #fde0c8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius);
    min-height: 120px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .nav-main {
        display: none;
    }
    .nav-main.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .burger-menu {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero-stats {
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .bookmaker-card {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .rg-grid,
    .org-grid {
        grid-template-columns: 1fr;
    }
    .about-values {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex-direction: column;
        text-align: center;
    }
    .reviews-list {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-cards {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .guides-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 48px 0;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .age-popup {
        padding: 32px 24px;
    }
    .age-popup-buttons {
        flex-direction: column;
    }
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .responsible-logos {
        gap: 16px;
    }
    .responsible-logos a img {
        height: 24px;
    }
}
