body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f1a;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #00e5ff;
    text-decoration: none;
}

a:hover {
    color: #00bcd4;
}

.button {
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.button.primary {
    background-color: #00e5ff;
    color: #1a1a2e;
}

.button.primary:hover {
    background-color: #00bcd4;
    color: #0f0f1a;
    transform: translateY(-2px);
}

.button.secondary {
    background-color: #4a4a6b;
    color: #ffffff;
}

.button.secondary:hover {
    background-color: #5a5a7b;
    transform: translateY(-2px);
}

.button.alert {
    background-color: #dc3545;
    color: #ffffff;
}

.button.alert:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.button.tertiary {
    background-color: transparent;
    border: 2px solid #00e5ff;
    color: #00e5ff;
}

.button.tertiary:hover {
    background-color: #00e5ff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.section-block {
    padding: 4rem 0;
    position: relative;
}

.section-block:nth-of-type(even) {
    background-color: #1a1a2e;
}

.mb-5{
    margin-bottom: 30px;
}



.section-title {
    display: flex !important;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #00e5ff, #8e24aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.top-warning-bar {
    background-color: #dc3545; /* Bright red for warning */
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.top-warning-bar p {
    margin-bottom: 0;
}

.header {
    background-color: rgba(15, 15, 26, 0.95); /* Slightly transparent dark background */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header .logo {
    height: 40px;
    width: auto;
}

.main-nav .menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav .menu li {
    display: inline-block;
    margin-left: 1.5rem;
}

.main-nav .menu a {
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav .menu a:hover {
    color: #00e5ff;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 6rem 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

/* Editor's Rating */
.editor-rating-section {
    padding: 3rem 0;
    background-color: #1a1a2e;
}

.editor-summary-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.editor-summary-card .section-title {
    margin-bottom: 1rem;
}

.editor-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 1rem;
}

.editor-score .stars {
    font-size: 1.8rem;
    color: #ffc107;
    margin-top: 0.5rem;
}

.editor-summary {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.expert-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    color: #a0a0a0;
}

.expert-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #00e5ff;
}

.expert-name {
    font-weight: 600;
}

/* Platform Card (Rating Grid - 1 column) */
.platform-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.2);
}

.platform-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.platform-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #00e5ff;
}

.platform-details p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.platform-features {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.platform-features li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.platform-features i {
    color: #00e5ff;
    margin-right: 0.5rem;
}

.platform-license {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 1rem;
}

.platform-license i {
    margin-right: 0.5rem;
    color: #ffc107;
}

.platform-rating {
    display: flex;
    align-items: center;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

.platform-rating .rating-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: #ffffff;
}

.platform-rating .stars {
    font-size: 1.1rem;
    color: #ffc107;
    margin-right: 0.5rem;
}

.platform-rating .rating-value {
    color: #c0c0c0;
}

.platform-bonus {
    font-size: 1rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    background-color: darkgreen;
    padding: 0.8rem;
    border-radius: 5px;
}

.start-playing-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* About Us Section */
.about-us-section h3 {
    color: #00e5ff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-us-section p {
    color: #c0c0c0;
}

.about-list {
    margin-top: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.about-list li i {
    color: #00e5ff;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.about-list li strong {
    color: #ffffff;
}

/* Reliability Section */
.reliability-section {
    background-image: url('img/content/reliability-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 0;
}

.reliability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.reliability-section .grid-container {
    position: relative;
    z-index: 2;
}

.reliability-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.thankYouContainer{
    font-size: 20px;
    padding: 100px 0;
}

.reliability-card {
    background-color: rgba(42, 42, 74, 0.9);
    border: 1px solid rgba(58, 58, 90, 0.8);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.reliability-card:hover {
    transform: translateY(-5px);
    background-color: rgba(52, 52, 84, 0.95);
}

.reliability-card i {
    color: #00e5ff;
    margin-bottom: 1rem;
}

.reliability-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.reliability-card p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

/* Rating List (Other Featured Platforms) */
.responsive-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.rating-list-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.footer .logo-link h5{
    margin-bottom: 1rem;
}

.rating-list-table th,
.rating-list-table td {
    padding: 1rem;
    border-bottom: 1px solid #3a3a5a;
    text-align: left;
    color: #000;
}

.rating-list-table th {
    background-color: #1a1a2e;
    color: #00e5ff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.rating-list-table tbody tr:hover {
    background-color: #3a3a5a;
}

.rating-list-table .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-list-table .button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Platform Details Modal */
.reveal {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.reveal h2 {
    color: #00e5ff;
    margin-bottom: 1.5rem;
}

.reveal .close-button {
    color: #e0e0e0;
}

.reveal .close-button:hover {
    color: #dc3545;
}

.modal-body-content p {
    margin-bottom: 0.8rem;
}

.modal-body-content ul {
    margin-left: 1.5rem;
    list-style: disc;
}

.modal-body-content ul li {
    margin-bottom: 0.5rem;
}

/* User Reviews */
.reviews-grid .review-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #00e5ff;
}

.reviewer-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.review-info .stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.review-text {
    color: #c0c0c0;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #a0a0a0;
    text-align: right;
    display: block;
}

.load-more-button {
    margin-top: 2rem;
}

/* Bonus List */
.bonus-grid .bonus-card {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(142, 36, 170, 0.2);
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-icon {
    color: #8e24aa;
    font-size: 2rem;
    margin-right: 1rem;
}

.bonus-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.4rem;
}

.bonus-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.bonus-body p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.bonus-conditions {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.bonus-conditions li {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.bonus-footer {
    margin-top: auto;
    text-align: center;
}

.bonus-expiry {
    display: block;
    font-size: 0.85rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.bonus-expiry i {
    margin-right: 0.5rem;
}

.bonus-card .button {
    width: 100%;
}

/* Contact Form */
.contact-form-section {
    background-color: #1a1a2e;
}

.contact-form {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.contact-form label {
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: #1a1a2e;
    border: 1px solid #3a3a5a;
    color: #ffffff;
    padding: 0.8rem;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #808080;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
    outline: none;
}

.contact-form .form-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: block;
}

.submit-form-button {
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    background-image: url('img/content/faq-bg_2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 0;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.faq-section .grid-container {
    position: relative;
    z-index: 2;
}

.faq-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.accordion {
    border: none;
}

.accordion-item {
    background-color: #2a2a4a;
    border: 1px solid #3a3a5a;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.accordion-title {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.accordion-title:hover {
    color: #00e5ff;
}

.accordion-title::before {
    color: #00e5ff;
    font-size: 1.2rem;
}

.accordion-item.is-active .accordion-title::before {
    color: #dc3545;
}

.accordion-content {
    background-color: #1a1a2e;
    border-top: 1px solid #3a3a5a;
    padding: 1rem 1.5rem;
    color: #c0c0c0;
    font-size: 0.95rem;
}

/* Disclaimer Block */
.disclaimer-section {
    background-color: #3a2a1a; /* Dark amber/brown for warning */
    padding: 3rem 0;
    color: #fff8e1;
    border-top: 5px solid #ffc107;
    border-bottom: 5px solid #ffc107;
    margin-top: 4rem;
}

.disclaimer-content {
    background-color: #4a3a2a;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.disclaimer-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #3a2a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.disclaimer-title {
    color: #ffc107;
    margin-top: 1.5rem;
    font-size: 1.8rem;
}

.disclaimer-content p {
    color: #fff8e1;
    margin-bottom: 1rem;
}

.help-links {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.help-links li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.help-links a {
    color: #00e5ff;
    font-weight: 600;
}

.help-links a:hover {
    color: #00bcd4;
}

.age-restriction {
    font-weight: 700;
    color: #dc3545;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background-color: #0f0f1a;
    color: #c0c0c0;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid #2a2a4a;
}

.footer .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.8;
}

.copyright {
    font-size: 0.8rem;
    margin-top: 2rem;
    color: #808080;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #c0c0c0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00e5ff;
}

.footer-bottom {
    border-top: 1px solid #2a2a4a;
    padding-top: 2rem;
    margin-top: 2rem;
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.gaming-logo {
    max-width: 120px;
    height: auto;
    display: block;
}

.gaming-logo.18plus-icon {
    max-width: 60px;
}

/* Modals */
.full-screen-modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.full-screen-modal .modal-content-wrapper {
    background-color: #1a1a2e;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.full-screen-modal .modal-title {
    color: #00e5ff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.full-screen-modal .modal-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.logo-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logo-link h5{
    margin: 0;
}

.full-screen-modal .button-group .button {
    margin: 0 0.5rem;
    min-width: 150px;
}

.button-group{
    gap: 15px;
    justify-content: center;
}

.cookie-modal .cookie-policy-link {
    display: block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cookie-settings {
    text-align: left;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #2a2a4a;
    border-radius: 8px;
    border: 1px solid #3a3a5a;
}

.switch-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: #e0e0e0;
}

.switch-label input {
    display: none;
}

.switch-slider {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #606060;
    border-radius: 20px;
    margin-right: 1rem;
    transition: background-color 0.3s;
}

.switch-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.switch-label input:checked + .switch-slider {
    background-color: #00e5ff;
}

.switch-label input:checked + .switch-slider::before {
    transform: translateX(20px);
}

.switch-label input:disabled + .switch-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-description {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-left: 3.5rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.cookie-settings .button {
    margin-top: 1.5rem;
}

.cookie-main-buttons {
    margin-top: 2rem;
}



/* Responsive Adjustments */
@media screen and (max-width: 767px) {
    .header .logo {
        height: 35px;
    }

    .main-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

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

    .editor-score {
        font-size: 2rem;
    }

    .editor-score .stars {
        font-size: 1.5rem;
    }

    .platform-card .grid-x .cell {
        text-align: center;
    }

    .platform-logo {
        margin: 0 auto 1rem auto;
    }

    .start-playing-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .responsive-table table {
        border: 0;
    }

    .responsive-table thead {
        display: none;
    }

    .responsive-table tr {
        margin-bottom: 1rem;
        display: block;
        border: 1px solid #3a3a5a;
        border-radius: 10px;
        background-color: #2a2a4a;
    }

    .responsive-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px dashed #3a3a5a;
    }

    .responsive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: #00e5ff;
    }

    .responsive-table td:last-child {
        border-bottom: 0;
    }

    .reviews-grid .cell, .bonus-grid .cell {
        width: 100%;
    }

    .footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        margin-top: 2rem;
    }

    .responsible-gaming-logos {
        flex-direction: column;
        gap: 1rem;
    }

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

    .full-screen-modal .modal-title {
        font-size: 2rem;
    }

    .full-screen-modal .modal-text {
        font-size: 1rem;
    }

    .full-screen-modal .button-group .button {
        min-width: unset;
        width: 100%;
        margin: 0.5rem 0;
    }

    .cookie-description {
        margin-left: 0;
        text-align: center;
    }

    .switch-label {
        justify-content: center;
    }
}

@media screen and (max-width: 400px) {
    .help-links a{
        font-size: 13px;
    }
}
.rightsCloudWrap {
    /* Wrapper container base spacing */
    margin-top: 2.5rem; /* Top margin for the entire section */
    padding-left: 1.5rem; /* Left padding for content */
    padding-right: 1.5rem; /* Right padding for content */
    /* Optional: Add max-width and center for better readability on large screens */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.rightsCloudWrap h1 {
    /* Heading 1 styles */
    font-size: 2.2rem; /* Reduced font size for h1 */
    line-height: 1.2;
    margin-top: 2.5rem; /* Space above h1 */
    margin-bottom: 1rem; /* Space below h1 */
    font-weight: 700; /* Bold font weight */
}

.rightsCloudWrap h2 {
    /* Heading 2 styles */
    font-size: 1.8rem; /* Reduced font size for h2 */
    line-height: 1.3;
    margin-top: 2rem; /* Space above h2 */
    margin-bottom: 0.9rem; /* Space below h2 */
    font-weight: 600; /* Semi-bold font weight */
}

.rightsCloudWrap h3 {
    /* Heading 3 styles */
    font-size: 1.5rem; /* Reduced font size for h3 */
    line-height: 1.4;
    margin-top: 1.8rem; /* Space above h3 */
    margin-bottom: 0.8rem; /* Space below h3 */
    font-weight: 600; /* Semi-bold font weight */
}

.rightsCloudWrap h4 {
    /* Heading 4 styles */
    font-size: 1.3rem; /* Reduced font size for h4 */
    line-height: 1.5;
    margin-top: 1.5rem; /* Space above h4 */
    margin-bottom: 0.7rem; /* Space below h4 */
    font-weight: 500; /* Medium font weight */
}

.rightsCloudWrap h5 {
    /* Heading 5 styles */
    font-size: 1.15rem; /* Reduced font size for h5 */
    line-height: 1.6;
    margin-top: 1.2rem; /* Space above h5 */
    margin-bottom: 0.6rem; /* Space below h5 */
    font-weight: 500; /* Medium font weight */
}

.rightsCloudWrap p {
    /* Paragraph styles */
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Line height for readability */
    margin-top: 0; /* No top margin by default, let headings define spacing */
    margin-bottom: 1rem; /* Space below paragraphs */
}

.rightsCloudWrap ul {
    /* Unordered list styles */
    font-size: 1rem; /* Inherit or set base font size */
    line-height: 1.6; /* Line height for list items */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 2.5rem; /* Indentation for bullet points */
    list-style-type: disc; /* Default bullet style */
}

.rightsCloudWrap li {
    /* List item styles */
    margin-bottom: 0.5rem; /* Space between list items */
}
