/* Import Onest Font */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-silver: #c0c0c0;
    --primary-dark: #2d3748;
    --accent-emerald: #10b981;
    --accent-emerald-dark: #059669;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 18px;
    overflow-x: hidden;
}

/* Reset default list styles */
ul, ol {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

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

/* Header and Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    width: 45px;
    height: 45px;
    box-shadow: none !important;
}

.brand-name {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    margin: 0 !important;
}

.brand-casino {
    color: var(--accent-emerald) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--accent-emerald);
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}

/* Navigation */
nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none !important;
}

nav ul::before,
nav ul::after {
    display: none !important;
}

nav li {
    list-style: none !important;
}

nav li::before,
nav li::after,
nav li::marker {
    display: none !important;
    content: none !important;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-emerald);
}

.cta-button {
    background-color: var(--accent-emerald) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: background-color 0.3s ease !important;
    text-align: center !important;
    display: inline-block !important;
}

.cta-button:hover {
    background-color: var(--accent-emerald-dark) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    color: white !important;
    padding: 80px 20px !important;
    text-align: center !important;
}

.hero-section h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
    color: white !important;
}

.hero-section p {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-cta {
    background-color: var(--accent-emerald) !important;
    color: white !important;
    padding: 16px 40px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 15px !important;
    transition: background-color 0.3s ease !important;
    white-space: nowrap !important;
}

.hero-cta:hover {
    background-color: var(--accent-emerald-dark) !important;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-child(even) {
    background-color: var(--bg-white);
}

/* Headings */
h1 {
    font-size: 44px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
    border-left: 5px solid var(--accent-emerald);
    padding-left: 20px !important;
}

h3 {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-top: 35px !important;
    margin-bottom: 18px !important;
    line-height: 1.4 !important;
}

/* Paragraphs */
p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Content Lists */
section ul,
section ol {
    margin: 25px 0;
    padding-left: 0;
}

section ul li,
section ol li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: var(--text-gray);
    list-style: none !important;
}

section ul li::before {
    content: '' !important;
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--accent-emerald);
}

section ul li::marker {
    display: none !important;
}

section ol {
    counter-reset: custom-counter;
}

section ol li {
    counter-increment: custom-counter;
}

section ol li::before {
    content: counter(custom-counter) !important;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--accent-emerald);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

section ol li::marker {
    display: none !important;
}

/* Images */
picture {
    display: block;
    margin: 30px 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    min-width: 600px;
}

thead {
    background-color: var(--accent-emerald);
    color: white;
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 17px;
}

td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 17px;
}

tbody tr:hover {
    background-color: var(--bg-light);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Cards */
.card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-emerald);
}

.card h3 {
    margin-top: 0 !important;
}

/* FAQ Section */
.faq-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    color: var(--accent-emerald);
    margin-top: 0 !important;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: #e2e8f0;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 20px !important;
}

.footer-section ul {
    list-style: none !important;
}

.footer-section ul::before,
.footer-section ul::after {
    display: none !important;
}

.footer-section li {
    margin-bottom: 12px;
    list-style: none !important;
}

.footer-section li::before,
.footer-section li::after,
.footer-section li::marker {
    display: none !important;
    content: none !important;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-emerald);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0 !important;
    font-size: 16px;
}

.footer-bottom p {
    color: #cbd5e0 !important;
}

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 10px;
    }

    .cta-button {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero-section {
        padding: 50px 20px !important;
    }

    .hero-section h1 {
        font-size: 32px !important;
    }

    .hero-section p {
        font-size: 18px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 17px;
    }

    .brand-name {
        font-size: 22px !important;
    }

    .logo-container img {
        width: 35px;
        height: 35px;
    }

    .hero-section h1 {
        font-size: 28px !important;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }
}
