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

.section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #e94560, #884dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1200px;
}

/* General Text Colors */
p, li, span {
    color: #c0c0c0;
}

/* Buttons */
.btn, .btn-large {
    background-color: #e94560;
    color: #ffffff;
    border-radius: 8px;
    text-transform: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    text-decoration: none !important;
}

.btn:hover, .btn-large:hover {
    background-color: #ff6b8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.secondary-btn {
    background-color: #533483;
    box-shadow: 0 4px 15px rgba(83, 52, 131, 0.4);
}

.secondary-btn:hover {
    background-color: #6b47a8;
    box-shadow: 0 6px 20px rgba(83, 52, 131, 0.6);
}

.primary-btn {
    background-color: #e94560;
}

.primary-btn:hover {
    background-color: #ff6b8a;
}

.btn-group .btn, .btn-group .btn-large {
    margin-right: 15px;
}

/* Top Info Bar */
.top-info-bar {
    background-color: #2e3b55;
    color: #a0a0a0;
    padding: 10px 0;
    font-size: 0.9em;
    text-align: center;
}

.top-info-bar p {
    margin: 0;
    color: #a0a0a0;
}

/* Header */
.main-header {
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('assets/pics/header-background_8.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 60px; /* Space for fixed navbar */
}

.main-header .navbar-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
}

.main-header .nav-wrapper {
    padding: 0 20px;
    width: 85%;
}

.main-header .brand-logo {
    display: flex;
    align-items: center;
    /*height: 64px;*/
    padding-left: 0;
}

.main-header .logo-img {
    height: 45px;
    margin-right: 10px;
}

.main-header .site-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.main-header .nav-wrapper ul li a {
    color: #ffffff;
    font-weight: 600;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.main-header .nav-wrapper ul li a:hover {
    color: #e94560;
    background-color: transparent;
}

.main-header .nav-wrapper .play-now-btn {
    margin-left: 20px;
}

.header-content {
    padding: 0 20px;
    max-width: 800px;
    margin-top: -80px; /* Adjust based on header height */
}

.header-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.header-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Sidenav for mobile */
.sidenav {
    background-color: #1a1a2e;
}

.sidenav li a {
    color: #e0e0e0;
    font-weight: 600;
}

.sidenav li a:hover {
    background-color: #2e3b55;
    color: #e94560;
}

/* Hero Section */
.hero-section {
    background-color: #1a1a2e;
    padding: 80px 0;
    min-height: 70vh;
}

.hero-section .section-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-cards-stack {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #e94560;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 3rem;
    display: block;
    line-height: 1;
}

.scroll-indicator p {
    font-size: 0.8rem;
    margin-top: -5px;
    color: #e94560;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Us Section */
.about-us-section {
    background-color: #2e3b55;
    padding: 80px 0;
}

.about-us-section .section-title {
    text-align: left;
    font-size: 2.8rem;
}

.about-us-section h3 {
    color: #e94560;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-us-section p {
    margin-bottom: 15px;
    color: #c0c0c0;
}

.about-img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.image-caption {
    font-style: italic;
    font-size: 0.9em;
    color: #a0a0a0;
    margin-top: 10px;
}

/* Advantages Section */
.advantages-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}

.advantages-section .section-title {
    font-size: 2.8rem;
}

.advantage-card {
    background-color: #2e3b55;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.advantage-card .card-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #e94560;
}

.advantage-card .card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #c0c0c0;
    text-align: center;
}

/* Values Section */
.values-section {
    background-color: #2e3b55;
    padding: 80px 0;
}

.values-section .section-title {
    font-size: 2.8rem;
}

#values .row{
    display: flex;
    flex-wrap: wrap;
}

.value-item {
    background-color: #1a1a2e;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 420px;
}
@media (max-width: 1558px) {
    .main-header .site-name {
        font-size: 1.4rem;
    }
    .main-header .nav-wrapper ul li a {
        padding: 0 7px;
    }
}
@media(max-width: 992px){
    .value-item{
        height: 320px;
    }
}

@media(max-width: 768px){
    .value-item{
        height: auto;
    }
}

@media(max-width: 480px){
    .main-header .nav-wrapper {
        width: auto;
    }
    .btn-group{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

#advantages .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}



.value-item i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #884dff;
}

.value-item h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-item p {
    color: #c0c0c0;
}

/* Game Selection Section */
.game-selection-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}

.game-selection-section .section-title {
    font-size: 2.8rem;
}

.game-grid .col {
    display: flex;
    align-items: stretch; /* Ensure equal height for cards */
}

.game-card {
    background-color: #2e3b55;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.game-card .card-image img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 200px; /* Fixed height for images */
    object-fit: contain;
    width: 100%;
    padding-top: 20px;
}

.game-card .card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card .card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.2;
}

.game-card .game-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    vertical-align: middle;
}

.game-card .game-review {
    font-style: italic;
    font-size: 0.9em;
    margin: 10px 0;
    color: #a0a0a0;
}

.game-card .btn {
    width: 100%;
    margin-top: 15px;
}

.game-card .card-reveal {
    background-color: #2e3b55;
    color: #e0e0e0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.game-card .card-reveal .card-title {
    color: #ffffff;
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e94560;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.game-modal-close:hover {
    background-color: #ff6b8a;
    transform: scale(1.1);
}

.game-modal-close i {
    color: #ffffff;
    font-size: 24px;
}

#gameIframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Leaderboards Section */
.leaderboards-section {
    background-color: #2e3b55;
    padding: 80px 0;
}

.leaderboards-section .section-title {
    font-size: 2.8rem;
}

.leaderboard-reset-info {
    color: #a0a0a0;
    font-style: italic;
    margin-bottom: 30px;
}

.leaderboard-list .col {
    display: flex;
    align-items: stretch;
}

.leaderboard-item {
    background-color: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex: 1;
    flex-direction: column;
    gap: 10px;
}

.leaderboard-info{
    width: 100%;
    text-align: center;
}

.leaderboard-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e94560;
}

.leaderboard-info h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
}

.leaderboard-info p {
    margin: 0;
    color: #c0c0c0;
    font-size: 0.9em;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}

.testimonials-section .section-title {
    font-size: 2.8rem;
}

.carousel {
    min-height: 300px; /* Ensure carousel has height */
}

.testimonial-card {
    background-color: #2e3b55;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    padding: 30px;
    margin: 0 10px; /* Spacing between cards */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; /* Let content define height */
    min-height: 250px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #884dff;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.testimonial-card span {
    font-weight: 600;
    color: #e94560;
}

.carousel .indicators .indicator-item {
    background-color: rgba(233, 69, 96, 0.4);
}

.carousel .indicators .indicator-item.active {
    background-color: #e94560;
}

/* FAQ & Support Section */
.faq-support-section {
    background-color: #2e3b55;
    padding: 80px 0;
}

.faq-support-section .section-title {
    font-size: 2.8rem;
}

.faq-collapsible {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

.faq-collapsible li {
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-collapsible li:last-child {
    margin-bottom: 0;
}

.faq-collapsible .collapsible-header {
    background-color: #1a1a2e;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.faq-collapsible .collapsible-header:hover {
    background-color: #3a476b;
}

.faq-collapsible .collapsible-header i {
    margin-right: 10px;
    color: #e94560;
}

.faq-collapsible .collapsible-body {
    background-color: #2e3b55;
    color: #c0c0c0;
    padding: 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.faq-collapsible .collapsible-body a {
    color: #e94560;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}

.contact-form-section .section-title {
    font-size: 2.8rem;
}

.contact-card {
    background-color: #2e3b55;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.contact-card .card-content {
    padding: 30px;
}

.input-field input, .input-field textarea {
    border-bottom: 1px solid #533483 !important;
    box-shadow: none !important;
    color: #e0e0e0 !important;
}

.input-field input:focus, .input-field textarea:focus {
    border-bottom: 1px solid #e94560 !important;
    box-shadow: 0 1px 0 0 #e94560 !important;
}

.input-field label {
    color: #c0c0c0 !important;
}

.input-field label.active {
    color: #e94560 !important;
}

.input-field .helper-text {
    color: #a0a0a0;
}

.input-field .helper-text[data-error]:after {
    color: #e94560;
}

.input-field .helper-text[data-success]:after {
    color: #884dff;
}

.contact-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('assets/pics/cta-background_13.jpg') no-repeat center center/cover;
    padding: 100px 0;
}

.cta-section .section-title {
    color: #ffffff;
    font-size: 3.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.cta-section p {
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #3a476b; /* Distinct background */
    padding: 50px 0;
    border-top: 5px solid #e94560; /* Top border */
    border-bottom: 5px solid #e94560; /* Bottom border */
    margin-top: 40px;
}

.disclaimer-content {
    background-color: #1a1a2e; /* Inner content background */
    border: 1px solid #e94560; /* Border around content */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.disclaimer-icon {
    font-size: 4rem;
    color: #e94560;
    margin-bottom: 20px;
}

.disclaimer-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

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

/* Footer */
.page-footer {
    background-color: #1a1a2e;
    padding-top: 40px;
}
.footer__row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.page-footer h5 {
    color: #e94560;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-footer p {
    color: #c0c0c0;
    max-width: 450px;
}

.page-footer ul li a {
    color: #c0c0c0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.page-footer ul li a:hover {
    color: #e94560;
}

.profile-tracker {
    background-color: #2e3b55;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.profile-tracker .profile-level {
    font-size: 1.5rem;
    font-weight: 600;
    color: #884dff;
    margin-bottom: 15px;
}

.footer-copyright {
    background-color: #131320;
    padding: 20px 0;
    color: #a0a0a0;
    font-size: 0.9em;
}

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

.responsible-gaming-logos img {
    max-width: 120px;
    height: auto;
    display: block;
    filter: none; /* Ensure no grayscale */
    transition: transform 0.3s ease;
}

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

.responsible-gaming-logos .age-icon {
    max-width: 60px;
    height: auto;
    vertical-align: middle;
}

/* Age Verification Modal */
.age-modal {
    background-color: #2e3b55;
    color: #e0e0e0;
    border-radius: 12px;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.age-modal h4 {
    color: #e94560;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.age-modal p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.age-modal .modal-footer {
    background-color: transparent;
    border-top: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.age-modal .age-confirm-btn {
    background-color: #e94560;
}

.age-modal .age-deny-btn {
    background-color: #533483;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: #2e3b55;
    color: #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: none; /* Hidden by default */
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.cookie-banner .card-content {
    padding: 20px;
}

.cookie-banner p {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #c0c0c0;
}

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

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cookie-buttons .btn {
    flex: 1;
    font-size: 0.9em;
    padding: 0 10px;
    height: 36px;
    line-height: 36px;
}

/* Cookie Settings Modal */
.cookie-modal {
    background-color: #2e3b55;
    color: #e0e0e0;
    border-radius: 12px;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.cookie-modal h4 {
    color: #e94560;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-modal p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.cookie-modal form .switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal form .switch:last-of-type {
    border-bottom: none;
}

.cookie-modal form .switch label {
    color: #e0e0e0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.cookie-modal form .switch label input[type=checkbox]:checked + .lever {
    background-color: #884dff;
}

.cookie-modal form .switch label input[type=checkbox]:checked + .lever:after {
    background-color: #e94560;
}

.cookie-modal .modal-footer {
    background-color: transparent;
    border-top: none;
    padding: 0;
    text-align: center;
}

.cookie-modal .modal-footer .btn {
    width: auto;
    padding: 0 30px;
}

/* Utility classes */
.primary-text-color {
    color: #e94560 !important;
}

.accent-text-color {
    color: #884dff !important;
}

/* Responsive adjustments */
@media only screen and (max-width: 992px) {
    .main-header .nav-wrapper .brand-logo {
        left: 50%;
        transform: translateX(-50%);
    }
    .main-header .nav-wrapper .sidenav-trigger {
        left: 20px;
        right: auto;
    }
    .main-header h1 {
        font-size: 3.5rem;
    }
    .main-header p {
        font-size: 1.2rem;
    }
    .hero-section .row.valign-wrapper {
        flex-direction: column;
    }
    .hero-section .col.s12.m6.l6 {
        text-align: center;
    }
    .hero-section .section-title {
        text-align: center;
    }
    .hero-cards-stack {
        margin-top: 40px;
    }
    .about-us-section .col.s12.m6.l6 {
        text-align: center;
    }
    .about-us-section .section-title {
        text-align: center;
    }
    .about-img {
        margin-bottom: 30px;
    }
    .game-grid .col {
        margin-bottom: 20px;
    }
    .leaderboard-list .col {
        margin-bottom: 20px;
    }
    .testimonial-card {
        margin: 0 5px;
    }
    .cookie-banner {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons .btn {
        margin-bottom: 10px;
    }
}
@media (max-width: 700px) {
    .footer__row {
        justify-content: start;
    }
}
@media only screen and (max-width: 600px) {
    .main-header h1 {
        font-size: 2.8rem;
    }
    .main-header p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .main-header .logo-img {
        height: 40px;
    }
    .btn-large {
        font-size: 1rem;
        height: 48px;
        line-height: 48px;
    }
    .game-card .card-image img {
        height: 180px;
    }
    .game-card .card-title {
        font-size: 1.4rem;
    }
    .leaderboard-item {
        flex-direction: column;
        text-align: center;
    }
    .leaderboard-item img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .disclaimer-title {
        font-size: 2rem;
    }
    .responsible-gaming-logos {
        gap: 10px;
    }
    .responsible-gaming-logos img {
        max-width: 80px;
    }
    .responsible-gaming-logos .age-icon {
        max-width: 40px;
    }
}

/* Body scroll lock */
body.modal-open {
    overflow: hidden;
}
/* Wrapper styles for the policy content */
.policyScopeWrap {
    padding-top: 2rem; /* Top padding for the content area */
    padding-bottom: 2rem; /* Bottom padding for the content area */
    padding-left: 1.5rem; /* Left padding for the content area */
    padding-right: 1.5rem; /* Right padding for the content area */
    /* Consider adding max-width for better readability on larger screens if needed */
    /* max-width: 768px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles */
.policyScopeWrap h1 {
    font-size: 2rem; /* Moderate font size for H1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for better readability */
    margin-top: 2.5rem; /* Top margin to separate from preceding content */
    margin-bottom: 1rem; /* Bottom margin to separate from following content */
}

/* Heading 2 styles */
.policyScopeWrap h2 {
    font-size: 1.75rem; /* Moderate font size for H2 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

/* Heading 3 styles */
.policyScopeWrap h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
}

/* Heading 4 styles */
.policyScopeWrap h4 {
    font-size: 1.25rem; /* Moderate font size for H4 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

/* Heading 5 styles */
.policyScopeWrap h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* Unordered list styles */
.policyScopeWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Top margin for the list */
    margin-bottom: 1em; /* Bottom margin for the list */
    padding-left: 1.5em; /* Indent for bullet points */
}

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

.cookie-buttons{
    padding-top: 10px;
}

.testimonials-section {
  padding: 80px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}

.testimonial-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.testimonial-card span {
  display: block;
  font-weight: 600;
  color: #ccc;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
  }

}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.testimonial-card span {
  display: block;
  font-weight: 600;
  color: #ccc;
  font-size: 0.9rem;
}

.footerLogo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footerLogo img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footerLogo h2{
    margin: 0;
    font-size: clamp(16px,2.5vw,19px);
    color: #fff;
}

.navbar-fixed nav {
    position: static;
}

#about-us{
    overflow: hidden !important;
}

.hiddendiv{
    width: auto !important;
}

#confirmAgeBtn,#denyAgeBtn{
    display: flex;
    justify-content: center;
}