/* Basic reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
}

.header__logo-side {
    display: flex;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    height: 30px;
}

.header__menu-toggler {
    display: none;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    margin-left: 15px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.header__nav-side {
    display: flex;
    align-items: center;
}

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

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

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #dd00ff;
}

.user-actions {
    display: flex;
    margin-left: 30px;
}

.register-button, .login-button {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s;
}

.register-button {
    background-color: #dd00ff;
    color: #000;
}

.register-button:hover {
    background-color: #77ff00;
    transform: translateY(-2px);
}

.login-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main page structure */
.main-page {
    display: block;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.main-rec-hot {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-rec-hot__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
}

.main-rec-hot__bg:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}

.main-slider {
    position: relative;
    margin-bottom: 125px;
}

.main-slider__content {
    position: relative;
    height: 560px;
}

.main-slider__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s ease, visibility 0.75s ease;
    pointer-events: none;
}

.main-slider__item--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.kh-gX {
    height: 100%;
}

.kh-gX .CeoF3 {
    height: 100%;
}

.kh-gX .uIL4l {
    background-size: cover;
    position: relative;
    height: 100%;
}

.kh-gX .f5AYr {
    position: absolute;
    width: auto;
    max-height: 100%;
    bottom: 0;
    right: 10%;
}

/* Add customizable text overlay on live image for desktop */
/* To customize the text, change the data-custom-text attribute in the HTML */
.kh-gX .f5AYr::before {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 10;
    text-align: center;
    width: 100%;
    content: attr(data-custom-text);
}

/* Add customizable text overlay on live image for mobile */
/* To customize the text, change the data-custom-text attribute in the HTML */
.kh-gX .f5AYr::before {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 10;
    text-align: center;
    width: 100%;
}

.kh-gX .AR97i {
    width: 1170px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.kh-gX .lrQ3q {
    width: 50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-shadow: 0 0 5px #000;
    position: relative;
    z-index: 2;
}

/* Semi-transparent background for hero title */
.hero-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1;
}

/* New class for text and button background */
.hero-content-overlay {
    position: absolute;
    top: 450px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    padding: 20px 30px;
    border-radius: 10px;
    z-index: 11;
    text-align: center;
    min-width: 300px;
}

.kh-gX .lrQ3q .heading--h1 {
    font-weight: 900;
    width: 100%;
    line-height: 1.2;
    font-size: 48px;
    margin-bottom: 20px;
}

.kh-gX .lrQ3q .heading--h1 span {
    display: block;
    margin-bottom: 10px;
}

.kh-gX .-a7Gi {
    max-width: 85%;
    width: 370px;
    height: 270px;
    padding: 0;
    position: relative;
    margin-bottom: 30px;
}

.kh-gX ._6TsBO {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    font-size: 20px;
    text-align: left;
}

.kh-gX .sMvMY {
    display: none;
    justify-content: flex-start;
}

.app-button {
    background: #dd00ff;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 3;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Ensure proper styling as a button */
    box-shadow: none; /* Remove shadow */
}

.app-button:hover {
    background: #77ff00;
    transform: translateY(-2px);
    text-decoration: none; /* Ensure no underline on hover */
    box-shadow: none; /* Ensure no shadow on hover */
}

/* Hottest games section */
.hottest {
    min-height: 482px;
    position: relative;
    padding: 50px 0;
}

.hottest__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 482px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hottest__bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hottest__bg-rock {
    height: 110px;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background: #000;
}

.hottest__content {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.hottest__content .heading--h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #dd00ff;
        text-shadow: 2px 2px 2px #000,
                1px 1px 2px red,
                0 0 1em rgb(255, 0, 255),
                0 0 0.2em rgb(255, 238, 0);
}

.hottest__content-title {
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 777; 
            text-shadow: 2px 2px 2px #000,
                1px 1px 2px red,
                0 0 1em blue,
                0 0 0.2em blue;
}

.hottest__games {
    display: flex;
    justify-content: center;
}

.hottest__carousel {
    position: relative;
    padding-top: 7px;
    width: 100%;
}

.hottest__carousel-item {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hottest__carousel-game-wrapper {
    padding: 10px;
    display: block;
}

.game-item {
    width: 180px;
    background: hsla(156, 62%, 44%, 0.153);
    border-radius: 10px;
    border: 1px solid rgb(222, 217, 217);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.game-item:hover {
    transform: translateY(-10px);
}

.game-item__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.game-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-item__info {
    padding: 15px;
    text-align: center;
    height: 65px;
    color: rgb(255, 255, 255);
}

.game-item__info h3 {
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
text-shadow: 2px 2px 2px#a13a92,
1px 1px 2px rgb(3, 3, 65),
0 0 1em rgb(8, 8, 55),
0 0 0.2em blue;
}

/* Game item overlay styles */
.game-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-item__overlay {
    opacity: 1;
}

.game-item__button {
    padding: 10px 20px;
    margin: 5px 0;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    max-width: 120px;
}

.game-item__button--demo {
    background: #1e90ff;
    color: white;
    z-index: 8;
}

.game-item__button--demo:hover {
    background: #0066cc;
    transform: translateY(-2px);
}

.game-item__button--play {
    background: #32cd32;
    color: white;
    z-index: 11!important;
}

.game-item__button--play:hover {
    background: #228b22;
    transform: translateY(-2px);
}

.hottest__button-wrapper {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

/* New games section */
.new-games {
    min-height: 762px;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 50px;
}

.new-games__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
}

.new-games__content {
    position: relative;
    z-index: 5;
    padding-top: 280px;
    margin-bottom: 40px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 280px 15px 40px;
}

.new-games__content .heading--h2 {
    color: #dd00ff;
    margin-bottom: 24px;
    text-align: center;
    font-size: 36px;
        text-shadow: 2px 2px 2px #000,
                1px 1px 2px red,
                0 0 1em blue,
                0 0 0.2em blue;
}

.new-games__content-title {
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
    margin-bottom: 48px;
    font-size: 20px;
    font-weight: 777; 
            text-shadow: 2px 2px 2px #000,
                1px 1px 2px red,
                0 0 1em blue,
                0 0 0.2em blue;
}

.new-games__carousel {
    position: relative;
    padding-top: 7px;
    width: 100%;
}

.new-games__carousel-item {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.new-games__carousel-game-wrapper {
    padding: 10px;
    display: block;
}

.new-games__carousel-game-wrapper .game-item {
    width: 180px;
    margin: 0 auto;
}

/* Carousel navigation styles */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hottest__carousel:hover .carousel-nav,
.new-games__carousel:hover .carousel-nav {
    opacity: 1;
    visibility: visible;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-nav--prev {
    left: 10px;
}

.carousel-nav--next {
    right: 10px;
}

/* Image wrapper styles */
.image-wrapper {
    position: center;
    display: inline-block;
}

.image-wrapper--with-info {
    display: block;
    position: relative;
}

.image-extra-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 5; /* Ensure it's above the image */
}
.live-casino-image .img {
    width: 50% !important;
    width: 50% !important;
    object-fit: scale-down;
}
.online-players, .rtp-indicator {
    display: flex;
    align-items: center;
}

.online-players-icon, .rtp-arrow {
    margin-right: 5px;
    font-size: 14px;
}

/* Background image styles */
.main-rec-hot__bg-image,
.banner__bg,
.hottest__bg-image,
.new-games__bg-image,
.vip-section__bg-image {
    width: 100%;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

/* VIP Section Styles */
.vip-section {
    min-height: 600px;
    position: relative;
    padding: 50px 0;
    margin-bottom: 40px;
}

.vip-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.vip-section__content {
    position: relative;
    z-index: 5;
    max-width: 1170px;
    margin: 0 auto;
    padding: 100px 15px 40px;
    text-align: center;
}

.vip-section__content .heading--h2 {
    color: #dd00ff;
    text-shadow: 2px 2px 2px #000,
                1px 1px 2px red,
                0 0 1em blue,
                0 0 0.2em blue;
    margin-bottom: 24px;
    font-size: 36px;
}

.vip-section__content-title {
    margin: 0 auto;
    max-width: 600px;
    font-size: 20px;
    font-weight: 777; 
            text-shadow: 2px 2px 2px #000,
                1px 1px 2px red,
                0 0 1em blue,
                0 0 0.2em blue;
}

.vip-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.vip-benefit {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.vip-benefit:hover {
    transform: translateY(-10px);
}

.vip-benefit__icon {
    margin-bottom: 20px;
}

.vip-benefit__image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.vip-benefit h3 {
    color: #dd00ff;
    font-size: 20px;
    margin-bottom: 15px;
}

.vip-benefit p {
    font-size: 16px;
    line-height: 1.5;
}

.vip-section__button-wrapper {
    padding-top: 20px;
}

/* Footer styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px 20px;
    border-top: 1px solid #333;
}

.footer__content {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer__section h3 {
    color: #dd00ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer__section ul {
    list-style: none;
}

.footer__section li {
    margin-bottom: 10px;
}

.footer__section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__section a:hover {
    color: #dd00ff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #dd00ff;
    color: #000;
}

.footer__bottom {
    max-width: 1170px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Cookie bar styles */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.cookie-bar p {
    display: inline-block;
    margin: 0;
    font-size: 14px;
}

.cookie-accept {
    background: #dd00ff;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    margin-left: 15px;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: #77ff00;
}

/* Mobile-first responsive design */
/* Base styles for mobile */
@media screen and (max-width: 767.99px) {
    /* Reduce all mobile sizes by 15% */
    body {
        font-size: 0.85em; /* 15% smaller */
    }
    
    .header {
        flex-direction: row;
        align-items: center;
        padding: 8.5px 12.75px; /* 15% smaller */
        height: 51px; /* 15% smaller */
    }
    
    .header__logo-side {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .header__menu-toggler {
        display: block;
        margin-left: 8.5px; /* 15% smaller */
        padding: 4.25px 8.5px; /* 15% smaller */
        font-size: 11.9px; /* 15% smaller */
    }
    
    .header__nav-side {
        display: flex;
        align-items: center;
    }
    
    .main-nav {
        display: none;
    }
    
    .user-actions {
        display: flex;
        margin: 0 0 0 8.5px; /* 15% smaller */
    }
    
    /* Make menu buttons even smaller (15% smaller than already reduced size) */
    .register-button, .login-button {
        padding: 5.78px 8.67px; /* 15% smaller than 15% reduced size */
        font-size: 8.67px; /* 15% smaller than 15% reduced size */
        margin: 0 2.17px; /* 15% smaller than 15% reduced size */
        width: auto;
        max-width: none;
    }
    
    /* Mobile menu overlay */
    .header__nav-side.mobile-menu-active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(26, 26, 26, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .mobile-menu-active .main-nav {
        display: block;
        margin-bottom: 25.5px; /* 15% smaller */
    }
    
    .mobile-menu-active .main-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-active .main-nav li {
        margin: 12.75px 0; /* 15% smaller */
    }
    
    .mobile-menu-active .user-actions {
        display: flex;
        margin: 0;
    }
    
    /* Mobile menu close button - 15% smaller than already reduced size */
    .mobile-menu-close {
        position: absolute;
        top: 14.45px; /* 15% smaller than 15% reduced size */
        right: 14.45px; /* 15% smaller than 15% reduced size */
        background: none;
        border: none;
        color: white;
        font-size: 17.34px; /* 15% smaller than 15% reduced size */
        cursor: pointer;
        width: 21.675px; /* 15% smaller than 15% reduced size */
        height: 21.675px; /* 15% smaller than 15% reduced size */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    
    .main-page {
        margin-top: 51px; /* 15% smaller - Account for mobile header */
    }
    
    .main-slider__content {
        height: 425px; /* 15% smaller */
    }
    
    .kh-gX .lrQ3q .heading--h1 {
        font-size: 26.35px; /* 15% smaller */
        margin-bottom: 12.75px; /* 15% smaller */
    }
    
    .kh-gX ._6TsBO {
        font-size: 13.6px; /* 15% smaller */
    }
    
    .app-button {
        padding: 10.2px 21.25px; /* 15% smaller */
        font-size: 13.6px; /* 15% smaller */
        text-decoration: none; /* Remove underline on mobile */
        box-shadow: none; /* Remove shadow on mobile */
    }
    
    .hottest {
        min-height: auto;
        padding: 25.5px 0; /* 15% smaller */
    }
    
    .hottest__content .heading--h2 {
        font-size: 23.8px; /* 15% smaller */
    }
    
    .hottest__carousel-item {
        flex-direction: column;
        align-items: center;
    }
    
    .new-games__carousel-item {
        flex-direction: column;
        align-items: center;
    }
    
    .game-item {
        width: 119px; /* 15% smaller */
    }
    
    .game-item__image {
        height: 170px; /* 15% smaller */
    }
    
    /* Adjust button sizes for mobile - 15% smaller than already reduced size */
    .game-item__button {
        padding: 6.8px 13.6px; /* 15% smaller */
        margin: 3.4px 0; /* 15% smaller */
        width: 80%;
        max-width: 85px; /* 15% smaller */
        font-size: 11.9px; /* 15% smaller */
    }
    
    .new-games {
        min-height: 425px; /* 15% smaller */
        margin-bottom: 34px; /* 15% smaller */
        padding-top: 4.25px; /* 15% smaller */
        padding-bottom: 4.25px; /* 15% smaller */
    }
    
    .new-games__content {
        padding-top: 153px; /* 15% smaller */
    }
    
    .new-games__content .heading--h2 {
        font-size: 23.8px; /* 15% smaller */
    }
    
    .new-games__carousel-game-wrapper .game-item {
        width: 119px; /* 15% smaller */
    }
    
    .new-games__bg-image {
        min-height: 425px; /* 15% smaller */
        margin-bottom: 34px; /* 15% smaller */
        padding-top: 4.25px; /* 15% smaller */
        padding-bottom: 4.25px; /* 15% smaller */
    }
    
    .carousel-nav {
        width: 25.5px; /* 15% smaller */
        height: 25.5px; /* 15% smaller */
        font-size: 15.3px; /* 15% smaller */
    }
    
    .carousel-nav--prev {
        left: 4.25px; /* 15% smaller */
    }
    
    .carousel-nav--next {
        right: 4.25px; /* 15% smaller */
    }
    
    .hottest__carousel {
        overflow: hidden;
        scroll-behavior: smooth;
    }
    
    .hottest__carousel-item {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .hottest__carousel-game-wrapper {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 80%;
        margin-right: 12.75px; /* 15% smaller */
    }
    
    .new-games__carousel {
        overflow: hidden;
        scroll-behavior: smooth;
    }
    
    .new-games__carousel-item {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .new-games__carousel-game-wrapper {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 80%;
        margin-right: 12.75px; /* 15% smaller */
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cookie-bar {
        text-align: center;
    }
    
    .cookie-bar p {
        display: block;
        margin-bottom: 8.5px; /* 15% smaller */
    }
    
    .cookie-accept {
        margin-left: 0;
    }
    
    .vip-section {
        min-height: 425px; /* 15% smaller */
        padding: 25.5px 0; /* 15% smaller */
    }
    
    .vip-section__content {
        padding: 68px 12.75px 25.5px; /* 15% smaller */
    }
    
    .vip-section__content .heading--h2 {
        font-size: 23.8px; /* 15% smaller */
    }
    
    .vip-benefits {
        gap: 17px; /* 15% smaller */
    }
    
    .vip-benefit {
        min-width: 100%;
        max-width: 100%;
        padding: 25.5px 17px; /* 15% smaller */
    }
    
    .vip-benefit__image {
        width: 51px; /* 15% smaller */
        height: 51px; /* 15% smaller */
    }
    
    .vip-benefit h3 {
        font-size: 17px; /* 15% smaller */
    }
    
    .vip-benefit p {
        font-size: 13.6px; /* 15% smaller */
    }
    
    /* Fix for live image centering on mobile */
    .kh-gX .f5AYr {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
    
    /* Add customizable text overlay on live image for mobile */
    /* To customize the text, change the data-custom-text attribute in the HTML */
    .kh-gX .f5AYr::before {
        position: absolute;
        top: 340px; /* 15% smaller */
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 0.9rem; /* 15% smaller */
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8);
        background-color: black;
        z-index: 10;
        text-align: center;
        width: 100%;
    }
    
    /* Ensure online players count is visible on mobile */
    .image-extra-info {
        display: flex !important;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.7);
        padding: 4.25px 8.5px; /* 15% smaller */
        border-radius: 4px;
        font-size: 10.2px; /* 15% smaller */
        z-index: 5; /* Ensure it's above the image */
    }
    
    .online-players, .rtp-indicator {
        display: flex;
        align-items: center;
    }
    
    .online-players-icon, .rtp-arrow {
        margin-right: 4.25px; /* 15% smaller */
        font-size: 11.9px; /* 15% smaller */
    }
    
    /* Adjust hero content overlay for mobile */
    .hero-content-overlay {
        top: 382.5px; /* 15% smaller */
        padding: 17px 25.5px; /* 15% smaller */
        min-width: 255px; /* 15% smaller */
    }
}

/* Tablet styles */
@media screen and (min-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
    }
    
    .header__menu-toggler {
        display: none;
    }
    
    .header__nav-side {
        display: flex;
        width: auto;
        margin-top: 0;
    }
    
    .main-nav ul {
        flex-direction: row;
    }
    
    .main-nav li {
        margin: 0 15px;
    }
    
    .user-actions {
        margin: 0 0 0 30px;
        width: auto;
        justify-content: flex-start;
    }
    
    .main-slider__content {
        height: 560px;
    }
    
    .kh-gX .lrQ3q .heading--h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .kh-gX ._6TsBO {
        font-size: 20px;
    }
    
    .app-button {
        padding: 15px 30px;
        font-size: 18px;
        text-decoration: none; /* Remove underline on tablet */
        box-shadow: none; /* Remove shadow on tablet */
    }
    
    .hottest {
        min-height: 482px;
        padding: 50px 0;
    }
    
    .hottest__content .heading--h2 {
        font-size: 36px;
    }
    
    .hottest__carousel-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .game-item {
        width: 180px;
    }
    
    .game-item__image {
        height: 250px;
    }
    
    /* Adjust button sizes for tablet */
    .game-item__button {
        padding: 10px 20px;
        margin: 5px 0;
        width: 80%;
        max-width: 120px;
    }
    
    .new-games {
        min-height: 762px;
        padding-top: 0;
        padding-bottom: 50px;
    }
    
    .new-games__content {
        padding-top: 280px;
    }
    
    .new-games__content .heading--h2 {
        font-size: 36px;
    }
    
    .new-games__carousel-game-wrapper .game-item {
        width: 200px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-nav--prev {
        left: 10px;
    }
    
    .carousel-nav--next {
        right: 10px;
    }
    
    .hottest__carousel {
        overflow: hidden;
    }
    
    .hottest__carousel-item {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
    
    .hottest__carousel-game-wrapper {
        flex: 0 0 auto;
        width: calc(33.333% - 14px);
        margin-right: 20px;
    }
    
    .hottest__carousel-game-wrapper:nth-child(3n) {
        margin-right: 0;
    }
    
    .new-games__carousel {
        overflow: hidden;
    }
    
    .new-games__carousel-item {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
    
    .new-games__carousel-game-wrapper {
        flex: 0 0 auto;
        width: calc(33.333% - 14px);
        margin-right: 20px;
    }
    
    .new-games__carousel-game-wrapper:nth-child(3n) {
        margin-right: 0;
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer__section:first-child {
        grid-column: span 2;
        text-align: center;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .cookie-bar {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cookie-bar p {
        display: inline-block;
        margin-bottom: 0;
    }
    
    .cookie-accept {
        margin-left: 15px;
    }
    
    .vip-benefit {
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Desktop styles */
@media screen and (min-width: 1200px) {
    .hottest__carousel-item {
        flex-wrap: nowrap;
    }
    
    .hottest__carousel-game-wrapper {
        width: calc(20% - 16px);
        margin-right: 20px;
    }
    
    .hottest__carousel-game-wrapper:nth-child(3n) {
        margin-right: 20px;
    }
    
    .hottest__carousel-game-wrapper:nth-child(5n) {
        margin-right: 0;
    }
    
    .new-games__carousel-game-wrapper .game-item {
        width: 200px;
    }
    
    .new-games__carousel-game-wrapper {
        width: calc(20% - 16px);
        margin-right: 20px;
    }
    
    .new-games__carousel-game-wrapper:nth-child(3n) {
        margin-right: 20px;
    }
    
    .new-games__carousel-game-wrapper:nth-child(5n) {
        margin-right: 0;
    }
    
    .footer__content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer__section:first-child {
        grid-column: span 1;
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Content section styles */
.content {
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #fff;
    min-height: 300px;
}

.content__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: #d000ff;
    margin: 24px 0 16px 0;
    line-height: 1.3;
}

.content h1 {
    font-size: 32px;
    text-align: center;
    margin: 20px 0 30px 0;
}

.content h2 {
    font-size: 28px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.content h3 {
    font-size: 24px;
}

.content p {
    margin: 16px 0;
    line-height: 1.7;
    font-size: 16px;
}

.content ul,
.content ol {
    margin: 16px 0;
    padding-left: 30px;
}

.content li {
    margin: 8px 0;
    line-height: 1.6;
}

.content a {
    color: #dd00ff;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Table styles */
@media (max-width: 760px) {
  .content table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #2a2a2a;
  }
}
.content table {
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #2a2a2a;
}

.content th,
.content td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #333;
}

.content th {
    background-color: #333;
    color: #dd00ff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.content tr:nth-child(even) {
    background-color: #252525;
}

.content tr:hover {
    background-color: #333;
}

/* Mobile-first responsive table styles */
@media screen and (max-width: 767.99px) {
    .content table {
        font-size: 14px;
    }
    
    .content th,
    .content td {
        padding: 8px 10px;
    }
    
    /* For very small screens, make tables scrollable */

   .table {
        overflow-x: auto;
        margin: 20px 0;
        display: block;
    }
    
    
    .content h1 {
        font-size: 28px;
    }
    
    .content h2 {
        font-size: 24px;
    }
    
    .content h3 {
        font-size: 20px;
    }
    
    .content p {
        font-size: 15px;
    }
    
    .content ul,
    .content ol {
        padding-left: 20px;
    }
}

/* Tablet styles */
@media screen and (min-width: 768px) {
    .content {
        padding: 50px 30px;
    }
    
    .content__inner {
        padding: 0 20px;
    }
    
    .content h1 {
        font-size: 36px;
    }
    
    .content h2 {
        font-size: 32px;
    }
    
    .content h3 {
        font-size: 28px;
    }
    
    .content p {
        font-size: 17px;
    }
}

/* Desktop styles */
@media screen and (min-width: 1200px) {
    .content {
        padding: 60px 40px;
    }
    
    .content__inner {
        padding: 0 25px;
    }
    
    .content h1 {
        font-size: 40px;
    }
    
    .content h2 {
        font-size: 36px;
    }
    
    .content h3 {
        font-size: 32px;
    }
    
    .content p {
        font-size: 18px;
    }
}

/* FAQ Styles */
.faq-block {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
}

.faq-heading {
    color: #dd00ff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h3::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #dd00ff;
}

.faq-item[open] h3::before {
    content: "-";
}

.faq-item div[itemprop="text"] {
    color: #ccc;
    line-height: 1.6;
    padding-left: 1.5rem;
}

/* Play Button Styles */
.btn-play {
    display: inline-block;
    background-color: #3cf14b;
    color: #000 !important;
    padding: 16px 32px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-play:hover {
    background-color: #2bd83f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.btn-play:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for FAQ */
@media screen and (max-width: 767px) {
    .faq-block {
        padding: 1rem;
    }
    
    .faq-heading {
        font-size: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .btn-play {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
