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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
}

/* Tailwind CSS Framework Fix */
.nav-menu li {
    margin-bottom: 0 !important;
}

/* Navigation Styles */
nav {
    background-color: #228b22;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
}

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

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffc107;
}

.nav-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background-color: #ffc107;
    color: #228b22;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: #ffc107;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(34, 139, 34, 0.7), rgba(34, 139, 34, 0.7)), url('schritt-fur-schritt-anleitung-zur-einzahlung_12952186880.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 120px 20px !important;
    text-align: center !important;
    color: #fff !important;
    min-height: 500px !important;
}

.hero h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.hero-text {
    font-size: 20px !important;
    max-width: 800px !important;
    margin: 0 auto 30px !important;
    color: #fff !important;
    line-height: 1.8 !important;
}

.hero-button {
    background-color: #ffc107 !important;
    color: #228b22 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    display: inline-block !important;
    transition: all 0.3s !important;
    white-space: nowrap !important;
}

.hero-button:hover {
    background-color: #ffb300 !important;
    transform: translateY(-3px) !important;
}

/* Table of Contents */
.toc-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
}

.toc-buttons {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.toc-button {
    background-color: #fff;
    color: #228b22;
    padding: 0.8rem 1.5rem;
    border: 2px solid #228b22;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
}

.toc-button:hover {
    background-color: #228b22;
    color: #fff;
}

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

section h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #228b22 !important;
    margin-bottom: 25px !important;
    margin-top: 40px !important;
}

section h2:first-of-type {
    margin-top: 0 !important;
}

section h3 {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #228b22 !important;
    margin-bottom: 15px !important;
    margin-top: 30px !important;
}

section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

section p strong {
    color: #228b22;
    font-weight: 700;
}

/* Lists Styles */
ul, ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

section ul li,
section ol li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333;
}

section ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    width: 10px !important;
    height: 10px !important;
    background-color: #ffc107 !important;
    border-radius: 50% !important;
}

.logo-section img {
    background: white;
    border-radius: 100px;
}

section ol {
    counter-reset: item;
}

section ol li {
    counter-increment: item;
}

section ol li::before {
    content: counter(item) "." !important;
    position: absolute !important;
    left: 0 !important;
    font-weight: 700 !important;
    color: #ffc107 !important;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px;
}

thead {
    background-color: #228b22;
}

thead th {
    color: #fff;
    font-weight: 700;
    padding: 15px;
    text-align: left;
    font-size: 18px;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

tbody td {
    padding: 15px;
    font-size: 18px;
    color: #333;
}

tbody td strong {
    color: #228b22;
}

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

picture img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Card Styles */
.casino-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.casino-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    background-color: #228b22;
    color: #fff;
    padding: 40px 20px 20px;
}

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

footer h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: #ffc107 !important;
}

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

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

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

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

footer a:hover {
    color: #ffc107 !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
}

footer .footer-bottom p {
    color: #fff !important;
    font-size: 16px;
}

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

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

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

    .nav-cta-buttons {
        width: 100%;
        justify-content: center;
    }

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

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

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

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

    .toc-buttons {
        flex-direction: column;
    }

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

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

    .hero {
        padding: 80px 15px !important;
    }

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

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

    section {
        padding: 40px 15px;
    }

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

    section p,
    section li,
    tbody td {
        font-size: 16px;
    }
}
