/* Color Variables */
:root {
    --primary-color: #6B8E23;
    --accent-color: #D4AF37;
    --text-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

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

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Typography */
h1 {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 24px !important;
    color: var(--text-dark) !important;
}

h2 {
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-top: 48px !important;
    margin-bottom: 24px !important;
    color: var(--primary-color) !important;
}

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

h3 i {
    color: var(--accent-color);
    margin-right: 8px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 16px 0 !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    list-style: none !important;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    display: none !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav {
    list-style: none !important;
}

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

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

.nav-item {
    list-style: none !important;
}

.nav-item::before,
.nav-item::after {
    display: none !important;
}

/* CTA Buttons */
.btn-cta {
    background-color: var(--accent-color) !important;
    color: var(--text-dark) !important;
    border: none !important;
    padding: 14px 28px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    text-align: center !important;
    min-width: 200px !important;
}

.btn-cta:hover {
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

/* Hero Section */
.hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    padding: 120px 0 !important;
    margin-bottom: 60px !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(107, 142, 35, 0.85), rgba(212, 175, 55, 0.75)) !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    color: var(--bg-white) !important;
}

.hero-content h1 {
    color: var(--bg-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-content p {
    color: var(--bg-white) !important;
    font-size: 20px !important;
    margin-bottom: 32px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Table of Contents */
.toc-section {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Content Sections */
.content-section {
    margin-bottom: 60px;
}

/* Cards */
.casino-card {
    background-color: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.casino-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.15);
    transform: translateY(-4px);
}

.game-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.tips-card {
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

ul li, ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.8;
    list-style: none !important;
}

ul li::marker, ol li::marker {
    display: none !important;
}

/* Custom check rose markers for ul */
ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

ul li::after {
    display: none !important;
}

/* Custom numbered markers for ol */
ol {
    counter-reset: custom-counter;
}

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

ol li::before {
    content: counter(custom-counter) '.';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

ol li::after {
    display: none !important;
}

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

picture img {
    margin: 24px 0;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin-bottom: 32px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

table th,
table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
    font-size: 18px;
}

table th {
    font-weight: 600;
}

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

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 48px 0 24px;
    margin-top: 80px;
}

footer h5 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer ul li {
    margin-bottom: 12px;
    padding-left: 0 !important;
    list-style: none !important;
}

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

footer a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 32px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

    .hero-section {
        padding: 80px 0 !important;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .btn-cta {
        font-size: 16px !important;
        padding: 12px 24px !important;
        min-width: 180px !important;
    }

    .toc-section {
        padding: 20px;
    }

    .casino-card,
    .game-card,
    .tips-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }

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

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

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

    p,
    ul li,
    ol li,
    table th,
    table td,
    .toc-list a,
    footer a {
        font-size: 16px;
    }

    .btn-cta {
        width: 100%;
        min-width: auto !important;
    }

    .hero-section {
        padding: 60px 0 !important;
    }
}
