/* 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, black, #40fc32);
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.7);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}

.register-offer span {
    color: #40fc32;
    font-weight: bold;
}

.register-offer:hover {
    background: linear-gradient(45deg, #40fc32, black);
    box-shadow: 0 0 25px rgba(64, 252, 50, 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); }
}
.casino-container {
    background-image: url('assets/background.jpg'); /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 20px; /* Adjust padding as needed */
    min-height: 100vh; /* Ensure full height */
}
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: black;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1100;
}

.side-menu a {
    color: #40fc32;
    padding: 15px;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    display: block;
    transition: background 0.3s;
}

.side-menu a:hover {
    background: #40fc32;
    color: black;
}

.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: black;
    color: #40fc32;
    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: black;
}

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

.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(64, 252, 50, 0.1);
    padding: 25px 50px;
    border-radius: 40px;
    font-weight: bold;
    color: #40fc32; /* Green for numbers */
    font-size: 30px;
    gap: 10px; /* Adds spacing between number and text */
}

.stats span b {
    color: black; /* Black separator */
    font-weight: normal;
}

.stats span small {
    color: #40fc32; /* Green color for labels */
    font-size: 20px; /* Smaller font size */
    font-weight: normal;
}

.stats span:last-child::after {
    content: ""; /* Remove the separator for the last item */
}


.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.buttons button {
    position: relative;
    background: black;
    color: #40fc32;
    border: 2px solid #40fc32;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: none;
    border-radius: 50px; /* Sharp edges */
    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: #40fc32;
    color: black;
    border: 2px solid black;
    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(64, 252, 50, 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: #40fc32;
    color: black;
    border: 2px solid black;
}

.register:hover {
    background: black;
    color: #40fc32;
    border: 2px solid #40fc32;
}

.login {
    background: black;
    color: #40fc32;
    border: 2px solid #40fc32;
}

.login:hover {
    background: #40fc32;
    color: black;
    border: 2px solid black;
}


.newsroom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0, 119, 0, 0.9), rgba(0, 33, 0, 0.95));
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.newsroom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2340fc32" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.newsroom .news-item {
    background: linear-gradient(145deg, rgba(0, 33, 0, 0.9), rgba(0, 50, 0, 0.8));
    padding: 30px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}

.newsroom .news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 252, 50, 0.2), transparent);
    transition: left 0.6s ease;
}

.newsroom .news-item:hover::before {
    left: 100%;
}

.newsroom .news-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(64, 252, 50, 0.3);
    border-color: #40fc32;
}

.newsroom h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #40fc32;
    text-shadow: 0 0 15px rgba(64, 252, 50, 0.6);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.newsroom h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40fc32, #008c00);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.newsroom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsroom ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(64, 252, 50, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.newsroom ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #40fc32, #008c00);
    border-radius: 0 2px 2px 0;
}

.newsroom ul li:hover {
    background: linear-gradient(135deg, rgba(64, 252, 50, 0.15), rgba(64, 252, 50, 0.05));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(64, 252, 50, 0.2);
    border-color: #40fc32;
}

.newsroom strong {
    color: #fdbb30;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(253, 187, 48, 0.5);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.newsroom span {
    font-weight: 600;
    color: #ffffff;
    text-align: right;
    font-size: 13px;
    max-width: 60%;
    line-height: 1.4;
}

.newsroom p {
    font-size: 16px;
    margin: 8px 0;
    line-height: 1.6;
    color: #e0e0e0;
}

.casino-intro {
    text-align: center;
    padding: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    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;
}

.casino-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555; /* 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: 70%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the full section */
}

.text-container {
    width: 30%;
    background: #007700; /* Purple Background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: left;
}

#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: 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: 40px;
    padding-top: 5px;
    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;
}

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

.bonus-box {
    background: #4ba614;
    padding: 20px;
    border-radius: 12px;
    color: white;
    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: white; /* Gold-like color */
    margin-bottom: 10px;
}

.bonus-box p {
    font-size: 16px;
    line-height: 1.4;
}


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

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

footer {
    padding: 20px;
    background: black; /* 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) {
    .newsroom {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .casino-intro {
        width: 80%;
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .newsroom {
        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) {
    .newsroom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .newsroom {
        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: 10px;
    }

    .buttons button {
        width: 100%;
    }
}

/* History Section Styles */
.history-section {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    margin: 20px 0;
    border-radius: 15px;
}

.history-section h2 {
    color: #40fc32;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #40fc32, #008c00);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.year {
    background: linear-gradient(45deg, #40fc32, #008c00);
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 15px 25px;
    border-radius: 50px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 0 20px rgba(64, 252, 50, 0.5);
    z-index: 2;
    position: relative;
}

.achievement {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #40fc32;
    border-radius: 15px;
    padding: 25px;
    margin: 0 30px;
    flex: 1;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.3);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(64, 252, 50, 0.6);
}

.achievement h3 {
    color: #40fc32;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(64, 252, 50, 0.5);
}

.achievement p {
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.achievement ul {
    list-style: none;
    padding: 0;
}

.achievement ul li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.achievement ul li::before {
    content: '✓';
    color: #40fc32;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits-summary {
    margin-top: 50px;
}

.benefits-summary h3 {
    color: #40fc32;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #40fc32;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.3);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(64, 252, 50, 0.6);
    border-color: #008c00;
}

.benefit-item h4 {
    color: #40fc32;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(64, 252, 50, 0.5);
}

.benefit-item p {
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive Design for History Section */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 60px;
    }
    
    .year {
        margin-bottom: 20px;
        min-width: 100px;
        font-size: 1.2rem;
    }
    
    .achievement {
        margin: 0;
        max-width: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .history-section h2 {
        font-size: 2rem;
    }
    
    .benefits-summary h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 20px 10px;
    }
    
    .achievement {
        padding: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .newsroom {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 15px;
    }
    
    .newsroom .news-item {
        padding: 25px;
    }
    
    .newsroom h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .newsroom {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 10px;
    }
    
    .newsroom .news-item {
        padding: 20px;
    }
    
    .newsroom h2 {
        font-size: 20px;
    }
    
    .newsroom ul li {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .newsroom span {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .newsroom {
        padding: 20px 5px;
        margin: 20px 0;
    }
    
    .newsroom .news-item {
        padding: 15px;
    }
    
    .newsroom h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .newsroom ul li {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
}

/* Additional animations and effects */
.newsroom .news-item {
    animation: fadeInUp 0.6s ease-out;
}

.newsroom .news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.newsroom .news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.newsroom .news-item:nth-child(3) {
    animation-delay: 0.3s;
}

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

.newsroom ul li {
    animation: slideInLeft 0.4s ease-out;
}

.newsroom ul li:nth-child(1) { animation-delay: 0.1s; }
.newsroom ul li:nth-child(2) { animation-delay: 0.2s; }
.newsroom ul li:nth-child(3) { animation-delay: 0.3s; }
.newsroom ul li:nth-child(4) { animation-delay: 0.4s; }
.newsroom ul li:nth-child(5) { animation-delay: 0.5s; }
.newsroom ul li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glow effect on hover */
.newsroom .news-item:hover h2 {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 15px rgba(64, 252, 50, 0.6);
    }
    to {
        text-shadow: 0 0 25px rgba(64, 252, 50, 0.8), 0 0 35px rgba(64, 252, 50, 0.4);
    }
}

/* Pulse effect for important items */
.newsroom ul li:hover strong {
    animation: pulse 1s ease-in-out infinite;
}

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

/* Floating animation for the entire section */
.newsroom {
    animation: float 6s ease-in-out infinite;
}

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

/* Professional Newsroom Design */
.newsroom {
    background: #0a0a0a;
    padding: 80px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { background: #0a0a0a; }
    25% { background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%); }
    50% { background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%); }
    75% { background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%); }
}

.newsroom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 252, 50, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    animation: gradientMove 15s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(-5px) translateY(5px); }
    75% { transform: translateX(15px) translateY(-5px); }
}

/* Floating particles */
.newsroom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(64, 252, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 252, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(64, 252, 50, 0.06) 0%, transparent 50%);
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.newsroom-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.newsroom-header h2 {
    color: #40fc32;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(64, 252, 50, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
    position: relative;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(64, 252, 50, 0.5); }
    100% { text-shadow: 0 0 30px rgba(64, 252, 50, 0.8), 0 0 40px rgba(64, 252, 50, 0.3); }
}

.newsroom-header h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(64, 252, 50, 0.1), transparent);
    border-radius: 10px;
    animation: headerGlow 4s ease-in-out infinite;
}

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

.newsroom-header p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.news-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(64, 252, 50, 0.1);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: cardFloat 6s ease-in-out infinite;
}

.news-card:nth-child(1) { animation-delay: 0s; }
.news-card:nth-child(2) { animation-delay: 1s; }
.news-card:nth-child(3) { animation-delay: 2s; }
.news-card:nth-child(4) { animation-delay: 3s; }
.news-card:nth-child(5) { animation-delay: 4s; }
.news-card:nth-child(6) { animation-delay: 5s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-0.5deg); }
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #40fc32, #008c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(64, 252, 50, 0.3); }
    50% { box-shadow: 0 0 20px rgba(64, 252, 50, 0.6); }
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(64, 252, 50, 0.3);
    border-color: rgba(64, 252, 50, 0.5);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #000;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(64, 252, 50, 0.1), transparent);
    animation: imageShimmer 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes imageShimmer {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    animation: imagePulse 8s ease-in-out infinite;
}

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

.news-card:hover .news-image img {
    transform: scale(1.15);
}

.news-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #40fc32;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 252, 50, 0.3);
    animation: categoryBounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes categoryBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.news-content {
    padding: 30px;
    position: relative;
}

.news-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40fc32, transparent);
    animation: contentGlow 3s ease-in-out infinite;
}

@keyframes contentGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.news-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    animation: titleSlide 0.6s ease-out both;
}

@keyframes titleSlide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.news-card:hover .news-content h3 {
    color: #40fc32;
    animation: titleGlow 1s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 5px rgba(64, 252, 50, 0.3); }
    100% { text-shadow: 0 0 15px rgba(64, 252, 50, 0.6); }
}

.news-date {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: dateFade 0.8s ease-out 0.2s both;
}

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

.news-content p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    animation: textReveal 1s ease-out 0.4s both;
}

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

.newsroom-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.newsroom-footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40fc32, transparent);
    animation: footerLine 2s ease-in-out infinite;
}

@keyframes footerLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.view-all-news {
    display: inline-block;
    background: linear-gradient(45deg, #40fc32, #008c00);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 252, 50, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

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

.view-all-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.view-all-news:hover::before {
    left: 100%;
}

.view-all-news:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 50px rgba(64, 252, 50, 0.6);
}

/* Animation for cards */
.news-card {
    animation: fadeInUp 0.6s ease-out, cardFloat 6s ease-in-out infinite;
    animation-fill-mode: both;
}

.news-card:nth-child(1) { animation-delay: 0.1s, 0s; }
.news-card:nth-child(2) { animation-delay: 0.2s, 1s; }
.news-card:nth-child(3) { animation-delay: 0.3s, 2s; }
.news-card:nth-child(4) { animation-delay: 0.4s, 3s; }
.news-card:nth-child(5) { animation-delay: 0.5s, 4s; }
.news-card:nth-child(6) { animation-delay: 0.6s, 5s; }

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

/* Responsive Design */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .newsroom-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .newsroom {
        padding: 60px 15px;
    }
    
    .newsroom-header h2 {
        font-size: 2.5rem;
    }
    
    .newsroom-header p {
        font-size: 1.1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .news-content {
        padding: 25px;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .newsroom {
        padding: 40px 10px;
    }
    
    .newsroom-header h2 {
        font-size: 2rem;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .view-all-news {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Benefits Section Styling */
.benefits-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(64, 252, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 252, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-header h2 {
    color: #40fc32;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(64, 252, 50, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.benefits-header p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.benefit-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(64, 252, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 252, 50, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(64, 252, 50, 0.2);
    border-color: rgba(64, 252, 50, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.benefit-card h3 {
    color: #40fc32;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.3);
}

.benefit-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-highlight {
    background: linear-gradient(45deg, rgba(64, 252, 50, 0.1), rgba(64, 252, 50, 0.05));
    color: #40fc32;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(64, 252, 50, 0.2);
}

/* Coverage Section */
.coverage-section {
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-section h3 {
    color: #40fc32;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(64, 252, 50, 0.5);
}

.coverage-table {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(64, 252, 50, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(45deg, #40fc32, #008c00);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-header > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(64, 252, 50, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(64, 252, 50, 0.05);
}

.table-row > div {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(64, 252, 50, 0.1);
}

.feature {
    justify-content: flex-start !important;
    color: #ffffff;
    font-weight: 500;
}

.status {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Tier Section */
.tier-section {
    margin: 60px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tier-section h3 {
    color: #40fc32;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(64, 252, 50, 0.5);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tier-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:nth-child(1) { border-color: rgba(76, 175, 80, 0.3); }
.tier-card:nth-child(2) { border-color: rgba(255, 193, 7, 0.3); }
.tier-card:nth-child(3) { border-color: rgba(244, 67, 54, 0.3); }

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(64, 252, 50, 0.2);
}

.tier-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.tier-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.tier-header h4 {
    color: #40fc32;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-card ul li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(64, 252, 50, 0.1);
    position: relative;
    padding-left: 20px;
}

.tier-card ul li::before {
    content: '✓';
    color: #40fc32;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Unique Features Section */
.unique-features {
    margin: 60px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.unique-features h3 {
    color: #40fc32;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(64, 252, 50, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(64, 252, 50, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(64, 252, 50, 0.2);
    border-color: rgba(64, 252, 50, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-item h4 {
    color: #40fc32;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 15px;
    }
    
    .benefits-header h2 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .coverage-table {
        font-size: 0.9rem;
    }
    
    .table-header > div,
    .table-row > div {
        padding: 12px 15px;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 10px;
    }
    
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .coverage-section h3,
    .tier-section h3,
    .unique-features h3 {
        font-size: 2rem;
    }
}

/* Spin420 Innovation Section */
.innovation-section {
    background: linear-gradient(135deg, black 0%, #1a1a1a 50%, black 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.innovation-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #40fc32;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(64, 252, 50, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.primary-btn {
    background: linear-gradient(45deg, black, #40fc32);
    color: white;
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(45deg, #40fc32, black);
    box-shadow: 0 0 25px rgba(64, 252, 50, 0.5);
    transform: scale(1.05);
}

.secondary-btn {
    background: transparent;
    color: #40fc32;
    border: 1px solid #40fc32;
}

.secondary-btn:hover {
    background: rgba(64, 252, 50, 0.1);
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.3);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.element:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.element:nth-child(2) { top: 60%; left: 70%; animation-delay: 1.5s; }
.element:nth-child(3) { top: 40%; left: 50%; animation-delay: 3s; }
.element:nth-child(4) { top: 80%; left: 30%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Features Showcase */
.features-showcase {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(64, 252, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #40fc32;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 252, 50, 0.3);
    border-color: #40fc32;
}

.feature-card.large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #40fc32;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.3);
}

.feature-content p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 8px 0;
    color: white;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    color: #40fc32;
    position: absolute;
    left: 0;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(64, 252, 50, 0.5);
}

.feature-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: #40fc32;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: white;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gaming-animation {
    width: 200px;
    height: 200px;
    position: relative;
}

.slot-machine {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, black, #40fc32, #1a1a1a, #40fc32, black),
        radial-gradient(circle at 50% 50%, #40fc32 0%, transparent 70%);
    border-radius: 16px;
    animation: slotSpin 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(64, 252, 50, 0.5);
}

.slot-machine::before {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    animation: slotSymbol 1s ease-in-out infinite;
}

@keyframes slotSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(5deg); }
}

@keyframes slotSymbol {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #40fc32;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(64, 252, 50, 0.3);
}

.feature-card p {
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-badge, .speed-indicator, .global-stats {
    display: inline-block;
    background: rgba(64, 252, 50, 0.1);
    color: #40fc32;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #40fc32;
    box-shadow: 0 0 10px rgba(64, 252, 50, 0.2);
}

/* Innovation Stats */
.innovation-stats {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(64, 252, 50, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #40fc32;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, black, #40fc32);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(64, 252, 50, 0.5);
}

.stat-item h4 {
    color: #40fc32;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(64, 252, 50, 0.3);
}

.stat-item p {
    color: white;
    font-size: 0.9rem;
}

/* Technology Preview */
.technology-preview {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
}

.technology-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #40fc32;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(64, 252, 50, 0.5);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.preview-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(64, 252, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #40fc32;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(64, 252, 50, 0.3);
    border-color: #40fc32;
}

.preview-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.preview-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #40fc32;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(64, 252, 50, 0.3);
}

.preview-item p {
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.coming-soon {
    display: inline-block;
    background: rgba(64, 252, 50, 0.1);
    color: #40fc32;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #40fc32;
    box-shadow: 0 0 8px rgba(64, 252, 50, 0.2);
}

/* Call to Action */
.call-to-action {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(64, 252, 50, 0.2);
    border: 1px solid #40fc32;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #40fc32;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(64, 252, 50, 0.5);
}

.cta-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 14px 28px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(45deg, black, #40fc32);
    color: white;
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(45deg, #40fc32, black);
    box-shadow: 0 0 25px rgba(64, 252, 50, 0.5);
    transform: scale(1.05);
}

.cta-secondary {
    background: transparent;
    color: #40fc32;
    border: 1px solid #40fc32;
}

.cta-secondary:hover {
    background: rgba(64, 252, 50, 0.1);
    box-shadow: 0 0 15px rgba(64, 252, 50, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .feature-card.large {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .innovation-section {
        padding: 60px 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stat-container {
        grid-template-columns: 1fr;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
    }
}

/* Dynamic Contact Section */
.contact-section {
    background: linear-gradient(135deg, black 0%, #1a1a1a 50%, black 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(64, 252, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 252, 50, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 4s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.contact-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #40fc32;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(64, 252, 50, 0.8);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(64, 252, 50, 0.5); }
    100% { text-shadow: 0 0 40px rgba(64, 252, 50, 1); }
}

.contact-subtitle {
    font-size: 1.3rem;
    color: white;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.contact-stats .stat-item {
    text-align: center;
    background: rgba(64, 252, 50, 0.1);
    border: 1px solid #40fc32;
    border-radius: 12px;
    padding: 20px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.contact-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(64, 252, 50, 0.3);
}

.contact-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #40fc32;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.8;
}

.card-description {
    color: white;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    padding: 15px;
    background: rgba(64, 252, 50, 0.05);
    border-radius: 8px;
    border-left: 3px solid #40fc32;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(64, 252, 50, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    flex-wrap: wrap;
    gap: 10px;
}

.link-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    width: 100%;
    margin-top: 5px;
    padding-left: 5px;
}

.contact-info-section {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #40fc32;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 252, 50, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(64, 252, 50, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.info-card h4 {
    color: #40fc32;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(64, 252, 50, 0.3);
}

.info-card p {
    color: white;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.response-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.emergency-features {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 68, 68, 0.3);
    animation: featurePulse 2s ease-in-out infinite;
}

@keyframes featurePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Responsive adjustments for new content */
@media (max-width: 768px) {
    .contact-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-stats .stat-item {
        min-width: 200px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .emergency-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .link-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .link-arrow {
        align-self: flex-end;
    }
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #40fc32;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 252, 50, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(64, 252, 50, 0.3);
    border-color: #40fc32;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    font-size: 2rem;
    z-index: 2;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(64, 252, 50, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.card-header h3 {
    color: #40fc32;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.contact-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-links li {
    margin-bottom: 15px;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 252, 50, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-item:hover::before {
    left: 100%;
}

.link-item:hover {
    background: rgba(64, 252, 50, 0.1);
    border-color: #40fc32;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(64, 252, 50, 0.2);
}

.link-text {
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.link-arrow {
    color: #40fc32;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.link-item:hover .link-arrow {
    transform: translateX(5px);
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.card-particles::before,
.card-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #40fc32;
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.card-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.contact-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.emergency-contact {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(64, 252, 50, 0.1) 100%);
    border: 2px solid #ff4444;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 68, 68, 0.1) 50%, transparent 70%);
    animation: emergencyGlow 3s ease-in-out infinite;
}

@keyframes emergencyGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.emergency-icon {
    font-size: 3rem;
    animation: emergencyPulse 1s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-content {
    flex: 1;
    text-align: left;
}

.emergency-content h4 {
    color: #ff4444;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.emergency-content p {
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.emergency-btn:hover {
    background: linear-gradient(45deg, #ff6666, #ff4444);
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
    transform: scale(1.05);
}

/* Why Choose Section Enhancements */
.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(64, 252, 50, 0.05);
    border-radius: 12px;
    border-left: 3px solid #40fc32;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(64, 252, 50, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(64, 252, 50, 0.2);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-content h3 {
    color: #40fc32;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(64, 252, 50, 0.3);
}

.feature-content p {
    color: white;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.cta-section {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(64, 252, 50, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid #40fc32;
}

.highlight-text {
    color: #40fc32;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(64, 252, 50, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta {
    background: linear-gradient(45deg, black, #40fc32);
    color: white;
    box-shadow: 0 0 20px rgba(64, 252, 50, 0.3);
}

.primary-cta:hover {
    background: linear-gradient(45deg, #40fc32, black);
    box-shadow: 0 0 30px rgba(64, 252, 50, 0.5);
    transform: scale(1.05);
}

.secondary-cta {
    background: transparent;
    color: #40fc32;
    border: 2px solid #40fc32;
}

.secondary-cta:hover {
    background: rgba(64, 252, 50, 0.1);
    box-shadow: 0 0 20px rgba(64, 252, 50, 0.3);
    transform: scale(1.05);
}

/* Responsive adjustments for why-choose section */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta, .secondary-cta {
        width: 200px;
        text-align: center;
    }
}