body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0A0A0A;
    color: #E0E0E0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* General Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5em;
    color: #FF8C00;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #B0B0B0;
}

a {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFA500;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #FF8C00;
    color: #1A1A1A;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    background-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 165, 0, 0.6);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background-color: #333333;
    color: #E0E0E0;
    border: 1px solid #555555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #444444;
    border-color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Age Verification Splash Screen */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-modal {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    max-width: 500px;
    width: 90%;
    border: 2px solid #FF8C00;
}

.age-gate-modal h2 {
    color: #FF8C00;
    margin-bottom: 20px;
    font-size: 2em;
}

.age-gate-modal p {
    color: #E0E0E0;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.age-gate-warning {
    color: #FFD700;
    font-weight: 500;
    font-size: 0.95em;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
}

.age-gate-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.age-gate-actions .btn {
    min-width: 150px;
}

/* Header */
.main-header {
    background-color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E0E0E0;
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
}

.logo-link h1 {
    margin: 0;
    font-size: 25px;
}

.site-logo {
    height: 40px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 1.05em;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF8C00;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 140, 0, 0.15);
    padding: 8px 15px;
    border-radius: 0;
    font-size: 0.9em;
    color: #FFD700;
    justify-content: center;
}

.header-notice .material-symbols-outlined {
    color: #FFD700;
}

.header-notice a {
    color: #FFD700;
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #E0E0E0;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FF8C00;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #B0B0B0;
}

.search-filter-block {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

#casino-search-input {
    padding: 12px 20px;
    width: 350px;
    border: 2px solid #FF8C00;
    border-radius: 8px;
    background-color: #222222;
    color: #E0E0E0;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#casino-search-input::placeholder {
    color: #888888;
}

#casino-search-input:focus {
    border-color: #FFA500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.search-clear-btn {
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    color: #E0E0E0;
    border: 1px solid #555555;
}

.search-clear-btn:hover {
    background-color: #444444;
    border-color: #FF8C00;
}

/* Visually Highlighted Featured Items & Visual Rating Criteria Breakdown (UKGC Importance) */
.featured-items-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.featured-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.featured-card.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.featured-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.featured-card-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.featured-card h3 {
    color: #FF8C00;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.featured-card p {
    color: #B0B0B0;
    font-size: 1em;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
}

.badge-staff-pick {
    background-color: #FF8C00;
    color: #1A1A1A;
}

.badge-top-of-week {
    background-color: #00BFFF;
    color: #1A1A1A;
}

.badge-exclusive-deal {
    background-color: #32CD32;
    color: #1A1A1A;
}

.rating-criteria-section {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.rating-criteria-section.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.rating-criteria-section h3 {
    color: #FF8C00;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

.criterion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #E0E0E0;
    font-size: 1.1em;
}

.criterion-item .material-symbols-outlined {
    color: #FF8C00;
    font-size: 2.2em;
}

.progress-bar-container {
    flex-grow: 1;
    height: 10px;
    background-color: #333333;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
}

.progress-bar {
    height: 100%;
    background-color: #FF8C00;
    border-radius: 5px;
    width: 0%;
    transition: width 1s ease-out;
}

/* Mobile-Optimized Rating Grid (Gaming Platforms) */
.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .rating-grid {
        display: flex;
        padding-bottom: 20px;
        flex-direction: column;
        align-items: center;
    }

    .rating-grid::-webkit-scrollbar {
        height: 8px;
    }

    .rating-grid::-webkit-scrollbar-thumb {
        background-color: #FF8C00;
        border-radius: 10px;
    }

    .rating-grid::-webkit-scrollbar-track {
        background-color: #333333;
    }

    .rating-card {
        flex: 0 0 100%; /* Adjust width for mobile cards */
        max-width: 350px;
        scroll-snap-align: start;
        margin-right: 0px;
    }
}

.rating-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(20px);

}

.rating-card.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.rating-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rating-card h3 {
    color: #FF8C00;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.rating-card .card-description {
    color: #B0B0B0;
    font-size: 0.95em;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #999999;
}

.card-bonus {
    background-color: #282828;
    border-left: 3px solid #FF8C00;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-bonus h4 {
    color: #FF8C00;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 8px;
}

.card-bonus p {
    color: #E0E0E0;
    font-size: 0.9em;
    margin: 0;
}

.visit-site-btn {
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

/* Sticky Comparison Table */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
}

.sticky-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px; /* Ensure horizontal scroll on smaller screens */
    background-color: #1A1A1A;
    border-radius: 12px;
    overflow: hidden;
}

.sticky-comparison-table thead {
    background-color: #FF8C00;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.sticky-comparison-table thead th {
    padding: 15px 20px;
    text-align: left;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.1em;
    border-bottom: 2px solid #E0E0E0;
}

.sticky-comparison-table tbody tr {
    background-color: #1A1A1A;
    transition: background-color 0.3s ease;
}

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

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

.sticky-comparison-table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #333333;
    color: #E0E0E0;
}

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

/* User Reviews with Helpful Vote System */
.user-reviews-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-card.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: #FF8C00;
    font-size: 1.1em;
}

.review-date {
    font-size: 0.85em;
    color: #999999;
}

.review-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-rating .material-symbols-outlined {
    font-size: 1.2em;
}

.review-text {
    color: #E0E0E0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-feedback {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-helpful, .btn-not-helpful {
    background: none;
    border: 1px solid #555555;
    color: #E0E0E0;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-helpful:hover {
    background-color: rgba(50, 205, 50, 0.2);
    border-color: #32CD32;
}

.btn-not-helpful:hover {
    background-color: rgba(255, 69, 0, 0.2);
    border-color: #FF4500;
}

.btn-helpful.active {
    background-color: #32CD32;
    border-color: #32CD32;
    color: #1A1A1A;
    transform: scale(1.05);
}

.btn-not-helpful.active {
    background-color: #FF4500;
    border-color: #FF4500;
    color: #1A1A1A;
    transform: scale(1.05);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #1A1A1A;
    padding: 50px 0;
    border-top: 5px solid #FF8C00;
    border-bottom: 5px solid #FF8C00;
    margin-top: 60px;
    box-shadow: inset 0 0 20px rgba(255, 140, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.5);
}

.disclaimer-content {
    background-color: #222222;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    color: #E0E0E0;
    border: 1px solid #444444;
}

.disclaimer-icon {
    font-size: 3.5em;
    color: #FF8C00;
    margin-bottom: 20px;
    display: block;
}

.disclaimer-content h3 {
    color: #FF8C00;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.disclaimer-content h4 {
    color: #FFA500;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.disclaimer-content p {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.disclaimer-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.disclaimer-content ul li::before {
    content: '•';
    color: #FF8C00;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Footer */
.main-footer {
    background-color: #1A1A1A;
    color: #E0E0E0;
    padding: 40px 0 20px 0;
    border-top: 1px solid #333333;
}

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

.footer-brand .site-logo {
    height: 35px;
    margin-right: 5px;
}

.footer-brand .footer-site-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #E0E0E0;
}

.footer-brand p {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-brand a {
    color: #FF8C00;
}

.footer-nav h3, .footer-policies h3 {
    color: #FF8C00;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.footer-nav ul, .footer-policies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li, .footer-policies li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-policies a {
    color: #B0B0B0;
    font-size: 0.95em;
}

.footer-nav a:hover, .footer-policies a:hover {
    color: #FF8C00;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #999999;
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.responsible-gaming-logos img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.responsible-gaming-logos img:hover {
    transform: scale(1.05);
}

.age-restriction-icon {
    max-width: 50px !important;
    height: auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A1A1A;
    color: #E0E0E0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #FF8C00;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    box-sizing: border-box;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95em;
    flex-grow: 1;
}

.cookie-banner p a {
    color: #FF8C00;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* Cookie Customization Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 25px rgba(255, 140, 0, 0.4);
    border: 2px solid #FF8C00;
    color: #E0E0E0;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-content h3 {
    color: #FF8C00;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.cookie-category:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.cookie-category label {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1em;
    margin-left: 10px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 5px;
    accent-color: #FF8C00;
}

.cookie-category p {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-top: 8px;
    margin-left: 30px;
}

#save-cookie-preferences {
    width: 100%;
    margin-top: 20px;
}

/* Utility classes for animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .main-nav {
        flex-basis: 100%;
        order: 3;
        margin-top: 15px;
        justify-content: center;
    }
    .main-nav ul {
        gap: 20px;
    }
    .header-notice {
        max-width: none;
        flex-grow: 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand .logo-link {
        justify-content: center;
    }
    .footer-nav ul, .footer-policies ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
    .footer-nav h3, .footer-policies h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }
    .hero-section {
        height: 400px;
    }
    .hero-content h2 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .search-filter-block {
        flex-direction: column;
        align-items: center;
    }
    #casino-search-input {
        width: 80%;
        max-width: 300px;
    }
    .featured-items-section {
        grid-template-columns: 1fr;
    }
    .review-feedback {
        flex-direction: column;
        gap: 10px;
    }
    .btn-helpful, .btn-not-helpful {
        width: 100%;
        justify-content: center;
    }
    .disclaimer-content h3 {
        font-size: 1.8em;
    }
    .disclaimer-content h4 {
        font-size: 1.3em;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner p {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .logo-link h1 {
        font-size: 1.5em;
    }
    .site-logo {
        height: 30px;
    }
    .header-notice {
        font-size: 0.8em;
        padding: 5px 10px;
        flex-basis: 100%;
        justify-content: center;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .main-nav a {
        font-size: 0.9em;
    }
    .hero-section {
        height: 350px;
    }
    .hero-content h2 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 0.9em;
    }
    .age-gate-modal h2 {
        font-size: 1.5em;
    }
    .age-gate-modal p {
        font-size: 1em;
    }
    .age-gate-actions {
        flex-direction: column;
        gap: 10px;
    }
    .age-gate-actions .btn {
        min-width: unset;
        width: 100%;
    }
    .rating-card {
        flex: 0 0 95%;
        margin-right: 0;
    }
    
}
/*
 * Styles for the main content frame
 */
.dataClauseFrame {
    margin-top: 30px; /* Top margin for spacing from elements above */
    padding-left: 20px; /* Left padding for content inside the frame */
    padding-right: 20px; /* Right padding for content inside the frame */
    /* Consider adding a max-width and margin: auto; for better readability
       on very wide screens, but it's not explicitly requested here. */
}

/*
 * Heading styles (h1-h5)
 * Not using overly large font sizes as requested.
 * Using 'rem' for better scalability relative to the root font size.
 */
.dataClauseFrame h1 {
    font-size: 1.6rem; /* Heading 1 font size */
    margin-top: 2rem; /* Top margin for separation from previous content */
    margin-bottom: 1rem; /* Bottom margin for separation from following content */
    line-height: 1.2; /* Line height for readability */
    font-weight: bold; /* Standard bold font weight */
}

.dataClauseFrame h2 {
    font-size: 1.4rem; /* Heading 2 font size */
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    line-height: 1.25;
    font-weight: bold;
}

.dataClauseFrame h3 {
    font-size: 1.2rem; /* Heading 3 font size */
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-weight: bold;
}

.dataClauseFrame h4 {
    font-size: 1.1rem; /* Heading 4 font size */
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
    line-height: 1.35;
    font-weight: bold;
}

.dataClauseFrame h5 {
    font-size: 1rem; /* Heading 5 font size (often close to base text size) */
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    font-weight: bold;
}

/*
 * Paragraph styles
 */
.dataClauseFrame p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Line height for improved readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/*
 * Unordered and Ordered list styles
 */
.dataClauseFrame ul,
.dataClauseFrame ol {
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 25px; /* Indentation for list items (default browser is often 40px) */
}

/*
 * List item styles
 */
.dataClauseFrame li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Space between individual list items */
    line-height: 1.5; /* Line height for list items */
}
