/* SL24 Casino - Custom Styles */
/* Primary: Royal Blue #4169E1, Accent: Champagne Gold #D4AF37 */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #4169E1;
    --primary-dark: #2850c8;
    --accent-color: #D4AF37;
    --accent-light: #e6c970;
    --text-dark: #1a1a2e;
    --text-light: #f8f9fa;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: var(--text-dark) !important;
    background-color: var(--bg-light) !important;
}

/* Navigation */
.nav-menu {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

.nav-menu li::before,
.nav-menu li::after {
    display: none !important;
    content: none !important;
}

.nav-menu a {
    text-decoration: none !important;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.nav-menu a:hover {
    color: var(--accent-color) !important;
}

/* Footer Navigation */
.footer-nav {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-nav li {
    margin-bottom: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-nav a:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    min-height: 500px !important;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(65, 105, 225, 0.85) 100%) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.hero-section h1 {
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
}

.hero-section p {
    font-size: 1.125rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8 !important;
}

/* Section Headings */
h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
}

h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
}

/* Content Lists */
.content-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

.content-list li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.0625rem !important;
    line-height: 1.7 !important;
}

.content-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.6rem !important;
    width: 8px !important;
    height: 8px !important;
    background-color: var(--accent-color) !important;
    border-radius: 50% !important;
}

/* Tables */
.table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 1.5rem 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.styled-table {
    width: 100% !important;
    min-width: 600px !important;
    border-collapse: collapse !important;
    background: #fff !important;
}

.styled-table thead {
    background: var(--primary-color) !important;
}

.styled-table th {
    padding: 1rem 1.25rem !important;
    text-align: left !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
}

.styled-table td {
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 1rem !important;
}

.styled-table tbody tr:hover {
    background-color: rgba(65, 105, 225, 0.05) !important;
}

.styled-table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Cards */
.content-card {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 2rem !important;
}

/* Conversion Buttons */
.cta-button {
    display: inline-block !important;
    background: var(--accent-color) !important;
    color: var(--text-dark) !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.cta-button:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px) !important;
}

.cta-button-secondary {
    display: inline-block !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.cta-button-secondary:hover {
    background: var(--primary-dark) !important;
}

/* Table of Contents */
.toc {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%) !important;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 1.5rem 2rem !important;
    margin: 2rem 0 !important;
}

.toc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    counter-reset: toc-counter !important;
}

.toc-list li {
    counter-increment: toc-counter !important;
    margin-bottom: 0.75rem !important;
    padding-left: 0 !important;
}

.toc-list li::before {
    display: none !important;
}

.toc-list a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1.0625rem !important;
    transition: color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.toc-list a:hover {
    color: var(--primary-color) !important;
}

.toc-list a::before {
    content: counter(toc-counter) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
}

/* Images */
.content-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 1.5rem 0 !important;
}

/* Icons */
.icon {
    color: var(--primary-color) !important;
    font-size: 1.25rem !important;
}

.icon-accent {
    color: var(--accent-color) !important;
}

/* Footer */
.site-footer {
    background: var(--bg-dark) !important;
    color: var(--text-light) !important;
    padding: 3rem 0 1.5rem !important;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9375rem !important;
}

.site-footer h4 {
    color: #fff !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.625rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    .content-card {
        padding: 1.25rem !important;
    }

    .styled-table th,
    .styled-table td {
        padding: 0.75rem 1rem !important;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--bg-dark) !important;
        flex-direction: column !important;
        padding: 1rem !important;
        gap: 0 !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }

    .nav-menu li:last-child {
        border-bottom: none !important;
    }

    .header-cta {
        display: none !important;
    }
}

/* Logo no shadow */
.site-logo {
    box-shadow: none !important;
}
