/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

@keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(255, 165, 0, 0.7); }
    50% { box-shadow: 0 0 20px rgba(255, 99, 71, 0.9); }
    100% { box-shadow: 0 0 10px rgba(255, 165, 0, 0.7); }
}


.register-offer {
    display: inline-block;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.7);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}

.register-offer span {
    color: #fff000;
    font-weight: bold;
}

.register-offer:hover {
    background: linear-gradient(45deg, #ff9900, #ff3300);
    box-shadow: 0 0 25px rgba(255, 99, 71, 0.9);
    transform: scale(1.05);
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #103444; /* Dark Blue Background */
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1100;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.5); /* Subtle Shadow */
}

.casino-container {
    background-image: url('assets/background.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 20px; /* Adjust padding as needed */
}

/* Menu Links */
.side-menu a {
    color: #ecbc34; /* Yellow Text */
    padding: 15px;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    display: block;
    transition: background 0.3s, color 0.3s;
    font-weight: bold;
}

.side-menu a:hover {
    background: #ecbc34; /* Yellow Hover Background */
    color: #103444; /* Dark Blue Hover Text */
    border-left: 5px solid white; /* White Left Border */
    padding-left: 20px; /* Slight Indentation */
}

.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: url("assets/background.jpg"); 
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

header {
    display: flex;
    justify-content: space-between; /* Ensures spacing between menu and logo */
    align-items: center;
    padding: 10px;
    background: url("assets/banner.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* background: url("assets/banner.png"); */
}

.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;
}

.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;
}

.cta-image {
    width: 100%; 
    max-width: 300px; 
    height: auto; 
    margin: 0; /* Prevent unwanted centering */
    transition: transform 0.4s ease, box-shadow 0.3s ease; /* Smooth zoom effect */
    border-radius: 10px; /* Optional: Rounded corners */
    cursor: pointer; /* Indicate clickability */
    padding: 20px;
}

.cta-image:hover {
    transform: scale(1.1); /* Zoom in on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Shadow for depth */
}

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(255, 255, 255, 0.5);
    padding: 25px 50px;
    border-radius: 40px;
    font-weight: bold;
    color: gold; /* 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: black; /* 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 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.buttons button {
    position: relative;
    background: linear-gradient(45deg, #ecbc34, #ea1520); /* Gold to Red */
    color: #fff;
    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(236, 188, 52, 0.4); /* Subtle Gold Glow */
}

.buttons button:hover {
    background: #ea1520; /* Solid Red on Hover */
    color: #ffffff; /* White Text on Hover */
    border: 2px solid #ffffff; /* White Border */
    box-shadow: 0 6px 15px rgba(236, 188, 52, 0.7); /* Gold Glow */
}

.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%;
}
.casino-details div:hover {
    transform: translateY(-5px);
}

.casino-details ul {
    list-style: none;
    padding: 0;
}

.casino-details ul li {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.casino-details span {
    font-weight: bold;
    color: #fff;
}

.casino-details p {
    font-size: 16px; /**/
    margin: 8px 0;
}

.casino-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    /* background: #007700;  */
    background: transparent;
}

.casino-details div {
    background: #ecbc34; /*#e8cce4*/
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.casino-details div:hover {
    transform: translateY(-5px);
}

.casino-details h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.casino-details ul {
    list-style: none;
    padding: 0;
}

.casino-details ul li {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.casino-details strong {
    color: #fff; /* Gold for emphasis */
}

.casino-intro {
    text-align: center;
    padding: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #ecbc34; /* 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: #fff; /* Dark Green */
    margin-bottom: 15px;
}

.casino-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: white; /* Slightly lighter text for readability */
}

.why-choose {
    margin-top: 40px;
    width: 100%;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose ul li {
    margin-bottom: 15px; 
    padding: 10px; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 8px; 
}

.why-choose-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.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: #ecbc34;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: left;
}

.text-container h2{
    color: #fff;
}
#chatbox-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #103444, #ecbc34); /* Dark Blue to Yellow */
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(16, 52, 68, 0.4); /* Soft Dark Blue Glow */
    transition: background 0.3s ease-in-out, transform 0.2s ease, color 0.3s;
    border: none;
}

#chatbox-button:hover {
    background: linear-gradient(45deg, #ecbc34, #103444); /* Yellow to Dark Blue */
    color: #103444; /* Dark Blue Text */
    transform: scale(1.05);
}

/* Chatbox Container */
#chatbox-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;  
    height: 400px; 
    background: #ffffff; /* White Background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(16, 52, 68, 0.6); /* Dark Blue Glow */
    display: none;
    flex-direction: column;
    transition: width 0.3s ease, height 0.3s ease;
    overflow: hidden;
    border: 2px solid #ecbc34; /* Yellow Border */
}

/* Chat Messages */
#chatbox-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 300px;
    color: black;
    background: #ffffff; /* White Background */
}

/* Chatbox Header */
#chatbox-header {
    background: linear-gradient(45deg, #103444, #ecbc34); /* Dark Blue to Yellow */
    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: #ffffff; /* White */
    border-top: 1px solid #103444; /* Dark Blue Border */
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Input Field */
#message-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #103444; /* Dark Blue Border */
    background: #ffffff;
    color: black;
    border-radius: 5px;
    outline: none;
}

/* Send Button */
#send-button {
    background: linear-gradient(45deg, #103444, #ecbc34); /* Dark Blue to Yellow */
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease, color 0.3s;
}

#send-button:hover {
    background: linear-gradient(45deg, #ecbc34, #103444); /* Yellow to Dark Blue */
    color: #103444; /* Dark Blue Text */
    transform: scale(1.05);
}

/* Close Button */
#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: 10px 20px;
    color: white;
}

.stats {
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.stats span {
    padding: 15px 30px;
    font-size: 22px;
}

.bonus-section {
    text-align: center;
    padding: 40px;
    padding-top: 5px;
    background: #ecbc34; /* 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: #fff; /* Dark Green */
    margin-bottom: 15px;
}

.bonus-section p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
}

.bonus-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.bonus-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    color: black;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.bonus-box:hover {
    transform: translateY(-5px);
}

.bonus-box h3 {
    font-size: 20px;
    color: black; /* Gold-like color */
    margin-bottom: 10px;
}

.bonus-box p {
    font-size: 16px;
    line-height: 1.4;
    color: black;
}


.why-choose {
    background: #ecbc34; /* Dark Green */
    color: white;
}

.why-choose h2{
    color: #fff;
}

.game-section {
    padding: 50px;
    background: #ecbc34;
    color: white;
}

.game-section h2{
    color: #fff;
}

footer {
    padding: 20px;
    background: url("assets/footer.png"); /* Light Green */
    margin-top: 0px;
    color: white;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-size: 14px;
}

/* 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-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;
    }
}