/* General Styles */
:root {
    --primary-color: #6a1b9a; /* Deep Purple */
    --secondary-color: #ab47bc; /* Lighter Purple */
    --accent-color: #ffeb3b; /* Bright Yellow */
    --text-color-light: #e0e0e0;
    --text-color-dark: #333;
    --background-dark: #1a1a2e; /* Dark Blue-Purple */
    --card-background: #2a2a4a; /* Slightly lighter dark */
    --border-color: #4a4a6a;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --success-color: #4CAF50;
    --error-color: #f44336;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-dark);
    color: var(--text-color-light);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

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

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

h1, h2, h3, h4 {
    color: var(--text-color-light);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

h1 {
    font-size: 3.5em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.8em;
}

p {
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-color-light);
    margin-bottom: 50px;
    text-align: center;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}

/* Header */
.header {
    background-color: var(--background-dark);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo, .logo-footer {
    display: flex;
    flex-direction: column;

    span {
        color: #fff;
    }
}
.header .logo img {
    height: 40px;
    filter: brightness(1.2); /* Make logo stand out */
}

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

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--text-color-light);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url(assets/graphics/hero-background_72.jpg); /* Placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.hero-content .lead {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    background-color: rgba(42, 42, 74, 0.8); /* card-background with transparency */
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.benefit-card {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

.benefit-card i {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-color-light);
}

.benefit-card p {
    font-size: 0.9em;
    color: var(--text-color-light);
}

/* About Section */
.about-section {
    background-color: var(--card-background);
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: var(--text-color-light);
}

/* Rating Categories Overview Section */
.rating-categories-section {
    background-color: var(--background-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rating-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.rating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.rating-card i {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rating-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-color-light);
}

.rating-card p {
    font-size: 0.95em;
    color: var(--text-color-light);
    margin-bottom: 0;
}

/* Featured Platforms Section */
.featured-platforms-section {
    background-color: var(--card-background);
}

.platform-card.horizontal {
    display: flex;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow-color);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card.horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.platform-image-link {
    flex: 0 0 40%; /* Image takes 40% width */
    overflow: hidden;
    display: block;
}

.platform-image {
    width: 70%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    margin-inline: auto;

}

.platform-card.horizontal:hover .platform-image {
    transform: scale(1.05);
}

.platform-details {
    flex: 1; /* Details take remaining width */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-details h3 {
    text-align: left;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform-details .rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.platform-details .rating i {
    color: #d07112;
    font-size: 1.2em;
    margin-right: 5px;
}

.platform-details .rating span {
    font-size: 1.3em;
    font-weight: 600;
    color: #444;
}

.platform-details .bonus {
    font-size: 1.1em;
    font-weight: 600;
    color: #d07112;
    margin-bottom: 20px;
    text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #444;
}

.benefits-list li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1em;
}

.platform-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto; /* Push to bottom */
}

.platform-actions .btn-primary {
    padding: 10px 45px;
    font-size: 1.1em;
}

.payment-logos {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-logo {
    height: 35px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}
.payment-logo:hover {
    filter: brightness(1);
}

/* Help Section */
.help-section {
    background-color: var(--background-dark);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.help-card i {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-color-light);
}

.help-card p {
    font-size: 0.95em;
    color: var(--text-color-light);
    margin-bottom: 0;
}

/* Tech Info Section */
.tech-info-section {
    background-color: var(--card-background);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    background-color: var(--background-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.tech-item i {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tech-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.tech-item p {
    font-size: 0.9em;
    color: var(--text-color-light);
}

/* Slots Inventory Section */
.slots-inventory-section {
    background-color: var(--background-dark);
}

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

.slot-card {
    background-color: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.slot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.slot-card h3 {
    font-size: 1.4em;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.slot-card p {
    font-size: 0.9em;
    color: var(--text-color-light);
    padding: 0 20px 20px;
    margin-bottom: 0;
}

/* Evaluation Criteria Section */
.evaluation-criteria-section {
    background-color: var(--card-background);
}

.criteria-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.criterion-item {
    width: calc(45% - 60px);
    background-color: var(--background-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criterion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.criterion-item i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.criterion-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.criterion-item p {
    font-size: 0.9em;
    color: var(--text-color-light);
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--background-dark);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    width: calc(45% - 60px);
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.review-header h4 {
    margin: 0;
    font-size: 1.2em;
    text-align: left;
    color: var(--text-color-light);
}

.review-stars i {
    color: var(--accent-color);
    font-size: 1em;
}

.review-date {
    font-size: 0.85em;
    color: #aaa;
    display: block;
    margin-top: 5px;
}

.review-text {
    font-size: 0.95em;
    color: var(--text-color-light);
    text-align: left;
}

/* Newsletter Form Section */
.newsletter-section {
    background-color: var(--card-background);
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: var(--background-dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color-light);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #333;
    color: var(--text-color-light);
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.3);
}

.form-group .error-message {
    color: var(--error-color);
    font-size: 0.85em;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

.newsletter-form .btn-primary {
    width: auto;
    padding: 12px 30px;
    font-size: 1.1em;
    margin-top: 15px;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #2c003e; /* Darker, distinct purple */
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-top: 5px solid var(--accent-color); /* Highlight border */
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly transparent dark background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--accent-color);
}

.disclaimer-icon {
    font-size: 4em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.disclaimer-content h3 {
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.disclaimer-content strong {
    color: var(--accent-color);
}

.responsible-gaming-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.responsible-gaming-links li a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.responsible-gaming-links li a:hover {
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.95); /* background-dark with transparency */
    color: var(--text-color-light);
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    border-top: 1px solid var(--border-color);
}

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

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

.cookie-banner-content p {
    flex: 1;
    margin: 0;
    text-align: left;
    font-size: 0.95em;
}

.cookie-banner-content p a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

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

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

.modal-content {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid var(--border-color);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-content h2, .modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8em;
}

.modal-content p {
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.modal-content .btn-primary {
    margin-top: 20px;
}

.modal-disclaimer {
    font-size: 0.85em;
    color: #aaa;
    margin-top: 15px;
}

.cookie-category {
    text-align: left;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cookie-category input[type="checkbox"] {
    margin-top: 5px;
    min-width: 18px;
    min-height: 18px;
    accent-color: var(--primary-color);
}

.cookie-category label {
    font-weight: 600;
    color: var(--text-color-light);
    flex: 1;
}

.cookie-category label span {
    font-weight: 400;
    color: #aaa;
    font-size: 0.9em;
}

.cookie-category .category-desc {
    font-size: 0.85em;
    color: #bbb;
    margin-top: 5px;
    margin-left: 28px; /* Align with label text */
    text-align: left;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--text-color-light);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

.footer-top {
    width: 100%;
    display: flex;
    justify-content: center;

    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
    
    ul {
        margin-bottom: 0;
    }
}

.footer-top .logo-footer img {
    height: 50px;
    filter: brightness(1.2);
}

.footer-highlights {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-highlight-card {
    background-color: var(--card-background);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow-color);
    border: 1px solid var(--border-color);
    min-width: 180px;
    text-align: center;
}

.footer-highlight-card h4 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.footer-highlight-card .highlight-item-name {
    font-size: 1em;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 ;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.footer-links ul li a {
    color: var(--text-color-light);
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-responsible-gaming {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-responsible-gaming .age-restriction {
    background-color: #f44336; /* Red for 18+ */
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-img-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.footer-logo-rg {
    height: auto;
    max-width: 130px; /* Adjusted width for 4 images */
    width: 100%;
    object-fit: contain;
    filter: brightness(0.9); /* Slightly dim */
    transition: filter 0.3s ease;
}
.footer-logo-rg:hover {
    filter: brightness(1.1); /* Slightly brighter on hover */
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5em;
    }
    .hero-content .lead {
        font-size: 1.3em;
    }
    .benefits-grid {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        align-items: center;
    }
    .platform-card.horizontal {
        flex-direction: column;
    }
    .platform-image-link {
        flex: 0 0 auto;
        height: 250px;
    }
    .platform-details {
        padding: 25px;
    }
    .platform-details h3 {
        font-size: 1.8em;
    }
    .platform-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cookie-banner-content p {
        text-align: center;
    }
    .cookie-actions {
        margin-left: 0;
        justify-content: center;
    }
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
    .footer-highlights {
        flex-direction: column;
        gap: 15px;
    }

     .hero-section {
        padding: 250px 0;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    .header .container .menu-btn {
        display: block;
    }
    #main-nav-id {
        display: none;
    }
    #main-nav-id.hidden {
        display: none;
    }
    #main-nav-id.show {
        display: flex;
    }
    .main-nav {
        width: 100%;
    }


    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .main-nav ul li {
        margin: 0 10px;
    }
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }
    .section-padding {
        padding: 60px 0;
    }
    .newsletter-form {
        padding: 30px;
    }
    .disclaimer-content {
        padding: 30px;
    }
    .disclaimer-icon {
        font-size: 3em;
    }
    .disclaimer-content h3 {
        font-size: 1.5em;
    }
    .footer-img-wrapper {
        gap: 15px;
    }
    .footer-logo-rg {
        max-width: 100px; /* Smaller for more images or smaller screens */
    }

    .hero-section {
        padding: 250px 0;
    }

    .criterion-item, .review-card  {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content .lead {
        font-size: 1.1em;
    }
    .benefits-grid {
        padding: 15px;
    }
    .benefit-card i {
        font-size: 2.5em;
    }
    .platform-details {
        padding: 20px;
    }
    .platform-details h3 {
        font-size: 1.5em;
    }
    .platform-actions {
        align-items: center;
    }
    .payment-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
    .footer-logo-rg {
        max-width: 80px;
    }
}/* New styles for .legalFoldBox and its content */

.legalFoldBox {
    /* Padding for the legal content container, providing space around the text */
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    /* Optional: Max width and centering for better readability of long text blocks */
    max-width: 900px;
    margin: 0 auto;
    /* Ensure text color matches the theme for this specific content block */
    color: var(--text-color-light);
}

.legalFoldBox h1 {
    /* Standard font size for main headings within legal content, smaller than global H1 */
    font-size: 2.2em;
    margin-top: 0; /* Remove default top margin for the first heading */
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--text-color-light);
    text-align: left; /* Align text to the left for content blocks */
    font-weight: 700; /* Maintain boldness for primary heading */
}

.legalFoldBox h2 {
    /* Standard font size for secondary headings, smaller than global H2 */
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-color-light);
    text-align: left;
    font-weight: 700;
    padding-bottom: 0; /* Remove padding that might be from global H2 styles */
}
.legalFoldBox h2::after {
    /* Remove the decorative underline from global H2 for this context */
    content: none;
}

.legalFoldBox h3 {
    /* Standard font size for tertiary headings */
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-color-light);
    text-align: left;
    font-weight: 700;
}

.legalFoldBox h4 {
    /* Standard font size for quaternary headings */
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-color-light);
    text-align: left;
    font-weight: 600; /* Slightly less bold than H1-H3 */
}

.legalFoldBox h5 {
    /* Standard font size for quinary headings */
    font-size: 1.1em; /* Slightly larger than paragraph for emphasis */
    margin-top: 20px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-color-light);
    text-align: left;
    font-weight: 600;
}

.legalFoldBox p {
    /* Standard paragraph text styling for readability */
    font-size: 1em; /* Base font size */
    margin-bottom: 1em; /* Spacing between paragraphs */
    line-height: 1.7; /* Optimal line height for long text */
    color: var(--text-color-light);
    text-align: left;
}

.legalFoldBox ul {
    /* Standard unordered list styling */
    list-style: disc; /* Default disc bullet points */
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 25px; /* Indent list items for hierarchy */
    color: var(--text-color-light);
    text-align: left;
}

.legalFoldBox ol {
    /* Standard ordered list styling */
    list-style: decimal; /* Default numbered list */
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 25px;
    color: var(--text-color-light);
    text-align: left;
}

.legalFoldBox li {
    /* Standard list item styling */
    font-size: 1em;
    margin-bottom: 8px; /* Spacing between list items */
    line-height: 1.6;
    color: var(--text-color-light);
}

/* Specific styling for nested lists to reduce vertical spacing */
.legalFoldBox ul ul,
.legalFoldBox ol ol,
.legalFoldBox ul ol,
.legalFoldBox ol ul {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Adjustments for links within legalFoldBox to stand out */
.legalFoldBox a {
    color: var(--accent-color); /* Use accent color for links within text */
    text-decoration: underline; /* Underline for clarity */
    transition: color 0.3s ease;
}

.legalFoldBox a:hover {
    color: var(--primary-color); /* Change color on hover */
    text-decoration: none;
}

/* Responsive adjustments for .legalFoldBox padding on smaller screens */
@media (max-width: 768px) {
    .legalFoldBox {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .legalFoldBox {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .legalFoldBox h1 {
        font-size: 1.8em;
    }
    .legalFoldBox h2 {
        font-size: 1.5em;
    }
    .legalFoldBox h3 {
        font-size: 1.3em;
    }
    .legalFoldBox p,
    .legalFoldBox ul,
    .legalFoldBox ol,
    .legalFoldBox li {
        font-size: 0.95em; /* Slightly smaller text for very small screens */
    }
}


.menu-btn {
	width: 30px;
	height: 30px;
	position: relative;
	z-index:2;
	overflow: hidden;
}

.menu-btn .bar {
	width: 30px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
  border-radius: 4px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.menu-btn .bar:nth-of-type(2) {
	top: calc(50% - 9px);
}
.menu-btn .bar:nth-of-type(3) {
	top: calc(50% + 9px);
}

.menu-btn.active .bar:nth-of-type(1) {
  display: none;
}
.menu-btn.active .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}

.menu-btn {
    display: none;
}