/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background-color: black;
    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: #ffffff; /* 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: #007700; /* 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 #004d00;
    background-color: #32cd32;
    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: #007700;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li::before {
    content: "• ";
    color: #007700;
    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(0, 255, 0, 0.1); /* Light green transparent background */
    border-left: 5px solid limegreen; /* Green left border for emphasis */
    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;
}

.casino-intro ul li:hover {
    background: rgba(0, 255, 0, 0.2); /* Slightly brighter green on hover */
    transform: translateX(5px); /* Smooth slide effect on hover */
}

.casino-intro ul li::before {
    content: "🛡️"; /* Shield icon to represent security */
    font-size: 20px;
    margin-right: 12px;
    color: limegreen;
}

.casino-table-container {
    width: 100%;
    overflow-x: auto; 
    border: 3px solid #007700;
    border-radius: 8px;
}

/* .casino-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
}

.casino-table th, .casino-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #007700;
    color: black;
    font-weight: bold;
}

.casino-table th {
    background: #32cd32;
    font-size: 18px;
    font-weight: bold;
} */

.casino-table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    border: 3px solid #007700;
    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 #007700;
    color: black;
    font-weight: bold;
    word-wrap: break-word;
    font-size: 16px; /* Standard font size */
}

.casino-table th {
    background: #32cd32;
    font-size: 18px;
}

.casino-table tr:hover {
    background: rgba(50, 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;
    }
}

.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);
}

@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); }
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #004d00;
    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: #006600;
}

.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: #008c00; /* Dark Green */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
}

/* header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    background: #4ba614;
} */

header {
    display: flex;
    justify-content: space-between; /* Ensures spacing between menu and logo */
    align-items: center;
    padding: 10px;
    background: #34740e;
}

.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: #ffffff; /* 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: #007700; /* Dark Green */
    margin-bottom: 15px;
    margin-top: 0px;
}

.casino-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555; /* 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: #f3fdf6; /* Light green background */
    border-left: 1px solid #2e8b57; /* 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: #2e8b57; /* Green color */
}

.why-choose ol li:hover {
    background: #d4edda; /* 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: #007700; /* Purple Background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: center;
}

/* .why-text-container {
    width: 100%;
    background: #007700;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
    margin: auto;
}

@media (max-width: 768px) {
    .why-text-container {
        padding: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .why-text-container {
        padding: 0px; 
    }

    .why-text-container h2 {
        font-size: 22px; 
        margin-bottom: 10px;
    }

    .why-text-container p {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.5;
    }
} */

.why-text-container {
    width: 100%;
    max-width: 600px; /* Prevent text from stretching too wide */
    background: #007700;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
    margin: auto;
    box-sizing: border-box;
    border-radius: 20px;
}

/* 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: #008c00;
    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: #006600;
}

/* Chatbox */
#chatbox-container {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;  
    height: 400px; 
    background: white;
    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: #008c00;
    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: #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: #007700; /* Dark Green */
    margin-bottom: 15px;
    margin-top: 0px;
}

.bonus-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    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: #4ba614;
    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: white; /* 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: #007700;
    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: #008c00; /* Dark Green */
    color: white;
}

.game-section {
    padding: 1px;
    background: white;
    color: black;
}

.game-section h2{
    margin-bottom: 0px;
}

.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: #333; /* Darker text for contrast */
    text-align: center; /* Centers the text */
}

footer {
    padding: 20px;
    background: #4ba614; /* 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: #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) {
    .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;
    }
}

/* --- App Intro Hero Section Styles --- */
.app-intro {
    background: url('/assets/app1.gif') center center/cover no-repeat;
    position: relative;
    padding: 60px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.app-intro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(240, 247, 255, 0.18); /* Much lighter overlay for more visible GIF */
    z-index: 1;
}

.app-intro-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    gap: 40px;
    background: rgba(255,255,255,0.96); /* White with slight transparency */
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 48px 40px;
}

.app-intro-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.app-intro-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.app-intro-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 18px;
}

.download-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.download-btn:hover {
    background: #e67e22;
    color: #fff;
}

.app-intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-intro-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: #fff;
}

@media (max-width: 900px) {
    .app-intro-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 32px 10px;
    }
    .app-intro-text {
        text-align: center;
        max-width: 100%;
    }
    .app-intro-image img {
        max-width: 320px;
    }
}

.feature-hero {
  background: linear-gradient(120deg, #e0e7ef 0%, #f7f7fa 100%);
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-hero.alt {
  background: linear-gradient(120deg, #f7f7fa 0%, #e0e7ef 100%);
}

.feature-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  gap: 40px;
}

.feature-hero-text {
  flex: 1;
  max-width: 500px;
}

.feature-hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.feature-hero-text p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 24px;
}

.feature-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border: none;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.feature-btn:hover {
  background: #e67e22;
  color: #fff;
  box-shadow: 0 6px 24px rgba(230,126,34,0.18);
}

.feature-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-hero-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: #fff;
}

@media (max-width: 900px) {
  .feature-hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .feature-hero-text {
    text-align: center;
    max-width: 100%;
  }
  .feature-hero-image img {
    max-width: 320px;
  }
}

.download-steps {
  background: linear-gradient(120deg, #e0ffe0 0%, #f7fff7 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.steps-header {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.download-steps h2 {
  font-size: 2.3rem;
  color: #388e3c;
  font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
  margin-bottom: 10px;
}

.download-steps p {
  color: #4e5d3a;
  font-size: 1.1rem;
}

.device-tabs {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.steps-container,
.steps-tab-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-box {
  background: #fffbe7;
  border: 2px solid #aee571;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.10);
  padding: 32px 24px;
  max-width: 320px;
  flex: 1 1 260px;
  margin: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(56, 142, 60, 0.18);
}

.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #aee571 60%, #388e3c 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(56, 142, 60, 0.10);
  border: 3px solid #fff;
}

.step-box h3 {
  color: #2e7d32;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
}

.step-box p {
  color: #4e5d3a;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.download-link {
  display: inline-block;
  margin: 8px 0;
  padding: 12px 28px;
  background: linear-gradient(90deg, #8bc34a 0%, #43a047 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  font-size: 1.13rem;
  box-shadow: 0 4px 16px rgba(67, 160, 71, 0.18);
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}

.download-link:hover {
  background: linear-gradient(90deg, #43a047 0%, #8bc34a 100%);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(67, 160, 71, 0.22);
}

.tab-btn {
  background: #aee571;
  color: #2e7d32;
  border: none;
  border-radius: 30px 30px 0 0;
  padding: 18px 44px;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  box-shadow: 0 2px 8px rgba(67, 160, 71, 0.10);
  margin: 0 4px;
  letter-spacing: 0.5px;
}

.tab-btn.active,
.tab-btn:hover {
  background: #388e3c;
  color: #fff;
  box-shadow: 0 6px 18px rgba(56, 142, 60, 0.18);
  transform: scale(1.07);
}

.steps-tab-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

/* Mobile Responsive Styles */
@media (max-width: 900px) {
  .download-steps {
    padding: 40px 20px 30px 20px;
    min-height: auto;
  }
  
  .download-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .download-steps p {
    font-size: 1rem;
  }
  
  .device-tabs {
    margin: 15px 0;
    gap: 4px;
  }
  
  .tab-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 20px 20px 0 0;
    margin: 0 2px;
  }
  
  .steps-container,
  .steps-tab-content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    max-width: 95vw;
    margin: 0 auto;
  }
  .step-box {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .download-steps {
    padding: 30px 15px 25px 15px;
  }
  
  .download-steps h2 {
    font-size: 1.5rem;
  }
  
  .download-steps p {
    font-size: 0.9rem;
  }
  
  .device-tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 15px;
    margin: 0;
  }
  
  .step-box {
    max-width: 100%;
    padding: 20px 12px;
    border-radius: 15px;
  }
  
  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .step-box h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .step-box p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .download-link {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .download-steps {
    padding: 25px 10px 20px 10px;
  }
  
  .download-steps h2 {
    font-size: 1.3rem;
  }
  
  .download-steps p {
    font-size: 0.85rem;
  }
  
  .tab-btn {
    max-width: 180px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .step-box {
    padding: 16px 10px;
    border-radius: 12px;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .step-box h3 {
    font-size: 0.95rem;
  }
  
  .step-box p {
    font-size: 0.8rem;
  }
  
  .download-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* App Features Section Styles */
.app-features {
  background: linear-gradient(120deg, #e0ffe0 0%, #f7fff7 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  margin-top: 40px;
}

.app-features-title {
  font-size: 2.2rem;
  color: #2e7d32;
  font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: #fffbe7;
  border: 2px solid #aee571;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.10);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(56, 142, 60, 0.18);
  border-color: #43a047;
}

.feature-card h3 {
  color: #43a047;
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
  letter-spacing: 0.5px;
}

.feature-card b {
  color: #2e7d32;
  font-size: 1.08rem;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

.feature-card p {
  color: #4e5d3a;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive grid for features */
@media (max-width: 1024px) {
  .features-list {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-card {
    padding: 24px 12px 20px 12px;
  }
  .app-features-title {
    font-size: 1.4rem;
    margin-bottom: 22px;
  }
}

/* Unique Feature Table Styles */
.feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 18px;
  background: transparent;
}

.feature-table-header {
  background: linear-gradient(90deg, #aee571 0%, #43a047 100%);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 8px rgba(67, 160, 71, 0.10);
}

.feature-table-header th {
  padding: 18px 12px;
  font-weight: 700;
  border: none;
}

.feature-table-card {
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.10);
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid #aee571;
}

.feature-table-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(56, 142, 60, 0.18);
  border-color: #43a047;
}

.feature-table-card td {
  padding: 22px 16px;
  font-size: 1.05rem;
  color: #2e7d32;
  border: none;
  vertical-align: middle;
  background: none;
}

.feature-table-card td:nth-child(2) {
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: 0.2px;
}

.feature-table-card td:last-child {
  text-align: center;
}

/* Make the download button pop */
.feature-table-card .play-btn {
  background: linear-gradient(90deg, #8bc34a 0%, #43a047 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 12px 28px;
  box-shadow: 0 4px 16px rgba(67, 160, 71, 0.18);
  letter-spacing: 0.5px;
  border: none;
  outline: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}
.feature-table-card .play-btn:hover {
  background: linear-gradient(90deg, #43a047 0%, #8bc34a 100%);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(67, 160, 71, 0.22);
}

/* Responsive: stack cards vertically on mobile */
@media (max-width: 900px) {
  .feature-table-header th {
    font-size: 1rem;
    padding: 14px 8px;
  }
  .feature-table-card td {
    font-size: 0.98rem;
    padding: 16px 8px;
  }
}
@media (max-width: 700px) {
  .casino-table-container {
    padding: 0 2px;
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .feature-table {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
  }
  .feature-table thead, .feature-table-header, .feature-table-header th {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }
  .feature-table-card {
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.10);
    border: 2px solid #aee571;
    background: #fffbe7;
    padding: 0 0 10px 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .feature-table-card td {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px 10px 6px 10px;
    font-size: 1rem;
    border: none;
    background: none;
    position: relative;
    min-height: 36px;
    width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .feature-table-card td:before {
    content: attr(data-label) ": ";
    flex: 0 0 110px;
    font-weight: 700;
    color: #43a047;
    margin-right: 10px;
    font-size: 0.98rem;
    display: block;
    min-width: 80px;
    word-break: break-word;
  }
  .feature-table-card td:last-child {
    justify-content: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 16px;
  }
  .feature-table-card .play-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    font-size: 1.08rem;
    padding: 14px 0;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Bonus CTA Bar Styles */
.bonus-cta-bar {
  width: 100%;
  background: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 16px 38px 16px;
  margin: 0 auto 0 auto;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  gap: 32px;
  box-sizing: border-box;
}
.bonus-cta-text {
  flex: 1 1 auto;
  text-align: left;
  letter-spacing: 0.2px;
}
.bonus-cta-btn {
  display: inline-block;
  padding: 16px 38px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(221,36,118,0.10);
  text-align: center;
}
.bonus-cta-btn:hover {
  background: #fff;
  color: #dd2476;
  box-shadow: 0 4px 16px rgba(221,36,118,0.18);
}
@media (max-width: 700px) {
  .bonus-cta-bar {
    flex-direction: column;
    gap: 18px;
    font-size: 1.05rem;
    padding: 24px 8px 24px 8px;
    text-align: center;
  }
  .bonus-cta-text {
    text-align: center;
  }
  .bonus-cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 0;
    font-size: 1.08rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  width: 100%;
  background: linear-gradient(rgba(247,255,247,0.95), rgba(247,255,247,0.95)), url('../assets/plant v zombie.png') center center/cover no-repeat;
  padding: 48px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.faq-logo {
  display: block;
  margin: 0 auto 18px auto;
  max-width: 120px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}
.faq-title {
  font-size: 2rem;
  color: #2e7d32;
  font-family: 'Poppins', 'Comic Sans MS', cursive, sans-serif;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}
.faq-list {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fffbe7cc;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.10);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid #aee571;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(56, 142, 60, 0.18);
  border-color: #43a047;
}
.faq-question {
  color: #43a047;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.faq-answer {
  color: #4e5d3a;
  font-size: 1.05rem;
  background: #f7fff7cc;
  border-radius: 10px;
  padding: 10px 14px;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 2px 8px rgba(67, 160, 71, 0.08);
}
@media (max-width: 700px) {
  .faq-section {
    padding: 32px 0 32px 0;
    background: linear-gradient(rgba(247,255,247,0.97), rgba(247,255,247,0.97)), url('../assets/plant v zombie.png') center center/cover no-repeat;
  }
  .faq-logo {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .faq-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .faq-list {
    max-width: 98vw;
    padding: 0 4px;
    gap: 14px;
  }
  .faq-item {
    padding: 16px 8px;
    border-radius: 12px;
    background: #fffbe7ee;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding: 8px 8px;
    border-radius: 8px;
    background: #f7fff7ee;
  }
}