/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background-color: #191919;
    color: white;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* .game-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
} */

.why-wait {
    background-color: #323232; /* Sets the background color */
    padding: 10px 0; /* Adds spacing above and below */
}

/* .game-box {
    text-align: center;
    border: 2px solid #004d00;
    padding: 10px;
    border-radius: 10px;
    width: 180px;
    transition: transform 0.3s ease-in-out;
}

.game-box:hover {
    transform: scale(1.1);
}

.game-box img {
    width: 100%;
    border-radius: 10px;
}

.game-box p {
    margin-top: 10px;
    font-size: 16px;
} */


.bonus-section {
    text-align: center;
    padding: 40px;
    background: #ffffff; /* White Background */
    color: #333;
    border-radius: 12px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bonus-section h2 {
    font-size: 26px;
    color: #fdbb30; /* Dark Green */
    margin-bottom: 15px;
    margin-top: 0px;
}

.bonus-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.game-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.game-box {
    text-align: center;
    border: 2px solid #323232;
    background-color: #666666;
    padding: 10px;
    border-radius: 10px;
    width: 180px;
    transition: transform 0.3s ease-in-out;
}

.game-box:hover {
    transform: scale(1.1);
}

.game-box img {
    width: 100%;
    border-radius: 10px;
}

.game-box p {
    margin-top: 10px;
    font-size: 16px;
}

/* Media Query for Phone Screens to show 3 items per row */
@media (max-width: 768px) {
    .game-box {
        width: 20%; /* 3 items per row */
    }

    .game-categories {
        justify-content: space-between;
    }

    .game-box p {
        font-size: 14px; /* Smaller font size for mobile */
    }
}

.description {
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.6;
}

.description b {
    color: #fdbb30;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li::before {
    content: "• ";
    color: gold;
    font-size: 18px;
}

.casino-intro ul {
    list-style: none; /* Removes default bullet points */
    padding: 0;
    margin-top: 20px;
}

/* .casino-intro ul li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 223, 77, 0.4);
    border-left: 5px solid gold;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    color: black;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease, background 0.3s ease;
}

.casino-intro ul li:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
}

.casino-intro ul li::before {
    content: "🛡️";
    font-size: 20px;
    margin-right: 12px;
    color: limegreen;
} */

.casino-intro ul li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 223, 77, 0.4); /* Light gold background */
    border-left: 5px solid gold; /* Gold left border */
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    color: black;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.casino-intro ul li:hover {
    background: rgba(255, 255, 0, 0.7); /* Bright yellow background */
    border-left: 5px solid yellow; /* Lighter gold border */
    transform: translateX(5px); /* Smooth slide effect */
    box-shadow: 0 6px 12px rgba(255, 255, 0, 0.6); /* Glowing effect */
}

.casino-intro ul li::before {
    content: "🛡️"; /* Shield icon */
    font-size: 20px;
    margin-right: 12px;
    color: gold; /* Adjusted for better contrast */
}

.casino-table-container {
    width: 100%;
    overflow-x: auto; 
    border: 3px solid #fdbb30;
    border-radius: 8px;
}

.casino-table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    border-radius: 8px;
}

.casino-table {
    width: 100%;
    table-layout: auto; /* Allows table to shrink naturally */
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
}

.casino-table th, .casino-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #000000;
    color: black;
    font-weight: bold;
    word-wrap: break-word;
    font-size: 16px; /* Standard font size */
}

.casino-table th {
    background: #fdbb30;
    font-size: 18px;
}

.casino-table tr:hover {
    background: rgba(202, 205, 50, 0.3);
}

.play-btn {
    display: inline-block;
    padding: 8px 12px;
    background: gold;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid black;
}

.play-btn:hover {
    background: #007700;
    color: white;
    transform: scale(1.05);
}

/* Responsive Table */
@media (max-width: 600px) {
    .casino-table-container {
        font-size: 12px;
    }

    .casino-table th, .casino-table td {
        padding: 6px;
        font-size: 12px;
    }

    .play-btn {
        padding: 4px 7px;
        font-size: 12px;
    }
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #181818;;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1100;
}

.side-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    display: block;
    transition: background 0.3s;
}

.side-menu a:hover {
    background: #FFD700;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    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 */
}

.side-menu.active {
    left: 0;
}

.overlay.active {
    display: block;
}

.menu-toggle {
    position: absolute;
    left: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

body {
    background: #191919; /* Dark Green */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between; /* Ensures spacing between menu and logo */
    align-items: center;
    padding: 10px;
    background: #000;
}

.menu-toggle {
    margin-right: auto; /* Pushes logo to center */
}

.logo-img {
    max-width: 150px;
    height: auto;
    margin: 0 auto; /* Centers the logo */
}

.logo-img {
    max-width: 150px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    display: block;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #008c00; /* Dark Green */
}

.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;
}

.stats span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 25px 50px;
    border-radius: 40px;
    font-weight: bold;
    color: #fdbb30; /* Gold-like color for numbers */
    font-size: 30px;
    gap: 10px; /* Adds spacing between number and text */
}

.stats span b {
    color: #a02c2c; /* Dark red separator */
    font-weight: normal;
}

.stats span small {
    color: white; /* White 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 button {
    position: relative;
    /* background: linear-gradient(45deg, #4ba614, #008c00);  */
    background: linear-gradient(45deg, #004100, #002100);
    color: white;
    border: 2px solid transparent;
    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 4px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.buttons button:hover {
    background: white;
    color: #008c00;  /* Green Text */
    border: 2px solid #008c00; /* Green Border */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.buttons button::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
    transition: all 0.5s ease-in-out;
}

.buttons button:hover::before {
    top: 100%;
    left: 100%;
}

/* Unique styles for Register and Login buttons */
.register {
    background: linear-gradient(45deg, #fdbb30, #ff8c00);
    border: 2px solid #ff8c00;
}

.register:hover {
    background: white;
    color: #ff8c00; /* Orange Text */
    border: 2px solid #ff8c00;
}

.login {
    background: linear-gradient(45deg, #0077cc, #005faa);
    border: 2px solid #005faa;
}

.login:hover {
    background: white;
    color: #005faa; /* Blue Text */
    border: 2px solid #005faa;
}

.casino-intro {
    text-align: center;
    padding: 40px;
    background: #323232; /* White Background */
    color: #333; /* Dark Gray for Readability */
    border-radius: 12px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.casino-intro h2 {
    font-size: 26px;
    color: gold; /* Dark Green */
    margin-bottom: 15px;
    margin-top: 0px;
}

.casino-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: white; /* Slightly lighter text for readability */
}

.why-choose {
    margin-top: 0px;
    width: 100%;
}

.why-choose-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.why-choose ol {
    list-style: none; /* Remove default numbering */
    counter-reset: list-counter; /* Initialize counter */
    padding-left: 0;
    margin-top: 20px;
}

.why-choose ol li {
    counter-increment: list-counter; /* Increment counter */
    position: relative;
    padding: 15px 20px 15px 50px; /* Space for custom number */
    margin-bottom: 15px;
    background: #fdbb30; /* Light green background */
    border-left: 1px solid #fdbb30; /* Green accent border */
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-choose ol li::before {
    content: counter(list-counter) "."; /* Custom counter */
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.why-choose ol li:hover {
    background: #fcfdf3; /* Lighter green on hover */
    transform: translateX(5px);
}

.image-container {
    width: 50%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the full section */
}

.text-container {
    width: 50%;
    background: #191919; /* Purple Background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: center;
}

.text-container h2{
    color: gold;
}

.why-text-container {
    width: 100%;
    max-width: 600px; /* Prevent text from stretching too wide */
    background: #7f7f7f;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
    margin: auto;
    box-sizing: border-box;
    border-radius: 20px;
}

.why-text-container h2{
    color: #fdbb30;
}


/* New wrapper for text content */
.why-description {
    max-width: 450px; /* Limit the width for better readability */
    margin: auto; /* Center the text block */
    background: transparent; /* Keeps it see-through */
    padding: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .why-text-container {
        padding: 20px;
        margin-bottom: 20px;
    }

    .why-description {
        max-width: 400px; /* Make it a bit smaller on tablets */
    }
}

@media (max-width: 480px) {
    .why-text-container {
        padding: 15px;
    }

    .why-description {
        max-width: 350px; /* Even smaller width for phones */
        padding: 5px;
    }

    .why-text-container h2 {
        font-size: clamp(20px, 5vw, 24px);
        margin-bottom: 10px;
    }

    .why-description p {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

#chatbox-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFD700;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

#chatbox-button:hover {
    background: #8c7e00;
}

/* Chatbox */
#chatbox-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;  
    height: 400px; 
    background: #FFD700;
    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; /* Prevents scrolling issues */
}

/* Chat messages container */
#chatbox-messages {
    flex: 1; /* Takes up available space */
    padding: 10px;
    overflow-y: auto; /* Allows scrolling */
    max-height: 300px; /* Prevents it from shrinking too much */
}

#chatbox-header {
    background: #191919;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Input container */
#chatbox-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ccc;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Input field */
#message-input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    outline: none;
}

/* Send button */
#send-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
}
#send-button:hover {
    background: #0056b3;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#chatbox-content {
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 14px;
}

#chatbox-input {
    border: 1px solid #ddd;
    padding: 8px;
    width: calc(100% - 16px);
    margin: 8px;
    border-radius: 5px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
}

.stats {
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.stats span {
    padding: 15px 30px;
    font-size: 22px;
}

.bonus-section {
    text-align: center;
    padding: 40px;
    background: #323232; /* White Background */
    color: #fff;
    border-radius: 12px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bonus-section h2 {
    font-size: 26px;
    color: #fdbb30; /* Dark Green */
    margin-bottom: 15px;
    margin-top: 0px;
}

.bonus-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #fdbb30;
    margin-bottom: 20px;
}

.bonus-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right :20px;
    padding-left:20px;
}

.bonus-box {
    background: #323232;
    padding: 20px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    align-items: center;
    justify-content: space-between;
}

.bonus-box:hover {
    transform: translateY(-5px);
}

.bonus-box h3 {
    font-size: 20px;
    color: #fdbb30; /* Gold-like color */
    margin-bottom: 10px;
    margin-top: 0px;
}

.bonus-box p {
    font-size: 16px;
    line-height: 1.4;
}

.play-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px; /* Pushes button to bottom */
    margin-bottom: 10px;
    background: gold;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 2px solid black;
    text-align: center;
}

.play-btn:hover {
    background: #fdbb30;
    color: white;
    transform: scale(1.05);
}

.why-choose p {
    max-width: 800px; /* Limit the paragraph width for better readability */
    margin: 0 auto; /* Center the text and add bottom margin */
    /* padding: 15px; */
    /* background: #f3fdf6; */
    border-radius: 8px; /* Rounded corners */
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}


.why-choose {
    background: #191919; /* Dark Green */
    color: white;
}

.game-section {
    padding: 1px;
    background: #323232;
    color: white;
}

.game-section h2{
    margin-bottom: 0px;
    color: #fdbb30;
}

.game-section p {
    max-width: 1000px; /* Limits text width for better readability */
    margin: 0px auto; /* Centers the paragraph and adds vertical spacing */
    padding: 15px;
    border-radius: 8px; /* Rounded corners for a smooth look */
    font-size: 18px;
    line-height: 1.6;
    color: white; /* Darker text for contrast */
    text-align: center; /* Centers the text */
}

footer {
    padding: 20px;
    background: #323232; /* Light Green */
    /* margin-top: 20px; */
    color: white;
}

footer {
    text-align: center;
    font-size: 14px;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .text-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column;
        height: auto;
    }

    .image-container{
        width: 100%;
        height: auto;
    }

    .text-container {
        width: 90%;
        height: auto;
    }

    .text-container {
        padding: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .text-container {
        padding: 20px;
    }

    .text-container h2 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .casino-intro {
        width: 80%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #fdbb30;
        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) {
    .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;
    }
}