body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* General Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #f7b32b;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7b32b;
}

p {
    margin-bottom: 15px;
}

a {
    color: #f7b32b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: none; /* No animations */
}

.btn-primary {
    background-color: #f7b32b;
    color: #1a1a2e;
}

.btn-primary:hover {
    background-color: #e6a21a;
    text-decoration: none;
}

.btn-secondary {
    background-color: #3e2e5c;
    color: #e0e0e0;
    border: 1px solid #f7b32b;
}

.btn-secondary:hover {
    background-color: #5a4a7a;
    text-decoration: none;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.btn-sort {
    background-color: #3e2e5c;
    color: #e0e0e0;
    border: 1px solid #f7b32b;
    margin: 0 5px 10px 0;
}

.btn-sort.active {
    background-color: #f7b32b;
    color: #1a1a2e;
}

/* Header */
.site-header {
    background-color: #0f0f1a;
    padding: 15px 0;
    border-bottom: 1px solid #3e2e5c;
}

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

.logo-link {
    display: flex;
    align-items: center;
}

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

.main-nav {
    flex-grow: 1;
    text-align: center;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-list li {
    margin: 0 15px;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover {
    color: #f7b32b;
    text-decoration: none;
}

.header-warning {
    text-align: center;
    background-color: #a02c2c;
    color: #ffffff;
    padding: 8px 15px;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.header-warning p {
    text-align: center;
    margin: 0;
}

.warning-phone {
    color: #ffffff;
    text-decoration: underline;
}

.warning-phone:hover {
    color: #f7b32b;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
#hero h1 {
    margin-top: 45px;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #22223b;
    margin-bottom: 60px;
}

.about-content p {
    font-size: 1.1em;
    color: #d0d0d0;
}

/* Rating Grid Section (Casino Listings) */
.rating-grid-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

.sort-controls {
    text-align: center;
    margin-bottom: 30px;
}

.rating-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rating-card {
    background-color: #22223b;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%; /* Ensure equal height */
}

.card-image-link {
    margin: 0 10px;
    display: block;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
}

.card-image {
    
    height: 200px; 
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #f7b32b;
}

.card-license {
    font-size: 0.9em;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.ukgc-link {
    font-size: 0.9em;
    margin-bottom: 15px;
    display: inline-block;
    color: #f7b32b;
}

.ukgc-link:hover {
    text-decoration: underline;
}

.card-description {
    font-size: 1em;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.card-features li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.card-features li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4CAF50;
    position: absolute;
    left: 0;
    top: 0;
}

.card-bonus {
    background-color: #3e2e5c;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

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

.payment-systems {
    margin-top: auto;
    margin-bottom: 20px;
}

.payment-systems p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #f7b32b;
}

.payment-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    height: 30px;
    width:40px;
    object-fit: contain;
}

.card-button {
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 60px 0;
    background-color: #22223b;
    margin-bottom: 60px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table is scrollable on small screens */
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #3e2e5c;
}

.comparison-table th {
    background-color: #3e2e5c;
    color: #f7b32b;
    font-weight: 700;
    position: sticky;
    top: 0;
}

.comparison-header-cell {
    cursor: pointer;
}

.comparison-header-cell i {
    margin-left: 5px;
    color: #f7b32b;
}

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

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

.comparison-table td {
    color: #d0d0d0;
}

/* UKGC Info Section */
.ukgc-info-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

.ukgc-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.ukgc-text {
    flex: 2;
    min-width: 300px;
}

.ukgc-text p {
    font-size: 1.1em;
    color: #d0d0d0;
}

.ukgc-image {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.ukgc-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* User Reviews Section */
.user-reviews-section {
    padding: 60px 0;
    background-color: #22223b;
    margin-bottom: 60px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background-color: #3e2e5c;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

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

.reviewer-name {
    font-weight: 700;
    font-size: 1.2em;
    color: #f7b32b;
}

.review-rating {
    color: #FFD700; /* Gold stars */
    font-size: 1.1em;
    margin-left: 10px;
}

.review-date {
    font-size: 0.9em;
    color: #a0a0a0;
    margin-left: auto;
}

.review-text-short, .review-text-full {
    font-size: 1em;
    color: #d0d0d0;
    margin-bottom: 10px;
}

.review-text-short {
    overflow: hidden;
    text-overflow: ellipsis;
 
    -webkit-box-orient: vertical;
}

.review-text-full {
    display: none;
}

.review-text-full.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.review-read-more {
    background: none;
    border: none;
    color: #f7b32b;
    cursor: pointer;
    font-size: 0.9em;
    padding: 0;
    margin-top: 5px;
    text-decoration: underline;
    align-self: flex-start;
}

.review-read-more:hover {
    color: #e6a21a;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #4a1414;
    padding: 60px 0;
    margin-bottom: 0; /* No margin before footer */
    border-top: 5px solid #a02c2c;
    color: #ffffff;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.disclaimer-icon {
    color: #ffcc00;
    font-size: 2.5em;
    margin-right: 15px;
}

.disclaimer-title {
    font-size: 2.2em;
    color: #ffcc00;
    margin: 0;
}

.disclaimer-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.disclaimer-content h3 {
    color: #f7b32b;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.disclaimer-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: #f0f0f0;
}

.disclaimer-content ul li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4CAF50;
    position: absolute;
    left: 0;
    top: 0;
}

.disclaimer-phone {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.disclaimer-phone:hover {
    color: #f7b32b;
}

/* Footer */
.site-footer {
    background-color: #0f0f1a;
    padding: 40px 0;
    color: #a0a0a0;
    font-size: 0.9em;
}

.footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-brand .site-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    margin-top: 0;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.footer-email a {
    color: #f7b32b;
}

.footer-email a:hover {
    text-decoration: underline;
}

.category-title {
    font-size: 1.2em;
    color: #f7b32b;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a0a0;
}

.footer-links a:hover {
    color: #f7b32b;
    text-decoration: none;
}
.footer-responsible-gaming {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-rg-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-around;
}

.rg-logo {
    height: auto;
    width: 150px;
    object-fit: contain;
    filter: none; /* Ensure no grayscale */
}

.logoicon {
    max-width: 50px !important;
    height: 50px !important;
    background-color: #a02c2c;
    border-radius: 50%;
    padding: 5px;
}

.footer-helpline {
    font-size: 1em;
    color: #e0e0e0;
}

.footer-helpline a {
    color: #f7b32b;
    font-weight: 600;
}

/* Modal (Age Verification) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #22223b;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.age-verification-content .age-verification-text {
    font-size: 1.8em;
    color: #f7b32b;
    margin-bottom: 20px;
}

.age-verification-content .age-verification-support {
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.age-verification-actions button {
    margin: 0 15px;
    min-width: 100px;
}

/* Cookie Banner */
.cookie-banner {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f0f1a;
    color: #e0e0e0;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.cookie-banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner-content p {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.cookie-policy-link {
    color: #f7b32b;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: #e6a21a;
}

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

.cookie-banner-actions button {
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        width: 100%;
        margin: 15px 0;
    }

    .nav-list {
        justify-content: center;
    }

    .nav-list li {
        margin: 0 10px;
    }



    .hero-title {
        font-size: 2.8em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 2em;
    }

    .ukgc-content {
        flex-direction: column;
    }

    .ukgc-text, .ukgc-image {
        min-width: unset;
        width: 100%;
    }

    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-rg-logos {
        justify-content: center;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content p {
        margin-bottom: 15px;
    }
}
@media (max-width: 996px) {
    .reviews-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .nav-link {
        padding: 0;
    }
 

    .hero-title {
        font-size: 2.2em;
    }

    .hero-description {
        font-size: 1em;
    }

    .nav-list {
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .rating-items-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviewer-name, .review-rating, .review-date {
        margin-bottom: 5px;
        margin-left: 0;
    }

    .review-date {
        align-self: flex-end;
    }

    .disclaimer-icon {
        font-size: 2em;
    }

    .disclaimer-title {
        font-size: 1.8em;
    }

    .disclaimer-content ul {
        text-align: left;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
 

    .hero-title {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }



    .rg-logo {
        max-width: 100px;
    }

    .rg-logo.18plus-icon {
        max-width: 40px;
        height: 40px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .age-verification-content .age-verification-text {
        font-size: 1.5em;
    }

    .age-verification-actions button {
        margin: 0 10px;
        min-width: 80px;
    }
}/* Parent container styles */
.userClauseNet {
    margin-top: 2rem; /* Top margin for the entire content block */
    padding-left: 1.5rem; /* Left padding for content inside */
    padding-right: 1.5rem; /* Right padding for content inside */
    max-width: 750px; /* Max width for readability on large screens */
    margin-left: auto; /* Center the block */
    margin-right: auto; /* Center the block */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Heading styles */
.userClauseNet h1 {
    font-size: 2.25rem; /* ~36px - Not too big, but clearly a main title */
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700; /* Bold */
    color: #ffffff;
}

.userClauseNet h2 {
    font-size: 1.75rem; /* ~28px */
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.userClauseNet h3 {
    font-size: 1.5rem; /* ~24px */
    line-height: 1.3;
    margin-top: 1.75rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #ffffff;
}

.userClauseNet h4 {
    font-size: 1.25rem; /* ~20px */
    line-height: 1.35;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #ffffff;
}

.userClauseNet h5 {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.4;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

/* Paragraph styles */
.userClauseNet p {
    font-size: 1.125rem; /* ~18px - Standard body text size for good readability */
    line-height: 1.6; /* Optimal line height for body text */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #ffffff; /* Slightly softer black for body text */
}

/* List styles */
.userClauseNet ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: #ffffff;
}

.userClauseNet ol {
    list-style-type: decimal; /* Default numbered style */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for numbers */
    color: #ffffff;
}

.userClauseNet li {
    font-size: 1.125rem; /* ~18px - Consistent with paragraph text */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #ffffff;
}
