/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #050608;          /* глубокий угольно-чёрный */
    --secondary-black: #101217;        /* тёмный графит */
    --accent-red: #f4c067;             /* теперь золото как основной акцент */
    --accent-red-hover: #ffd27f;       /* подсветка золота при наведении */
    --text-primary: #f9fafb;
    --text-secondary: #a1a1aa;
    --border-color: #252733;
    --success-green: #22c55e;
    --warning-yellow: #eab308;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(circle at top, #1a1c24 0%, #050608 55%, #020308 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Age Verification Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* по умолчанию скрыта, показываем только при активной модалке */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

body.modal-active .modal-overlay {
    display: flex;
}

.modal-content {
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.modal-header h2 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.responsible-gaming-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.responsible-gaming-text a {
    color: var(--accent-red);
    text-decoration: none;
}

.responsible-gaming-text a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, #f7e3b2 40%, var(--accent-red) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-red-hover) 0%, #fff0c3 40%, var(--accent-red-hover) 100%);
    transform: translateY(-2px) scale(1.01);
}

/* Mobile Header */
.mobile-header {
    display: none;
    background: var(--secondary-black);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Desktop Header (Navigation) */
.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-black);
    border-bottom: 1px solid var(--border-color);
    z-index: 950;
}

.desktop-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.desktop-nav li {
    margin: 0;
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent-red);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--secondary-black);
    z-index: 2000;
    transition: left 0.3s ease;
    border-right: 1px solid var(--border-color);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover {
    color: var(--accent-red);
}

.mobile-nav-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}

/* Sidebar Navigation (Desktop) */
.sidebar {
    display: none; /* sidebar больше не используется, навигация перенесена вверх */
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    text-decoration: none;
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--text-primary);
    background: rgba(220, 38, 38, 0.1);
    border-left-color: var(--accent-red);
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    margin: 90px 0 0; /* отступ под фиксированный верхний хедер на десктопе */
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: radial-gradient(circle at top left, rgba(244, 192, 103, 0.18), transparent 55%), 
                linear-gradient(135deg, #050608 0%, #101217 45%, #050608 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-notice {
    background: rgba(244, 192, 103, 0.06);
    border: 1px solid rgba(244, 192, 103, 0.35);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
}

.hero-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-notice a {
    color: var(--accent-red);
    text-decoration: none;
}

.hero-notice a:hover {
    text-decoration: underline;
}

/* Casinos Section */
.casinos-section {
    padding: 4rem 0;
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(244, 192, 103, 0.14), transparent 60%),
        linear-gradient(145deg, #050608 0%, #111827 55%, #020308 100%),
        url('images/High-end casino scene with deep charcoal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.casinos-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(15, 23, 42, 0.9));
}

.casinos-section .container {
    position: relative;
    z-index: 1;
}

/* Highlights Section */
.highlights-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-image:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98)),
        url('images/Premium casino artwork featuring.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.highlights-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: var(--text-primary);
}

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

.highlight-card {
    background: radial-gradient(circle at top, rgba(244, 192, 103, 0.08), transparent 55%), var(--secondary-black);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 1.75rem;
}

.highlight-card h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-red);
}

.highlight-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.casino-card {
    background: radial-gradient(circle at top, rgba(244, 192, 103, 0.09), transparent 55%), rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px -18px rgba(0, 0, 0, 0.9);
    border-color: rgba(244, 192, 103, 0.9);
}

.card-header {
    padding: 1.75rem 1.5rem 1.25rem;
    background: transparent;
    text-align: center;
}

.casino-logo {
    max-width: 260px;
    height: 100px;
    object-fit: contain;
    display: inline-block;
}

.card-body {
    padding: 1rem 1.5rem 1.25rem;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tagline {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.bonus-info {
    background: rgba(15, 23, 42, 0.96);
    border-left: 3px solid rgba(244, 192, 103, 0.85);
    padding: 0.75rem 1rem;
    margin: 0.75rem 0 0;
    border-radius: 0 10px 10px 0;
}

.bonus-info h4 {
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.bonus-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
}

.rating {
    display: flex;
    flex-direction: column;
}

.stars {
    font-weight: 600;
    color: var(--warning-yellow);
    font-size: 1.1rem;
}

.status {
    font-size: 0.9rem;
    color: var(--success-green);
    margin-top: 0.25rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background:
        radial-gradient(circle at top left, rgba(244, 192, 103, 0.12), transparent 55%),
        var(--secondary-black);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

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

.accordion-item {
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(244, 192, 103, 0.09);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-red);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.accordion-content.active {
    display: block;
}

.accordion-content ol,
.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

/* Responsible Gaming Section */
.responsible-section {
    padding: 4rem 0;
    position: relative;
    background-image:
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.99)),
        url('images/Luxury casino composition.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.responsible-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.content-block {
    background: radial-gradient(circle at top, rgba(244, 192, 103, 0.08), transparent 55%), rgba(15, 23, 42, 0.96);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.content-block h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background:
        radial-gradient(circle at top, rgba(244, 192, 103, 0.09), transparent 55%),
        var(--secondary-black);
    border-top: 1px solid var(--border-color);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.4rem;
    color: var(--text-primary);
}

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

.about-block {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.about-block h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-red);
}

.about-block p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Trust & Safety Banners */
.trust-badges {
    padding: 2.5rem 0 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    justify-items: center;
}

.trust-banner {
    width: 100%;
    max-width: 170px;
    aspect-ratio: 3 / 1;
    background: #020617;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.trust-banner-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* делаем логотипы светлыми/белыми на тёмном фоне */
    filter: brightness(0) invert(1);
}

.trust-banner-icon--no-filter {
    filter: none;
}

/* Visual Gallery Section */
.visual-gallery {
    padding: 4rem 0;
    background: radial-gradient(circle at top left, rgba(244, 192, 103, 0.22), transparent 55%), var(--primary-black);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.visual-gallery h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: var(--text-primary);
}

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

.visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--secondary-black);
}

.visual-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 40%);
    pointer-events: none;
}

.visual-card:hover img {
    transform: scale(1.05);
}

.visual-caption {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    color: var(--text-primary);
}

.visual-caption h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.visual-caption p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.content-block a {
    color: var(--accent-red);
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background:
        linear-gradient(180deg, #050608 0%, #050608 30%, #020308 100%);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-right: 0; /* футер теперь на всю ширину */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-red);
}

.responsible-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.responsible-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-black);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-black);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-red);
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }

    .desktop-header {
        display: none;
    }
    
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        margin-right: 0;
        margin-top: 60px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-section h2,
    .responsible-section h2,
    .about-section h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-block {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer {
        margin-right: 0; /* на мобильных футер на всю ширину */
    }

    .visual-card img {
        height: 200px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
    }

    .trust-banner {
        max-width: 200px;
    }

    .visual-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .about-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .about-section {
        padding: 2rem 0;
    }
    
    .about-block {
        padding: 1.25rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .responsible-links {
        flex-direction: column;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: var(--secondary-black);
}

.legal-page .container {
    max-width: 900px;
    padding: 3rem 20px;
}

.back-link {
    display: inline-block;
    color: var(--accent-red);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-red-hover);
}

.legal-page h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 1rem;
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-page h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-page p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-page a {
    color: var(--accent-red);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.important-notice {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.important-notice strong {
    color: var(--accent-red);
}

.emergency-callout {
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.emergency-callout h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.emergency-callout p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.important-reminder {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.important-reminder h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading state for modal */
body.modal-active {
    overflow: hidden;
}

body.modal-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
}