/* 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, #FF3D71, #FF1A1A);
    color: white;
    font-size: 32px;
    font-weight: bold;
    padding: 25px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 61, 113, 0.6);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: pulseButton 1.5s infinite;
    margin: 20px 0;
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}

.register-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.register-offer span {
    color: #fff000;
    font-weight: bold;
    font-size: 38px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: moneyGlow 2s infinite;
}

.register-offer:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(255, 61, 113, 0.9);
    animation: none;
}

@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 61, 113, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 61, 113, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 61, 113, 0.6); }
}

@keyframes moneyGlow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 0 20px #fff000, 0 0 30px #fff000; }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
}

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

.casino-container {
    background-image: url('assets/background.jpg');
    /* background: #152131; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 20px; /* Adjust padding as needed */
    min-height: 80vh; /* Ensure full height */
}

.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: #03FFCA;
}

.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 {
    color: white;
    background-color: #152131;
    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: #152131;
}

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

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a0f1c 0%, #152131 100%);
    border: 4px solid #03FFCA;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 0 30px rgba(3, 255, 202, 0.4);
    position: relative;
    overflow: hidden;
    animation: borderPulse 2s infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    animation: pulse 4s infinite;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    animation: slideGlow 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

@keyframes slideGlow {
    0% {
        transform: translateX(0) scale(1);
        text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    }
    25% {
        transform: translateX(-10px) scale(1.05);
        text-shadow: 0 0 30px rgba(3, 255, 202, 0.8),
                     0 0 40px rgba(3, 255, 202, 0.6);
    }
    50% {
        transform: translateX(0) scale(1);
        text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    }
    75% {
        transform: translateX(10px) scale(1.05);
        text-shadow: 0 0 30px rgba(3, 255, 202, 0.8),
                     0 0 40px rgba(3, 255, 202, 0.6);
    }
    100% {
        transform: translateX(0) scale(1);
        text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stats span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 255, 202, 0.1);
    padding: 25px 50px;
    border-radius: 40px;
    font-weight: bold;
    color: #fdbb30;
    font-size: 36px;
    gap: 15px;
    border: 2px solid #03FFCA;
    box-shadow: 0 0 20px rgba(3, 255, 202, 0.3);
    transition: all 0.3s ease;
    animation: statPulse 3s infinite;
}

@keyframes statPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stats span:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 40px rgba(3, 255, 202, 0.5);
    background: rgba(3, 255, 202, 0.2);
    animation: none;
}

.stats span b {
    color: #03FFCA;
    font-weight: bold;
    font-size: 32px;
}

.stats span small {
    color: white;
    font-size: 24px;
    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, #03FFCA, #028F87);
    color: white;
    border: 2px solid transparent;
    padding: 15px 35px;
    font-size: 22px;
    font-weight: bold;
    text-transform: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(3, 255, 202, 0.3);
    animation: buttonGlow 2s infinite;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 4px 15px rgba(3, 255, 202, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(3, 255, 202, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(3, 255, 202, 0.3); }
}

.buttons button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(3, 255, 202, 0.5);
    animation: none;
}

.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;
    border: 2px solid #005faa;
}

.casino-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
    background: #007700;
}

.casino-details div {
    /* background: #4ba614; */
    /* background: #002100; */
    background:gray;
    padding: 25px;
    border-radius: 12px;
    color: white;
    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: #03FFCA;
    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: #fdbb30; /* Gold for emphasis */
}

.casino-details span {
    font-weight: bold;
    color: white;
}

.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: #FFD700; */
    background: #323232;
    padding: 25px;
    border-radius: 12px;
    color: white;
    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: #03FFCA;
    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: #fdbb30; /* Gold for emphasis */
}

.casino-details span {
    font-weight: bold;
    color: white;
}

.casino-intro {
    text-align: center;
    padding: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    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: #03FFCA; /* 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: #152131;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: left;
}

#chatbox-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #028F87;
    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: #008c62;
}

/* 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: #028F87;
    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: 10px 20px;
}

.stats {
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.stats span {
    padding: 15px 30px;
    font-size: 22px;
}

.bonus-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0f1c 0%, #152131 100%);
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    width: 90%;
    border-radius: 20px;
    border: 2px solid #03FFCA;
    box-shadow: 0 0 30px rgba(3, 255, 202, 0.3);
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.05) 0%, transparent 100%);
    animation: pulse 4s infinite;
}

.bonus-section h2 {
    font-size: 48px;
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    font-weight: 800;
    letter-spacing: 2px;
}

.bonus-intro {
    font-size: 20px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bonus-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.bonus-box {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #03FFCA;
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
}

.bonus-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(3, 255, 202, 0.2);
}

.bonus-header h3 {
    font-size: 28px;
    color: #03FFCA;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
}

.bonus-amount {
    font-size: 24px;
    color: #FF3D71;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 61, 113, 0.3);
    animation: pulse 2s infinite;
}

.bonus-box p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight {
    color: #03FFCA;
    font-weight: bold;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #FF3D71;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 61, 113, 0.3);
}

.claim-button {
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 255, 202, 0.3);
    width: 100%;
    margin-top: 20px;
}

.claim-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(3, 255, 202, 0.5);
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(3, 255, 202, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(3, 255, 202, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(3, 255, 202, 0.2);
    border-color: #03FFCA;
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 40px 15px;
        width: 95%;
    }

    .bonus-section h2 {
        font-size: 36px;
    }

    .bonus-intro {
        font-size: 18px;
    }

    .bonus-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-features {
        gap: 20px;
    }

    .feature {
        padding: 12px 20px;
    }
}

.faq-section {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #5ce2e7;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #152131;
    color: #5ce2e7;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: #1d2d44;
}

.faq-answer {
    background-color: #1d2d44;
    color: white;
    padding: 15px;
    display: none;
    font-size: 16px;
}

/* JavaScript-based toggle effect */
.faq-question.active + .faq-answer {
    display: block;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.game-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.game-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.game-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
    border-color: #03FFCA;
}

.game-box:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.game-box:hover .game-overlay {
    transform: translateY(0);
}

.game-overlay h3 {
    color: #03FFCA;
    font-size: 28px;
    margin: 0;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
}

.game-overlay p {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.game-stats {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.game-count, .game-type {
    display: inline-block;
    background: rgba(3, 255, 202, 0.2);
    color: #03FFCA;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid rgba(3, 255, 202, 0.3);
    transition: all 0.3s ease;
}

.game-box:hover .game-count,
.game-box:hover .game-type {
    background: rgba(3, 255, 202, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(3, 255, 202, 0.4);
}

.play-now {
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 0 20px rgba(3, 255, 202, 0.4);
}

.game-box:hover .play-now {
    opacity: 1;
    transform: translateY(0);
    animation: buttonPulse 1.5s infinite;
}

.play-now:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(3, 255, 202, 0.6);
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 20px rgba(3, 255, 202, 0.4); }
    50% { box-shadow: 0 0 30px rgba(3, 255, 202, 0.8); }
    100% { box-shadow: 0 0 20px rgba(3, 255, 202, 0.4); }
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.game-features .feature {
    background: rgba(3, 255, 202, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(3, 255, 202, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.game-features .feature:hover {
    transform: translateY(-5px);
    background: rgba(3, 255, 202, 0.2);
    border-color: #03FFCA;
    box-shadow: 0 5px 15px rgba(3, 255, 202, 0.2);
}

.game-features .feature-icon {
    font-size: 24px;
    animation: iconFloat 3s infinite;
}

.game-features .feature-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .game-overlay h3 {
        font-size: 24px;
    }

    .game-overlay p {
        font-size: 16px;
    }

    .game-stats {
        flex-direction: column;
        gap: 10px;
    }

    .game-features {
        gap: 15px;
    }

    .game-features .feature {
        padding: 12px 20px;
    }
}

.bonus-section-1 {
    text-align: center;
    padding: 40px;
    padding-top: 5px;
    background: radial-gradient(circle, #03FFCA, #333);
    color: #333;
    border-radius: 12px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bonus-section-1 h2 {
    font-size: 26px;
    color: #fff;
    /* Dark Green */
    margin-bottom: 15px;
}

.bonus-section-1 img{
    width: 80px;
}

.register-offer-1 {
    display: inline-block;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    font-size: 20px;
    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;
    width: 350px;
}

.register-offer-1 span {
    color: #fff000;
    font-weight: bold;
}

.register-offer-1:hover {
    background: linear-gradient(45deg, #ff9900, #ff3300);
    box-shadow: 0 0 25px rgba(255, 99, 71, 0.9);
    transform: scale(1.05);
}


.why-choose {
    background: #323232; /* Dark Green */
    color: white;
}

.game-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0f1c 0%, #152131 100%);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.05) 0%, transparent 100%);
    animation: pulse 4s infinite;
}

.game-section h2 {
    font-size: 42px;
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    position: relative;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.game-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #03FFCA;
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #03FFCA;
    transition: all 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.3) contrast(1.1);
}

.game-card h3 {
    color: #03FFCA;
    font-size: 26px;
    margin: 20px 0 10px;
    padding: 0 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover h3 {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(3, 255, 202, 0.6);
}

.game-card p {
    color: #ffffff;
    font-size: 18px;
    padding: 0 20px 20px;
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.game-card:hover p {
    opacity: 1;
    transform: translateY(-5px);
}

.game-card::after {
    content: 'PLAY NOW';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(3, 255, 202, 0.4);
}

.game-card:hover::after {
    bottom: 20px;
    opacity: 1;
    animation: buttonPulse 1.5s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 20px rgba(3, 255, 202, 0.4); }
    50% { box-shadow: 0 0 30px rgba(3, 255, 202, 0.8); }
    100% { box-shadow: 0 0 20px rgba(3, 255, 202, 0.4); }
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }

    .game-card img {
        height: 180px;
    }

    .game-card h3 {
        font-size: 22px;
    }

    .game-card p {
        font-size: 16px;
    }
}

footer {
    padding: 20px;
    background: #152131; /* Light Green */
    margin-top: 0px;
    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-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;
    }
}

.addiction-section {
    background: linear-gradient(135deg, #0a0f1c 0%, #152131 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border: 2px solid #03FFCA;
    box-shadow: 0 0 20px rgba(3, 255, 202, 0.3);
    position: relative;
    overflow: hidden;
}

.addiction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    animation: pulse 4s infinite;
}

.addiction-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.addiction-section .main-text {
    font-size: 42px;
    font-weight: 800;
    color: #03FFCA;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.5);
    margin-bottom: 30px;
    animation: glow 2s infinite alternate;
}

.addiction-section .description {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.addiction-section .tagline {
    font-size: 28px;
    font-weight: 600;
    color: #FF3D71;
    margin: 40px 0;
    text-shadow: 0 0 10px rgba(255, 61, 113, 0.5);
    animation: slideIn 1s ease-out;
}

.addiction-section .brand {
    font-size: 32px;
    font-weight: 700;
    color: #03FFCA;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(3, 255, 202, 0.7);
    animation: pulse 2s infinite;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(3, 255, 202, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(3, 255, 202, 0.8),
                     0 0 30px rgba(3, 255, 202, 0.6);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .addiction-section {
        padding: 40px 15px;
    }
    
    .addiction-section .main-text {
        font-size: 32px;
    }
    
    .addiction-section .description {
        font-size: 18px;
    }
    
    .addiction-section .tagline {
        font-size: 24px;
    }
    
    .addiction-section .brand {
        font-size: 28px;
    }
}

@keyframes borderPulse {
    0% { box-shadow: 0 0 30px rgba(3, 255, 202, 0.4); }
    50% { box-shadow: 0 0 50px rgba(3, 255, 202, 0.8); }
    100% { box-shadow: 0 0 30px rgba(3, 255, 202, 0.4); }
}

.advantages-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0f1c 0%, #152131 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.05) 0%, transparent 100%);
    animation: pulse 4s infinite;
}

.advantages-section h2 {
    font-size: 42px;
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(3, 255, 202, 0.5);
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #03FFCA;
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: iconFloat 3s infinite;
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.advantage-card h3 {
    color: #03FFCA;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
}

.advantage-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.advantage-highlight {
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 0 15px rgba(3, 255, 202, 0.3);
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0% { box-shadow: 0 0 15px rgba(3, 255, 202, 0.3); }
    50% { box-shadow: 0 0 25px rgba(3, 255, 202, 0.5); }
    100% { box-shadow: 0 0 15px rgba(3, 255, 202, 0.3); }
}

.advantage-card:hover .advantage-highlight {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(3, 255, 202, 0.6);
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .advantage-card {
        padding: 20px;
    }

    .advantage-icon {
        font-size: 36px;
    }

    .advantage-card h3 {
        font-size: 20px;
    }

    .advantage-card p {
        font-size: 14px;
    }

    .advantage-highlight {
        font-size: 16px;
    }
}

.register-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

.step-box {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #03FFCA;
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
}

.step-box:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(3, 255, 202, 0.4);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: iconFloat 3s infinite;
}

.step-box h3 {
    color: #03FFCA;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
}

.step-box p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-features li {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: rgba(3, 255, 202, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(3, 255, 202, 0.2);
    transition: all 0.3s ease;
}

.step-box:hover .step-features li {
    transform: translateX(10px);
    background: rgba(3, 255, 202, 0.2);
    border-color: #03FFCA;
}

.register-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(3, 255, 202, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(3, 255, 202, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(3, 255, 202, 0.2);
    border-color: #03FFCA;
    box-shadow: 0 5px 15px rgba(3, 255, 202, 0.2);
}

.highlight-icon {
    font-size: 24px;
    animation: iconFloat 3s infinite;
}

.highlight-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.register-cta {
    text-align: center;
    margin-top: 40px;
}

.register-button {
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(3, 255, 202, 0.4);
    animation: buttonPulse 2s infinite;
}

.register-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(3, 255, 202, 0.6);
    animation: none;
}

.register-note {
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .register-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .step-box {
        padding: 30px 20px;
    }

    .step-icon {
        font-size: 36px;
    }

    .step-box h3 {
        font-size: 20px;
    }

    .step-box p {
        font-size: 14px;
    }

    .step-features li {
        font-size: 14px;
    }

    .register-highlights {
        gap: 15px;
    }

    .highlight-item {
        padding: 12px 20px;
    }

    .register-button {
        padding: 15px 30px;
        font-size: 20px;
    }

    .register-note {
        font-size: 16px;
    }
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

.payment-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.payment-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #03FFCA;
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: iconFloat 3s infinite;
}

.payment-card h3 {
    color: #03FFCA;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
}

.payment-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-features span {
    color: #ffffff;
    font-size: 14px;
    padding: 8px 15px;
    background: rgba(3, 255, 202, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(3, 255, 202, 0.2);
    transition: all 0.3s ease;
}

.payment-card:hover .payment-features span {
    transform: translateX(10px);
    background: rgba(3, 255, 202, 0.2);
    border-color: #03FFCA;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.payment-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
    filter: brightness(1);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

.support-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #03FFCA;
    box-shadow: 0 15px 35px rgba(3, 255, 202, 0.3);
}

.support-card:hover::before {
    opacity: 1;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: iconFloat 3s infinite;
}

.support-card h3 {
    color: #03FFCA;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(3, 255, 202, 0.3);
}

.support-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.support-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.support-features li {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: rgba(3, 255, 202, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(3, 255, 202, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover .support-features li {
    transform: translateX(10px);
    background: rgba(3, 255, 202, 0.2);
    border-color: #03FFCA;
}

.support-button {
    background: linear-gradient(45deg, #03FFCA, #00FF9D);
    color: #152131;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(3, 255, 202, 0.4);
}

.support-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(3, 255, 202, 0.6);
}

.support-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .payment-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .payment-card,
    .support-card {
        padding: 30px 20px;
    }

    .payment-icon,
    .support-icon {
        font-size: 36px;
    }

    .payment-card h3,
    .support-card h3 {
        font-size: 20px;
    }

    .payment-card p,
    .support-card p {
        font-size: 14px;
    }

    .payment-features span,
    .support-features li {
        font-size: 14px;
    }

    .payment-methods {
        gap: 20px;
    }

    .payment-logo {
        height: 30px;
    }

    .support-highlights {
        gap: 15px;
    }
}

.notice-winner {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notice-winner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 255, 202, 0.1) 0%, transparent 100%);
    animation: pulse 2s infinite;
}

.notice-winner h1 {
    color: #03FFCA;
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(3, 255, 202, 0.3);
    animation: glow 2s infinite;
}

.winner-notices {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 40px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.winner-notices::before,
.winner-notices::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.winner-notices::before {
    left: 0;
    background: linear-gradient(to right, #1a1f2e, transparent);
}

.winner-notices::after {
    right: 0;
    background: linear-gradient(to left, #1a1f2e, transparent);
}

.winner-notices {
    animation: scrollWinners 30s linear infinite;
}

@keyframes scrollWinners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.winner-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 255, 202, 0.1);
    position: relative;
    overflow: hidden;
}

.bonus-claims {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.bonus-claims::before,
.bonus-claims::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.bonus-claims::before {
    left: 0;
    background: linear-gradient(to right, #1a1f2e, transparent);
}

.bonus-claims::after {
    right: 0;
    background: linear-gradient(to left, #1a1f2e, transparent);
}

.bonus-claims {
    animation: scrollBonus 25s linear infinite;
}

@keyframes scrollBonus {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.claim-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 255, 202, 0.1);
    position: relative;
    overflow: hidden;
}

/* Duplicate cards for seamless scrolling */
.winner-notices {
    display: flex;
    gap: 20px;
}

.winner-notices .winner-card:nth-child(n+5) {
    display: none;
}

.bonus-claims {
    display: flex;
    gap: 20px;
}

.bonus-claims .claim-card:nth-child(n+4) {
    display: none;
}

@media (max-width: 768px) {
    .winner-notices,
    .bonus-claims {
        animation-duration: 20s;
    }

    .winner-card,
    .claim-card {
        flex: 0 0 260px;
    }
}

.scrolling-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.scrolling-track {
    display: flex;
    width: max-content;
    animation: scroll-horizontal 30s linear infinite;
    align-items: center;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.winner-card, .claim-card {
    min-width: 300px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .winner-card, .claim-card {
        min-width: 220px;
        margin-right: 12px;
    }
    .scrolling-track {
        animation-duration: 18s;
    }
}