/* ============================================
   EA Bet Brasil - Master CSS
   Style 1: Luxury Gold Casino
   Version: 1.0
   ============================================ */

/* === CSS Variables === */
:root {
    /* Primary Colors - Luxury Gold */
    --color-gold: #D4AF37;
    --color-gold-bright: #FFD700;
    --color-gold-dark: #B8860B;
    --color-gold-light: #F5D76E;

    /* Base Colors */
    --color-black: #0A0A0A;
    --color-black-light: #1A1A1A;
    --color-black-lighter: #2A2A2A;
    --color-white: #FFFFFF;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #CCCCCC;
    --color-gray-400: #999999;
    --color-gray-500: #666666;
    --color-gray-600: #333333;

    /* Semantic Colors */
    --color-success: #28A745;
    --color-warning: #FFC107;
    --color-danger: #DC3545;
    --color-info: #17A2B8;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Cinzel', 'Georgia', serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 30px rgba(212, 175, 55, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1rem;

    /* Header */
    --header-height: 80px;
    --header-height-mobile: 60px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-white);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    color: var(--color-gray-200);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-bright);
}

strong, b {
    font-weight: 600;
    color: var(--color-white);
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    height: 60px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

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

/* Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* Mobile Navigation - Hidden by default */
.nav-mobile {
    display: none;
}

.nav-main a {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-main a:hover,
.nav-main a.active {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    margin: 5px 0;
    transition: all var(--transition-fast);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 40%,
        rgba(10, 10, 10, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding: var(--space-8) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-gold);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--color-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--color-gray-200);
    margin-bottom: var(--space-8);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* === Sections === */
.section {
    padding: var(--space-20) 0;
}

.section-dark {
    background: var(--color-black);
}

.section-darker {
    background: var(--color-black-light);
}

.section-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-gray-300);
}

/* === Cards === */
.card {
    background: var(--color-black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-body {
    padding: var(--space-6);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.card-text {
    font-size: var(--text-sm);
    color: var(--color-gray-300);
    margin-bottom: var(--space-4);
}

/* === Grid Layouts === */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* === Feature Blocks === */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-block:hover .feature-image::before {
    opacity: 0.5;
}

.feature-content h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.feature-content p {
    margin-bottom: var(--space-6);
}

/* === Tables === */
.table-wrapper {
    overflow-x: auto;
    margin: var(--space-6) 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-black-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table th,
.table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 1px;
}

.table tr:hover td {
    background: rgba(212, 175, 55, 0.05);
}

/* === Lists === */
.list-check {
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-3);
    color: var(--color-gray-200);
}

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

.list-warning li::before {
    content: '⚠';
    color: var(--color-warning);
}

.list-cross li::before {
    content: '✗';
    color: var(--color-danger);
}

/* === Badges === */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.badge-success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--color-success);
}

.badge-warning {
    background: rgba(255, 193, 7, 0.2);
    color: var(--color-warning);
}

.badge-danger {
    background: rgba(220, 53, 69, 0.2);
    color: var(--color-danger);
}

/* === Alerts === */
.alert {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    border-left: 4px solid;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--color-warning);
    color: var(--color-warning);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--color-danger);
    color: var(--color-danger);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    border-color: var(--color-info);
    color: var(--color-info);
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--color-success);
    color: var(--color-success);
}

/* === FAQ Accordion === */
.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: var(--color-black-light);
    border: none;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.faq-question::after {
    content: '+';
    font-size: var(--text-xl);
    color: var(--color-gold);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: var(--space-4) var(--space-6);
    max-height: 500px;
}

/* === Footer === */
.footer {
    background: var(--color-black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: var(--space-16);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
}

.footer-title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
}

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

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

.payment-methods img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
}

/* Responsible Gaming */
.responsible-gaming {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: var(--space-8);
}

.responsible-gaming img {
    height: 40px;
    width: auto;
}

.responsible-gaming p {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-4);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }

    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }

    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .nav-main {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-mobile {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 60px);
        height: calc(100dvh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: var(--space-6);
        display: none;
        flex-direction: column;
        gap: var(--space-2);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-mobile.active {
        display: flex;
    }

    .nav-mobile a {
        display: block;
        padding: var(--space-4);
        font-size: var(--text-lg);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        color: var(--color-gray-200);
        background: transparent;
    }

    .nav-mobile a:hover,
    .nav-mobile a:active {
        color: var(--color-gold);
        background: rgba(212, 175, 55, 0.1);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .payment-methods,
    .responsible-gaming {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* === Utilities === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-400); }

.bg-black { background: var(--color-black); }
.bg-dark { background: var(--color-black-light); }
.bg-gold { background: var(--color-gold); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fadeIn { animation: fadeIn 0.5s ease; }
.animate-slideUp { animation: slideUp 0.5s ease; }
.animate-pulse { animation: pulse 2s infinite; }

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* === Selection === */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* === Focus States (Accessibility) === */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* === Button Active State === */
.btn:active {
    transform: translateY(1px);
}

.btn-primary:active {
    box-shadow: var(--shadow-sm);
}

/* === Improved Card Hover === */
a.card {
    display: block;
    text-decoration: none;
}

a.card:hover .card-title {
    color: var(--color-gold-bright);
}

/* === Image Lazy Loading Animation === */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* === Better Table on Mobile === */
@media (max-width: 600px) {
    .table th,
    .table td {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }
}

/* === Improved Alert Links === */
.alert a {
    color: inherit;
    text-decoration: underline;
}

.alert a:hover {
    opacity: 0.8;
}

/* === Min Touch Target Size === */
@media (max-width: 768px) {
    .btn,
    .nav-mobile a,
    .faq-question {
        min-height: 48px;
    }
}

/* === Print Styles === */
@media print {
    .header,
    .footer,
    .btn,
    .nav-main {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
}
