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

:root {
    
    --c-4e17: #c53016;
    --v-b6f6: #FFFFFF;
    --q-dd12: #161616;
    --q-1fe8: #5d6779;
    --z-56eb: #e5e8ec;
    --k-0304: 0 2px 10px rgba(218, 41, 28, 0.1);
    --z-4c09: 0 4px 20px rgba(218, 41, 28, 0.15);

    --q-e164: #141414;
    --p-419d: #6e7a91;

    --q-0d04: #fdfdfe;

    --z-48e4: #0aa55d;
    --p-89a8: #df4a48;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--q-dd12);
    background-color: #f9fafb;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comparison-table a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.author-bio-avatar {
    flex-shrink: 0;
}

.table-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--v-b6f6);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.casino-link:hover {
    background: linear-gradient(135deg, #b91e15 0%, var(--c-4e17) 100%);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.35);
    transform: translateY(-2px);
}

.casino-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.footer-links li {
    margin: 0;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px; 
    height: 3px;
    background-color: var(--c-4e17);
}

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

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

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

.resource-title a {
    color: #059669;
    text-decoration: none;
    transition: all 0.3s ease;
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.casino-panel {
    background-color: var(--v-b6f6);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.writer-identifier {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--q-dd12);
    margin-bottom: 0.1rem;
}

.casino-identifier {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--q-dd12);
    margin-bottom: 0.75rem;
    text-align: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--v-b6f6);
    font-size: 1.5rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
    height: 100%; 
}

.casino-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(218, 41, 28, 0.15);
    border-color: var(--c-4e17);
}

.last-modified svg {
    color: var(--c-4e17);
}

.breadcrumb-list li a {
    color: var(--c-4e17);
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.casino-promo {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    text-align: center;
    border: 1px solid #fcd34d;
}

.logo svg {
    flex-shrink: 0;
}

.breadcrumb-list li a:hover {
    color: var(--q-e164);
    text-decoration: underline;
}

.dropdown-menu li {
    border-bottom: 1px solid var(--z-56eb);
}

.pros-cons-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--v-b6f6);
    border-radius: 8px;
    box-shadow: var(--z-4c09);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid var(--c-4e17);
}

.table-wrapper {
    margin: 2.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-content {
    text-align: left;
    line-height: 1.8;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
    list-style-position: inside;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #b91e15;
}

.faq-answer {
    padding: 1.5rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--q-dd12);
    background-color: var(--v-b6f6);
    border-top: 1px solid #e5e7eb;
}

.dropdown-link:hover {
    background-color: var(--c-4e17);
    color: var(--v-b6f6);
}

.pros-cons-table tr:last-child td {
    border-bottom: none;
}

.cons-header {
    color: #dc2626;
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

.cons-header .table-icon {
    background-color: #dc2626;
    color: white;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--q-dd12);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-content h2 {
    font-size: 1.75rem;
    color: var(--q-dd12);
    margin-top: 1.5rem; 
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    position: relative;
    display: block;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.pros-cons-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pros-cons-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.author-bio-header {
    margin-bottom: 0.5rem;
}

.writer-extras {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-LightBETA.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

.hero-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--z-56eb);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--q-dd12);
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%; 
}

.author-bio-description {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--q-dd12);
    margin-bottom: 0.8rem; 
    font-weight: 700;
    text-align: left;
}

.pros-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.responsible-gaming-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.expandable-paragraph {
    margin: 0;
}

.pros-cons-wrapper::-webkit-scrollbar-thumb:hover {
    background: #b91e15;
}

.comparison-table {
    width: 100%;
    min-width: 600px; 
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--v-b6f6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

.comparison-table thead th {
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 3px solid #e5e7eb;
}

.pros-header {
    color: #059669;
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.writer-name {
    font-size: 0.8rem;
    color: var(--q-1fe8);
    font-weight: 400;
}

.pros-cell {
    border-right: 1px solid #e5e7eb;
}

.writer-specs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--v-b6f6);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v-b6f6);
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.comparison-table a:hover {
    color: #047857;
    border-bottom-color: #047857;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.casino-grade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pros-cell .cell-icon {
    color: #059669;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.footer {
    background-color: var(--q-dd12);
    color: var(--v-b6f6);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.logo img {
    max-width: 250px;
    height: auto;
    display: block; 
    transition: opacity 0.3s ease;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--p-419d);
}

.main-content {
    min-height: 70vh;
    padding: 1.2rem 0; 
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

.casino-icon {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: black;
    border-radius: 8px;
    padding: 1rem;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hero-content h3 {
    font-size: 1.35rem;
    color: var(--q-dd12);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.author-bio-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--q-dd12);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--c-4e17) 0%, #b91e15 100%);
    color: var(--v-b6f6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.breadcrumbs-item a:hover {
    color: var(--c-4e17);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-table tbody tr:nth-child(even):hover {
    background-color: #f3f4f6;
}

.author-bio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pros-cons-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.5);
}

.cons-header {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.promo-badge {
    font-size: 0.85rem;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.writer-about-panel {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--v-b6f6);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.expandable-text {
    position: relative;
}

.breadcrumbs-separator {
    color: #9ca3af;
    font-size: 0.85rem;
}

.author-bio-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--c-4e17);
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.2);
}

.promo-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #78350f;
}

.casino-link {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--c-4e17) 0%, #b91e15 100%);
    color: var(--v-b6f6);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.2);
    margin-top: auto;
}

.writer-photo {
    flex-shrink: 0;
}

.hero-content ul li strong {
    color: var(--c-4e17);
    font-weight: 600;
    margin-right: 0.5rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: var(--q-dd12);
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

.resource-title a:hover {
    color: #047857;
    text-decoration: underline;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.author-bio-title {
    font-size: 1rem;
    color: var(--c-4e17);
    font-weight: 600;
    margin: 0;
}

.breadcrumbs-item.active {
    color: var(--q-dd12);
    font-weight: 500;
}

.writer-about-region {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-top: 1px solid #e5e7eb;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumbs {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.dropdown-toggle {
    cursor: pointer;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

.nav-link {
    color: var(--v-b6f6);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap; 
}

.hero-content ul li {
    position: relative;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--q-dd12);
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.pros-cons-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background-color: var(--v-b6f6);
    border-radius: 12px;
    overflow: hidden;
}

.info-banner {
    margin: 3rem auto;
    max-width: 70%; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(218, 41, 28, 0.08);
}

.feature-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.cons-cell.empty {
    background-color: #f9fafb;
}

.breadcrumb-list li:last-child span {
    color: var(--q-e164);
    font-weight: 500;
}

.faq-container {
    margin: 2rem 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-self: center; 
}

ol li strong {
    display: inline;
}

.header {
    background-color: var(--c-4e17);
    box-shadow: var(--k-0304);
    position: sticky;
    top: 0;
    z-index: 1003;
    transition: all 0.3s ease;
}

.writer-body {
    flex: 0 1 auto;
}

.comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.expand-btn {
    display: none;
}

.logo a:hover {
    opacity: 0.9;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--p-419d);
    font-size: 1.2rem;
}

.writer-photo img {
    width: 67.5px;
    height: 67.5px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-4e17);
}

.author-bio-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--q-1fe8);
    margin: 0;
}

.comparison-table tbody tr:hover {
    background-color: #f9fafb;
}

.help-resource {
    background-color: var(--v-b6f6);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

.cell-icon {
    font-weight: 700;
    margin-right: 0.75rem;
}

.hero-content ul li:last-child {
    border-bottom: none;
}

.pros-cons-wrapper::-webkit-scrollbar-thumb {
    background: var(--c-4e17);
    border-radius: 10px;
}

.pros-cons-table thead {
    background-color: #f8f9fa;
}

.grade-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--q-dd12);
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--c-4e17);
    border-radius: 10px;
}

.last-modified {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--q-1fe8);
    background-color: #f3f4f6;
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    white-space: nowrap;
}

.resource-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.casino-order {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--c-4e17) 0%, #b91e15 100%);
    color: var(--v-b6f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(218, 41, 28, 0.3);
}

.dropdown.active .dropdown-menu,

.dropdown-menu li:last-child {
    border-bottom: none;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--c-4e17);
}

.footer-links a:hover {
    color: var(--v-b6f6);
    transform: translateX(5px);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.casino-icon img {
    width: 158px;
    height: auto;
    min-height: 40px;
    max-height: 100px;
    object-fit: contain;
}

.pros-header .table-icon {
    background-color: #059669;
    color: white;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--q-dd12);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.cons-cell .cell-icon {
    color: #dc2626;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.help-resource p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--q-dd12);
    margin: 0;
}

.rating {
    color: #fbbf24;
    font-size: 1rem;
}

ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    padding-left: 0.5rem;
}

.pros-cons-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.pros-cons-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: top;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    min-height: 100px; 
}

.breadcrumbs {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid var(--z-56eb);
}

.info-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.breadcrumbs-item a {
    color: var(--q-1fe8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%; 
}

.faq-item {
    background-color: var(--v-b6f6);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--c-4e17);
}

@media (max-width: 768px) {
    .nav {
        min-height: 70px; 
        padding: 0.75rem 0;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem; 
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        font-size: 1rem;
    }
    
    .info-banner {
        max-width: 100%; 
    }

    .pros-cons-table {
        font-size: 0.9rem;
    }
    
    .pros-cons-table th {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .pros-cons-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 3rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

}

@media (max-width: 768px) {
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        background-color: var(--c-4e17);
        padding: 100px 0 2rem 0;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 1.25rem 2rem;
        justify-content: space-between;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .dropdown {
        flex-direction: column;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background-color: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: 100%;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-link {
        display: block;
        width: 100%;
        color: var(--v-b6f6);
        padding: 1rem 2rem 1rem 3rem;
        font-size: 1rem;
        text-decoration: none;
        background-color: transparent;
        transition: background-color 0.2s ease;
    }

    .dropdown-link:hover,
    .dropdown-link:active {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--v-b6f6);
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-top: 1.2rem;
    }

    .hero-content h3 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .casino-collection {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .casino-panel {
        padding: 1.25rem;
    }

    .casino-identifier {
        font-size: 1.3rem;
    }

    .promo-amount {
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table thead th {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .table-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .pros-cons-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .writer-specs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .writer-extras {
        width: 100%;
        margin-left: 0;
    }

    .last-modified {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .responsible-gaming-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .help-resource {
        padding: 1.5rem;
    }

    .resource-title {
        font-size: 1.2rem;
    }
}

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

    .hero-content h2 {
        font-size: 1.35rem;
        margin-top: 0.9rem;
    }

    .hero-content h3 {
        font-size: 1.15rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        width: 38px;
        height: 38px;
    }

    .table-wrapper {
        margin: 2rem -1rem;
        padding: 0 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .comparison-table td {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .cell-icon {
        margin-right: 0.5rem;
    }

    .casino-collection {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .casino-panel {
        padding: 1rem;
    }

    .casino-identifier {
        font-size: 1.2rem;
    }

    .promo-amount {
        font-size: 0.95rem;
    }

    .casino-link {
        font-size: 1rem;
        padding: 0.875rem;
    }

    .writer-photo img {
        width: 60px;
        height: 60px;
    }

    .writer-identifier {
        font-size: 0.9rem;
    }

    .writer-name {
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .responsible-gaming-links {
        gap: 1.25rem;
    }

    .help-resource {
        padding: 1.25rem;
    }

    .resource-title {
        font-size: 1.1rem;
    }

    .help-resource p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .writer-about-region {
        padding: 2rem 0;
    }

    .writer-about-panel {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }

    .author-bio-avatar img {
        width: 100px;
        height: 100px;
    }

    .author-bio-name {
        font-size: 1.5rem;
    }

    .author-bio-title {
        font-size: 0.95rem;
    }

    .author-bio-description p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .writer-about-panel {
        padding: 1.25rem;
    }

    .author-bio-avatar img {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }

    .author-bio-name {
        font-size: 1.35rem;
    }

    .author-bio-title {
        font-size: 0.9rem;
    }

    .author-bio-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .expandable-paragraph {
        position: relative;
        overflow: hidden;
        max-height: 7.5em; 
        line-height: 1.5em;
        transition: max-height 0.3s ease;
    }

    .expandable-paragraph::after {
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        padding-left: 3rem;
        background: linear-gradient(to right, transparent, var(--v-b6f6) 50%);
    }

    .expandable-text.expanded .expandable-paragraph {
        max-height: none;
    }

   .expandable-text.expanded .expandable-paragraph::after {
        display: none;
    }

    .expand-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, var(--c-4e17) 0%, #b82318 100%);
        color: var(--v-b6f6);
        border: none;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(218, 41, 28, 0.2);
        margin-top: 1rem;
    }

    .expand-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(218, 41, 28, 0.3);
    }

    .expand-btn:active {
        transform: translateY(0);
    }

    .expand-btn .expand-icon {
        transition: transform 0.3s ease;
    }

    .expand-btn.expanded .expand-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .expand-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }

    .breadcrumbs-item {
        font-size: 0.85rem;
    }

    .breadcrumbs-separator {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}