:root {
    --primary-color: #fb6835;
    --secondary-color: #383636;
    --background-start: #383636;
    --background-middle: #383636;
    --background-end: #383636;
    --text-color: #ffffff;
    --content-bg: #474646;
    --headings: #ffffff;
    --content-text: #ffffff;
    --footer-bg: #383636;
    --footer-text: #ffffff;
    --casino-theme-color: #fb6835;
    --cta-button-color: #fb6835;
}

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

body {
    padding-top: 120px;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--background-start) 0%, var(--background-middle) 50%, var(--background-end) 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--background-start);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header-cta-btn {
    padding: 12px 28px;
    background: var(--cta-button-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.provider-name {
    color: var(--primary-color);
    font-weight: 900;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 5px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
}

.provider-logo-container {
    background: transparent;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.provider-logo-large {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.1));
}

.filter-section {
    background: var(--content-bg);
    padding: 40px 40px 20px 40px;
    margin: 0;
}

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

.filter-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.filter-button {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.filter-button.active {
    border-color: var(--primary-color);
    background: rgba(195, 53, 20, 0.1);
}

.filter-button-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-button-text {
    flex: 1;
    text-align: left;
}

.filter-button-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filter-button:hover .filter-button-icon {
    transform: translateX(2px);
}

.filter-button.active .filter-button-icon {
    color: var(--primary-color);
}

.filter-button.has-active-filters {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(251, 104, 53, 0.4);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(251, 104, 53, 0);
    }
}

.filter-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.filter-button.active .filter-icon {
    transform: rotate(180deg);
}

.filter-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #383636;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-dropdown-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.filter-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-option label {
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option-icon {
    font-size: 1.2rem;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-apply,
.filter-clear {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-apply {
    background: var(--primary-color);
    color: #ffffff;
}

.filter-apply:hover {
    background: #a72d10;
    transform: translateY(-2px);
}

.filter-clear {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-clear:hover {
    background: rgba(255, 255, 255, 0.1);
}

.active-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.remove-filter {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.remove-filter:hover {
    transform: scale(1.2);
}

.main-content {
    background: var(--content-bg);
    color: var(--content-text);
    padding: 60px 40px;
    margin: 0;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    color: var(--headings);
    margin: 30px 0 20px 0;
    font-weight: bold;
}

.main-content h1 { font-size: 2.5rem; }
.main-content h2 { font-size: 2rem; }
.main-content h3 { font-size: 1.5rem; }
.main-content h4 { font-size: 1.25rem; }

.main-content p {
    margin: 20px 0;
    font-size: 1.1rem;
}

.main-content ul,
.main-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-content table img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.main-content th,
.main-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.main-content th {
    background: var(--primary-color);
    color: #ffffff;
    font-weight: bold;
}

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

.main-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content code {
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

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

.rating-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--headings);
    margin-bottom: 40px;
    font-weight: bold;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.casino-card {
    background: #383636;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--casino-theme-color);
    transition: all 0.3s ease;
}

.casino-card.filtered-out {
    display: none !important;
}

.casino-card {
    animation: fadeInCard 0.4s ease-out;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card.highlight-animation {
    animation: highlightPulse 1s ease-in-out;
}

@keyframes highlightPulse {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-color: var(--casino-theme-color);
    }
    50% { 
        box-shadow: 0 0 0 3px var(--primary-color),
                    0 4px 20px rgba(251, 104, 53, 0.5);
        border-color: var(--primary-color);
    }
}

.no-results-message {
    display: none;
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-results-content svg {
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results-content h3 {
    font-size: 1.5rem;
    color: var(--headings);
    margin-bottom: 10px;
}

.no-results-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-clear-filters {
    padding: 12px 30px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 104, 53, 0.4);
}

.casino-rank {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 32px;
    height: 32px;
    border-radius: 16px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: #ffffff;
    background: var(--casino-theme-color);
    z-index: 2;
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
}

.casino-name {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 8px 0 6px 0;
    color: var(--content-text);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--content-text);
}

.stars {
    font-size: 1rem;
    color: #ffc107;
    letter-spacing: 2px;
}

.bonus-info {
    background: rgba(255, 255, 255, 0.1);
    color: var(--content-text);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.bonus-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--headings);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.bonus-info p {
    font-size: 0.9rem;
    color: var(--content-text);
    margin: 0;
}

.casino-pros {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.casino-pros li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--content-text);
    line-height: 1.5;
    padding-left: 28px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 10L9.5 12L13 8.5M19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1C14.9706 1 19 5.02944 19 10Z' stroke='%23c33514' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
}

.casino-pros li:before {
    content: none;
}

.casino-cta {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

@keyframes sectionHighlight {
    0%, 100% { 
        background: var(--content-bg);
    }
    50% { 
        background: linear-gradient(135deg, 
                    var(--content-bg) 0%, 
                    rgba(195, 53, 20, 0.1) 100%);
    }
}

.highlight-section {
    animation: sectionHighlight 2s ease-in-out;
}

.faq-section {
    background: var(--content-bg);
    padding: 60px 40px;
    margin: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    color: var(--headings);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    background: transparent;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question.active {
    background: rgba(195, 53, 20, 0.2);
    color: #ffffff;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 20px 0;
}

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

.footer-logos {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: transparent;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.logo-placeholder {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
}

.footer-text {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-text p {
    margin: 10px 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.toc-container {
    margin: auto;
    max-width: 900px;
    padding: 0 1rem;
}

.toc-toggle {
    display: fixed;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.toc-toggle:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.toc-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.toc-toggle.active .toc-icon {
    transform: rotate(180deg);
}

.toc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--toc-bg);
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    padding-top: 8px;
}

.toc.active {
    max-height: 800px;
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    border-top: none;
}

#tocList {
    list-style: none;
    padding: 0;
    margin: 0;
}

#tocList li {
    margin-bottom: 0.5rem;
}

#tocList a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--toc-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

#tocList a:hover {
    background: var(--toc-hover-bg);
    border-left-color: var(--primary-color);
    padding-left: 1rem;
    color: var(--primary-color);
}

#tocList li.toc-h3 {
    margin-left: 1.5rem;
}

#tocList li.toc-h3 a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--toc-text-light);
}

@media (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .rating-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .filter-dropdown {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .header {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 31, 58, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        font-size: 1.2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .burger-menu {
        display: flex;
    }

    .header-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }

    .provider-logo-container {
        padding: 30px;
        max-width: 100%;
    }

    .provider-logo-large {
        max-width: 250px;
    }

    .filter-section {
        padding: 30px 20px 20px 20px;
    }

    .filter-dropdown {
        max-width: 100%;
    }

    .filter-dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 70vh;
        overflow-y: auto;
    }

    .main-content {
        padding: 40px 20px;
    }

    .main-content h1 { font-size: 2rem; }
    .main-content h2 { font-size: 1.75rem; }
    .main-content h3 { font-size: 1.5rem; }

    .main-content table {
        font-size: 0.9rem;
    }

    .main-content table img {
        width: 120px;
        height: 120px;
    }

    .main-content th,
    .main-content td {
        padding: 10px;
    }

    .casino-rating-container {
        padding: 20px 15px;
    }
    
    .casino-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .rating-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .casino-card {
        padding: 20px 25px;
        max-width: 100%;
    }

    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 15px 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .logos-container {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-item {
        min-width: auto;
        width: 100%;
        height: 50px;
        padding: 10px 15px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
	
	.toc-container {
        margin: 1.5rem 0.5rem;
    }
    
    .toc-toggle {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .toc.active {
        padding: 1rem;
        max-height: 600px;
    }
    
    #tocList a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .main-content {
        padding: 30px 15px;
    }

    .main-content h1 { font-size: 1.75rem; }
    
    .main-content p,
    .main-content li { 
        font-size: 1rem; 
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .provider-logo-container {
        padding: 20px;
    }

    .provider-logo-large {
        max-width: 200px;
    }
}