* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Teko, serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    /* background: linear-gradient(135deg, #000 0%, #000 33%, #dd0000 33%, #dd0000 66%, #ffcc00 66%, #ffcc00 100%); */
    background: linear-gradient(135deg, #AE1C28 0%, #AE1C28 33%, #FFFFFF 33%, #FFFFFF 66%, #21468B 66%, #21468B 100%);

    padding: 15px 0;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #dddddd;
    font-family: Teko, serif;
}
.logo a {
    color: inherit;
    text-decoration: none;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;

    font-family: Teko, serif;
    font-size: 16px;
}

.btn-primary {
    background: #28a745;
    color: white;
}

.btn-secondary {
    background: white;
    color: #333;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Main Content */
.main-content {
    background: white;
    padding: 40px 0;
    margin: 20px 0;

    width: 100%;
    
    font-size: 18px;
}

h1 {
    color: #333;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h2, h3 {
    color: #333;
    /* margin: 30px 0 20px 0; */
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin: 0 auto 10px auto;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive table tr {
    background: #ffffff;
}

.table-responsive table tr:nth-child(even) {
    background: #f8f9fa;
}

.table-responsive table th, .table-responsive table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.table-responsive table th {
    /* background: #ffcc00; */
    background: #21468B;

    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

.main-content .content-img {
    display: block;
    border-radius: 10px;
    margin: 0 auto 10px auto;

    max-height: 400px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Content */
.main-content p {
    line-height: 1.4;
    margin-bottom: 5px;
}

.main-content ul, .main-content ol {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 20px;
}
.main-content ul li,
.main-content ol li {
    line-height: 1.5;
}

/* Table of Contents */
/* Table of Contents with scrollbar */
.toc {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    max-height: 300px;
    overflow-y: auto;
}

.toc h3 {
    /* color: #dd0000; */
    color: #21468B;

    margin-bottom: 15px;
    font-size: 1.3em;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.toc li:before {
    content: "▶";
    /* color: #ffcc00; */
    color: #21468B;

    position: absolute;
    left: 0;
}

.toc a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    /* color: #dd0000; */
    color: #21468B;

}

/* Custom scrollbar for TOC */
.toc::-webkit-scrollbar {
    width: 8px;
}

.toc::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.toc::-webkit-scrollbar-thumb {
    /* background: #dd0000; */
    background: #21468B;

    border-radius: 4px;
}

.toc::-webkit-scrollbar-thumb:hover {
    /* background: #bb0000; */
    background: #21468B;

}

/* Casino Listings */
.casino-listing {
    margin: 30px 0;
}

.casino-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.casino-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.casino-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #000, #dd0000);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.casino-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.casino-rating {
    color: #ffcc00;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.casino-bonus {
    color: #666;
    font-size: 0.9em;
}

.casino-right {
    display: flex;
    gap: 10px;
}

.btn-review {
    background: #6c757d;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
}

.btn-play {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
}

/* German Table */
.german-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.german-table th {
    background: #ffcc00;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.german-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.german-table tr:nth-child(even) {
    background: #f8f9fa;
}

.german-table tr:hover {
    background: #e9ecef;
}

/* Reviews */
.reviews {
    margin: 40px 0;
}

.review-item {
    background: white;
    border-left: 4px solid #21468B;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: bold;
    color: #333;
}

.review-rating {
    /* color: #ffcc00; */
    color: #21468B;

}

/* Author */
.author-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #000, #dd0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9em;
}

/* FAQ */
.faq-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.faq-answer {
    padding: 15px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* Citations */
.citation {
    font-size: 0.8em;
    color: #666;
    border-left: 3px solid #ffcc00;
    padding-left: 10px;
    margin: 10px 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .casino-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .casino-left {
        flex-direction: column;
        text-align: center;
    }

    .author-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}