/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #2c3e50 !important;
    background-color: #fafbfc !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

/* ===== NAVBAR STYLES ===== */
.navbar {
    background-color: midnightblue !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0 !important;
    z-index: 1000;
}

.navbar-brand {
    align-items: center !important;
}

.navbar-item {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-item:hover,
.navbar-item:focus {
    background-color: rgba(250, 128, 114, 0.2) !important;
    color: salmon !important;
}

.brand-logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 0.5rem 1rem !important;
}

.brand-logo img {
    display: block;
    box-shadow: none !important;
}

.brand-name {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: salmon !important;
    letter-spacing: -0.5px;
}

.navbar-burger {
    color: #ffffff !important;
}

.navbar-burger:hover {
    background-color: rgba(250, 128, 114, 0.2) !important;
}

/* Remove any markers or pseudo-elements from navbar */
.navbar-menu ul,
.navbar-start,
.navbar-end,
.navbar-item {
    list-style: none !important;
}

.navbar-menu ul::before,
.navbar-menu ul::after,
.navbar-start::before,
.navbar-start::after,
.navbar-end::before,
.navbar-end::after,
.navbar-item::before,
.navbar-item::after {
    display: none !important;
    content: none !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, midnightblue 0%, #2c5f7c 100%) !important;
    padding: 100px 0 80px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 52px;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 500px !important;
    height: 500px !important;
    background: rgba(250, 128, 114, 0.15) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
}

.hero-section::after {
    content: '' !important;
    position: absolute !important;
    bottom: -30% !important;
    left: -5% !important;
    width: 400px !important;
    height: 400px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
}

.hero-body {
    position: relative !important;
    z-index: 1 !important;
}

.hero-title {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-subtitle {
    color: #f0f4f8 !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
    margin-bottom: 32px !important;
    font-weight: 400 !important;
}

/* ===== BUTTONS ===== */
.button {
    font-family: 'Cabinet Grotesk', sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cta-button,
.button.is-primary {
    background-color: salmon !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(250, 128, 114, 0.4) !important;
}

.cta-button:hover,
.button.is-primary:hover {
    background-color: #ff7f66 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 128, 114, 0.5) !important;
}

.button.is-outlined {
    background-color: transparent !important;
    border: 2px solid midnightblue !important;
    color: midnightblue !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
}

.button.is-outlined:hover {
    background-color: midnightblue !important;
    color: #ffffff !important;
}

/* ===== TABLE OF CONTENTS BUTTONS ===== */
.toc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px 0;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 60px 0 !important;
}

.content-section {
    background-color: #ffffff;
}

.content-section:nth-of-type(even) {
    background-color: #f8f9fa;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cabinet Grotesk', sans-serif !important;
    font-weight: 700 !important;
    color: midnightblue !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
}

.section-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: midnightblue !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px;
    border-bottom: 3px solid salmon;
}

.subsection-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: midnightblue !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}

.card-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: salmon !important;
    margin-bottom: 15px !important;
}

p {
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    color: #2c3e50 !important;
}

strong {
    font-weight: 700 !important;
    color: midnightblue !important;
}

/* ===== LISTS ===== */
ul.styled-list,
ol.styled-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 25px 0 !important;
}

ul.styled-list li,
ol.styled-list li {
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 15px !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
}

ul.styled-list li::before {
    content: '◆' !important;
    position: absolute !important;
    left: 0 !important;
    color: salmon !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

ol.styled-list li::before {
    content: counter(list-item) ' ◆' !important;
    position: absolute !important;
    left: 0 !important;
    color: salmon !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

/* Reset default list markers */
ul.styled-list li::marker,
ol.styled-list li::marker {
    content: none !important;
    display: none !important;
}

/* ===== CARDS ===== */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-content {
    padding: 30px !important;
}

.casino-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.casino-card {
    border-left: 4px solid salmon;
}

.casino-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: midnightblue !important;
    margin-bottom: 12px !important;
}

.casino-name i {
    color: salmon !important;
    margin-right: 8px;
}

.slot-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.slot-type-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 3px solid salmon;
}

.examples {
    font-size: 16px !important;
    color: #5a6c7d !important;
    margin-top: 15px !important;
}

/* ===== TABLES ===== */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table {
    background-color: #ffffff !important;
    font-size: 17px !important;
}

.table thead {
    background-color: midnightblue !important;
}

.table thead th {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 16px !important;
    border: none !important;
}

.table tbody td {
    padding: 14px 16px !important;
    font-size: 17px !important;
    color: #2c3e50 !important;
}

.table.is-striped tbody tr:nth-child(even) {
    background-color: #f8f9fa !important;
}

/* ===== IMAGES ===== */
.image {
    margin: 20px 0;
}

.content-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
}

.full-width-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* ===== FOOTER ===== */
.footer {
    background-color: midnightblue !important;
    color: #ffffff !important;
    padding: 50px 0 30px 0 !important;
    margin-top: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand img {
    box-shadow: none !important;
}

.footer-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: salmon !important;
    margin-bottom: 20px !important;
}

.footer-text {
    color: #d1dce6 !important;
    font-size: 16px !important;
    margin-top: 10px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links li::marker {
    content: none !important;
    display: none !important;
}

.footer-links a {
    color: #d1dce6 !important;
    font-size: 16px !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: salmon !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #d1dce6 !important;
    font-size: 15px !important;
    margin: 0 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: midnightblue !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navbar-item {
        padding: 1rem 1.5rem !important;
    }

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

    .hero-title {
        font-size: 36px !important;
    }

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

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

    .subsection-title {
        font-size: 24px !important;
    }

    .casino-list,
    .slot-types-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 17px !important;
    }

    .hero-title {
        font-size: 30px !important;
    }

    .hero-subtitle {
        font-size: 17px !important;
    }

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

    .subsection-title {
        font-size: 22px !important;
    }

    p {
        font-size: 17px !important;
    }

    .toc-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .card-content {
        padding: 20px !important;
    }

    .table {
        font-size: 15px !important;
    }

    .table thead th,
    .table tbody td {
        padding: 10px !important;
        font-size: 15px !important;
    }

    .footer {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer .columns {
        display: flex;
        flex-direction: column;
    }

    .footer .column {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px 0 !important;
    }

    .hero-title {
        font-size: 26px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .section {
        padding: 40px 0 !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .subsection-title {
        font-size: 20px !important;
    }

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

    .cta-button {
        padding: 12px 24px !important;
        font-size: 16px !important;
    }
}

/* ===== ACCESSIBILITY ===== */
a:focus,
button:focus,
.button:focus {
    outline: 2px solid salmon;
    outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}
