/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.register-offer {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #2c3e50); /* Red to Light Purple */
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(234, 21, 32, 0.7); /* Red-ish glow */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}

.register-offer span {
    color: #f0ecfc; /* Light Purple (optional for emphasis) */
    font-weight: bold;
}

.register-offer:hover {
    background: linear-gradient(45deg, #2c3e50, #FFD700); /* Light Purple to Red */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); /* Stronger red glow */
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); /* Gold glow */
    }
    50% {
        box-shadow: 0 0 20px rgba(230, 190, 138, 0.9); /* Soft gold glow */
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); /* Gold glow */
    }
}
.casino-container {
    background-image: url('assets/background.jpg'); /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 20px; /* Adjust padding as needed */
    min-height: 100vh; /* Ensure full height */
}
/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #2c3e50; /* Dark blue background for side menu */
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1100;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
}

.side-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    display: block;
    transition: background 0.3s, color 0.3s;
}

.side-menu a:hover {
    background: linear-gradient(45deg, #FFD700, #f0ecfc); /* Red to light purple gradient on hover */
    color: #333; /* Dark grey text color for contrast */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: #FFD700; /* Red color for the close button */
    cursor: pointer;
}

.close-btn:hover {
    color: #E6BE8A; /* Light purple on hover */
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay */
    display: none;
    transition: opacity 0.3s;
    z-index: 1000; /* Ensure overlay is on top */
    pointer-events: none; /* Initially disable interactions */
}

.overlay.active {
    display: block;
    pointer-events: all; /* Enable interactions when active */
}

/* Active side menu */
.side-menu.active {
    left: 0; /* Slide menu in */
}

/* Active overlay */
.overlay.active {
    display: block;
}

/* Menu Toggle Button */
.menu-toggle {
    position: absolute;
    left: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
}

body {
    background: #f0ecfc;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between; /* Ensures spacing between menu and logo */
    align-items: center;
    padding: 10px;
    /* background: url("assets/banner.jpg"); */
    background: black;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.menu-toggle {
    margin-right: auto; /* Pushes logo to center */
}

.logo-img {
    max-width: 150px;
    height: auto;
    margin: 0 auto; /* Centers the logo */
    display: block;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo span {
    color: #E6BE8A; /* Soft gold for a lighter, luxurious touch */
}
.casino-image {
    width: 100%; /* Adjust width as needed */
    max-width: 500px; /* Set a maximum width */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    padding: 50px;
}
.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 30px;
    margin: 20px 0;
}

.stats span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.3); /* Transparent golden background */
    padding: 25px 50px;
    border-radius: 40px;
    font-weight: bold;
    color: #FFD700; /* Bright gold text for the numbers */
    font-size: 30px;
    gap: 10px; /* Adds spacing between number and text */
}

.stats span b {
    color: #fff; /* White separator for better contrast */
    font-weight: normal;
}

.stats span small {
    color: #f0ecfc; /* Light Purple color for labels */
    font-size: 20px; /* Smaller font size */
    font-weight: normal;
}

.stats span:last-child::after {
    content: ""; /* Remove the separator for the last item */
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.buttons button {
    position: relative;
    background: linear-gradient(45deg, #8B7500, #2c2c2c); /* Dark gold to charcoal gradient */
    color: white;
    border: 2px solid #FFD700; /* Gold border */
    padding: 12px 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* Gold Glow */
    font-family: 'Poppins', sans-serif;
}

.buttons button:hover {
    background: white;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4); /* Gold glow */
}

.buttons button::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: rgba(234, 21, 32, 0.15); /* Light Red Shine */
    transform: rotate(30deg);
    transition: all 0.5s ease-in-out;
}

.buttons button:hover::before {
    top: 100%;
    left: 100%;
}

.casino-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background: transparent; /* Transparent background */
}
.casino-details div {
    background: #2c2c2c; /* Charcoal background to contrast gold */
    padding: 25px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3); /* Soft gold glow */
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

.casino-details div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); /* Brighter gold glow on hover */
}

.casino-details h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFD700; /* Bright gold title */
    border-bottom: 2px solid rgba(255, 215, 0, 0.6); /* Gold underline */
    padding-bottom: 8px;
}

.casino-details ul {
    list-style: none;
    padding: 0;
}

.casino-details ul li {
    display: flex;
    justify-content: space-between;
    background: rgba(241, 241, 241, 0.1); /* Light Red Transparent */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.casino-details strong {
    color: #f0ecfc; /* Light Lavender for Emphasis */
}

.casino-details span {
    font-weight: bold;
    color: white;
}

.casino-details p {
    font-size: 16px;
    margin: 8px 0;
    color: #cda638; /* Lighter Gold for text */
}


/* Casino Intro Section */
.casino-intro {
    text-align: center;
    padding: 30px;
    background: #2c2c2c; /* Dark charcoal background for elegance */
    color: white; /* Keep white text for readability */
    border-radius: 12px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3); /* Soft gold glow */
}

.casino-intro h2 {
    font-size: 26px;
    color: #f0ecfc; /* Light Purple Title */
    margin-bottom: 15px;
}

.casino-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #f0ecfc; /* Red Color for Paragraph Text */
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #1e2a3a, #2c3e50); /* Gradient background */
    margin-top: 40px;
    width: 100%;
    padding: 40px 20px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #E6BE8A);
}

.why-choose .container h2 {
    color: #FFD700;
    font-size: 32px;
    text-align: center;
    margin: 0 auto 25px auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
    width: 100%;
}

.why-choose .container h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #FFD700;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.why-choose p {
    color: #f0ecfc;
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.why-choose .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.why-choose ul {
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose ul li {
    margin-bottom: 15px; 
    padding: 20px 20px 20px 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 80px;
    box-sizing: border-box;
}

.why-choose ul li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #FFD700;
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose ul li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.why-choose ul li:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.why-choose-container {
    display: flex;
    width: 100%;
    min-height: 500px;
    max-height: 600px;
}

.image-container {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 0 12px 12px 0;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Text Container */
.text-container {
    width: 50%;
    background: linear-gradient(135deg, #1e2a3a, #2c3e50);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: left;
    border-radius: 12px 0 0 12px;
    position: relative;
}

.text-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 4px;
    height: 100px;
    background: #FFD700;
    border-radius: 2px;
}

.text-container h2 {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #f0ecfc;
    margin-bottom: 20px;
}

.text-container strong {
    color: #FFD700;
}

/* Chatbox Button */
#chatbox-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c2c2c; /* Dark charcoal background */
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3); /* Soft gold glow effect */
    transition: background 0.3s, box-shadow 0.3s;
}

#chatbox-button:hover {
    background: #FFD700; /* Red */
    color: white; /* White Text */
}

/* Chatbox */
#chatbox-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: #333; /* Dark Grey Background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    transition: width 0.3s ease, height 0.3s ease;
    overflow: hidden;
}

/* Chat Messages Container */
#chatbox-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 300px;
    color: white;
}

/* Chatbox Header */
#chatbox-header {
    background: #FFD700; /* Red Header */
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}

/* Input Container */
#chatbox-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #808080; /* Grey Background */
    border-top: 1px solid #FFD700; /* Red Border */
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Input Field */
#message-input {
    flex: 1;
    padding: 8px;
    border: 2px solid #FFD700; /* Red Border */
    border-radius: 5px;
    outline: none;
    color: #333; /* Dark Grey Text */
}

/* Send Button */
#send-button {
    background: #1e2a3a; /* Dark Blue */
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#send-button:hover {
    background: #FFD700; /* Red */
    color: white;
}

/* Close Button */
#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Chatbox Content */
#chatbox-content {
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 14px;
    color: #f0ecfc; /* Soft Lavender Text */
}

.hero {
    text-align: center;
    padding: 10px 20px;
}

.stats {
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.stats span {
    padding: 15px 30px;
    font-size: 22px;
}

/* Bonus Section */
.bonus-section {
    text-align: center;
    padding: 40px;
    padding-top: 5px;
    background: #333; /* Dark Grey Background for contrast */
    color: white;
    border-radius: 12px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 8px rgba(234, 21, 32, 0.2); /* Red Glow Effect */
}

.bonus-section h2 {
    font-size: 26px;
    color: #FFD700; /* Red for headers */
    margin-bottom: 15px;
    font-weight: bold;
}

.bonus-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd; /* Light Grey for better readability */
    margin-bottom: 20px;
}

/* Bonus Container Grid */
.bonus-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

/* Bonus Box */
.bonus-box {
    background: #1e2a3a; /* Dark Blue Background */
    padding: 20px;
    border-radius: 12px;
    color: white;
    text-align: left;
    box-shadow: 0 4px 8px rgba(234, 21, 32, 0.2); /* Red Glow Effect */
    transition: transform 0.2s ease-in-out;
    border: 2px solid #FFD700; /* Red Border */
}

.bonus-box:hover {
    transform: translateY(-5px);
    background: #2c3b52; /* Slightly brighter dark blue */
    border: 2px solid #FFD700; /* Bright Red Border */
}

.bonus-box h3 {
    font-size: 20px;
    color: #FFD700; /* Red for headings */
    margin-bottom: 10px;
    font-weight: bold;
}

.bonus-box p {
    font-size: 16px;
    line-height: 1.4;
    color: #f0ecfc; /* Light Lavender Text for readability */
}

.game-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e2a3a, #2c3e50);
    color: white;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    width: 100%;
    box-sizing: border-box;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #E6BE8A);
}

.game-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 215, 0, 0.2);
}

.game-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    overflow-x: hidden;
}

.game-section .container::before,
.game-section .container::after {
    display: none; /* Hide on mobile to prevent overflow */
}

.game-section h2 {
    color: #FFD700;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.game-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #FFD700;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.game-card:nth-child(1) {
    animation-delay: 0.1s;
}

.game-card:nth-child(2) {
    animation-delay: 0.3s;
}

.game-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: #FFD700;
    transition: height 0.5s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.game-card:hover::before {
    height: 100%;
}

.game-card h3 {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.game-card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: rgba(255, 215, 0, 0.5);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.game-card:hover h3::after {
    width: 80px;
    background: rgba(255, 215, 0, 0.8);
}

.game-card p {
    color: #f0ecfc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.game-card strong {
    color: #FFD700;
    font-weight: bold;
}

.game-card .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-card:hover .icon {
    color: #FFD700;
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .game-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .game-section {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    /* Game section responsive fixes */
    .game-section {
        padding: 40px 10px;
        margin: 20px 0;
        max-width: 100vw;
    }
    
    .game-section .container {
        padding: 0 10px;
    }
    
    .game-categories {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        max-width: 100%;
    }
    
    .game-card {
        padding: 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .game-card .icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 15px;
        right: 15px;
    }
    
    .game-card h3 {
        font-size: 22px;
        margin-right: 40px; /* Make room for the icon */
    }
    
    .game-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    /* Fix positioning issues on mobile */
    .game-section::before,
    .game-section::after {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 480px) {
    .game-section {
        padding: 30px 0;
    }
    
    .game-section .container {
        padding: 0 10px;
    }
    
    .game-card {
        padding: 15px;
    }
    
    .game-card .icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .game-card h3 {
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .game-card p {
        font-size: 14px;
    }
}

footer {
    padding: 20px;
    /* background: linear-gradient(45deg, #f0ecfc, #1e2a3a); */
    margin-top: 0px;
    color: black;
    text-align: center;
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .text-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column;
        max-height: none;
    }
    
    .image-container {
        width: 100%;
        height: 300px;
        border-radius: 12px 12px 0 0;
    }
    
    .text-container {
        width: 100%;
        border-radius: 0 0 12px 12px;
        padding: 30px;
    }
    
    .text-container::before {
        height: 60px;
    }
    
    .why-choose ul {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .why-choose h2 {
        font-size: 28px;
    }
    
    .why-choose p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .why-choose ul li {
        padding: 15px 10px;
    }
    
    .why-choose ul li strong {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .text-container {
        padding: 20px;
    }

    .text-container h2 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 16px;
    }

    .why-choose ul {
        gap: 15px;
    }
    
    .why-choose ul li {
        padding: 15px 15px 15px 50px;
        min-height: 60px;
    }
    
    .why-choose ul li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
    
    .why-choose ul li strong {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .casino-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .casino-intro {
        width: 80%;
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .casino-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #4ba614;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 900px) {
    .bonus-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .stats {
        flex-direction: row;
        font-size: 30px;
    }

    .stats span {
        padding: 25px 50px;
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .casino-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .casino-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .bonus-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonus-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    footer {
        font-size: 12px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .buttons button {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .why-choose ul {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .why-choose .container {
        padding: 0 15px;
    }
    
    .why-choose ul {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }
    
    .why-choose .container h2 {
        font-size: 28px;
    }
}

/* Keep original styles for the second why-choose h2 */
.why-choose-container .text-container h2 {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: static;
    display: block;
    width: auto;
    transform: none;
}

.why-choose-container .text-container h2::after {
    display: none;
}

/* Container/section width fixes to prevent horizontal overflow */
.container, section {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}