/*
   _____                       _       _     _   
  / ____|                     (_)     | |   | |  
 | |     ___  _ __  _   _ _ __ _  __ _| |__ | |_ 
 | |    / _ \| '_ \| | | | '__| |/ _` | '_ \| __|
 | |___| (_) | |_) | |_| | |  | | (_| | | | | |_ 
 \_____\___/| .__/ \__, |_|  |_|\__, |_| |_|\__|
            | |     __/ |        __/ |          
            |_|    |___/        |___/           
                                                                   
 This file is made by @isaewwxx in ownership of Capybara Hosting 
 and is protected under DMCA and the Berne Convention 
 more info at https://legal.capybarahost.xyz/Copyright-Declaration/ 

*/
/* style.css - Complete CSS for Capybara Hosting Website (Products Page - No Collapse) */

/* ------------------------------------------------------------------ */
/*  1. Basic Reset and Body Styling (Global)                           */
/* ------------------------------------------------------------------ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'ABC Ginto Nord Unlicensed Trial', sans-serif;
    background-color: #121212;
    /* Dark background for body */
    color: #f0f0f0;
    /* Light text color */
    line-height: 1.6;
    scroll-behavior: smooth;
   -webkit-font-smoothing: antialiased; /* ADD for smoother fonts on Chrome/Safari */
   -moz-osx-font-smoothing: grayscale;  /* ADD for smoother fonts on Firefox */
    /* Smooth scrolling for anchor links */
}

/* ------------------------------------------------------------------ */
/*  2. Container and General Layout (Global)                           */
/* ------------------------------------------------------------------ */

.container {
    max-width: 1200px;
    /* Maximum width of content */
    margin: 0 auto;
    /* Center container horizontally */
    padding: 20px;
    /* Padding around container content */
}

section {
    padding: 90px 0;
    /* Vertical padding for sections */
}

.section-description {
    text-align: center;
    /* Center align section descriptions */
    color: #ccc;
    /* Light gray color for descriptions */
    margin-bottom: 45px;
    /* Spacing below descriptions */
    max-width: 850px;
    /* Maximum width for descriptions */
    margin-left: auto;
    /* Center descriptions horizontally */
    margin-right: auto;
    font-size: 1.05em;
}

/* ------------------------------------------------------------------ */
/*  3. Header and Navigation (Global)                                  */
/* ------------------------------------------------------------------ */

header {
    background-color: #181818;
    /* Slightly darker header background */
    padding: 12px 0;
    position: sticky;
    /* Fixed header at the top on scroll */
    top: 0;
    z-index: 100;
    /* Ensure header is above other content */
}

header .container {
    display: flex;
    /* Use flexbox for header layout */
    justify-content: space-between;
    /* Space logo and navigation */
    align-items: center;
    /* Vertically align items in header */
    padding: 0 20px;
    min-height: 48px;
}

.logo {
    font-size: 1.3em;
    font-weight: bold;
    color: #f0f0f0;
    /* Light color for logo text */
    text-decoration: none;
    /* Remove underline from logo link */
    line-height: 1.2;
    display: flex;
    align-items: center;
}

/* --- Navigation Links (Large Screen - Default) --- */
.nav-links nav ul {
    list-style: none;
    /* Remove bullet points from list */
    display: flex;
    /* Display list items horizontally */
}

.nav-links nav ul li {
    margin-left: 16px;
    /* Spacing between navigation links */
    display: flex;
    align-items: center;
}

.nav-links nav ul li a {
    text-decoration: none;
    /* Remove underline from links */
    color: #ccc;
    /* Light gray link color */
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.nav-links nav ul li a:hover {
    color: #fff;
    /* White link color on hover */
}

/* "Current" page link style */
.nav-links nav ul li a.current {
    background-color: rgba(76, 175, 80, 0.7);
    /* Green background for current page */
    color: #fff;
    /* White text for current page link */
    padding: 10px 15px;
    /* Padding inside current page link */
    border-radius: 5px;
    /* Rounded corners for current page link */
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    /* Smooth background transition */
}

.nav-links nav ul li a.current:hover {
    background-color: rgba(56, 142, 60, 0.9);
    /* Darker green on hover */
    color: #fff;
}


/* --- Hamburger Menu Icon (Initially Hidden on Large Screens) --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 1000;
}

.hamburger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: #ccc;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* ------------------------------------------------------------------ */
/*  4. Hero Section - Homepage Specific (`index.html`)                 */
/* ------------------------------------------------------------------ */

/* Hero Section Styles */
.hero-section {
    background-color: #121212;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-section {
    padding: 80px 0;
    min-height: auto;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-section h1 {
    font-size: 3.0em;
    margin-bottom: 10px;
    color: #fff;
    /* White hero heading color */
}

.hero-subtitle {
    font-size: 1.4em;
    color: #ccc;
    /* Light gray hero subtitle color */
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.1em;
    color: #ccc;
    /* Light gray hero paragraph color */
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #4CAF50;
    /* Green CTA button background */
    color: #fff;
    /* White CTA button text */
    text-decoration: none;
    /* Remove underline from CTA button */
    border-radius: 5px;
    /* Rounded corners for CTA button */
    font-weight: bold;
    transition: background-color 0.3s ease;
    /* Smooth background transition */
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: #388E3C;
    /* Darker green CTA button on hover */
}

/* ------------------------------------------------------------------ */
/*  6. Services Section - Homepage Specific (`index.html`)            */
/* ------------------------------------------------------------------ */

.services-section {
    /* This style now applies to both Services and Products sections */
    background-color: #181818;
}

/* Products section - identical to services-section for full consistency */
.products-section {
    background-color: #181818;
}

/* NEW: Wrapper for Carousel Functionality */
.services-carousel-wrapper {
    position: relative;
}

/* Product carousel wrapper - identical to services-carousel-wrapper */
.product-carousel-wrapper {
    position: relative;
}

.service-categories {
    /* This style now applies to both service and product categories */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

/* Product categories - identical to service-categories for full consistency */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

/* NEW: Initially hide carousel buttons on desktop */
.services-carousel-btn {
    display: none;
}

.category-card,
.product-tier-card {
    /* Styles for both category cards and product tier cards */
    background-color: #252525;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.product-tier-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.category-card img {
    /* Style for images in category cards (homepage services) */
    max-width: 90px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.category-card h3 {
    /* Style for headings in category cards (homepage services) */
    font-size: 1.5em;
    margin-bottom: 18px;
    color: #fff;
}

.category-card p,
.product-tier-card ul,
.product-tier-card h4 {
    /* Styles for paragraphs in category cards (homepage services) AND tier cards */
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.02em;
    list-style: none;
    /* Remove bullet points from tier spec lists */
    padding-left: 0;
    text-align: left;
    /* Align text to left in tier cards */
    line-height: 1.7;
    /* INCREASED LINE HEIGHT - for Products Page */
}

.price {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #4CAF50;
}

.price .amount {
    font-size: 1.6em;
}

.price .period {
    font-size: 0.8em;
    /* Style for "/month" period text */
    color: #aaa;
    /* Muted color for period */
}


.learn-more {
    /* Style for "Learn More" and "Add to Cart" buttons */
    display: inline-block;
    padding: 11px 25px;
    background-color: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05em;
}

.learn-more:hover {
    background-color: #4CAF50;
    color: #fff;
}

/* "Your game isn't listed?" Text in Services Section */
.custom-game-text {
    margin-top: 30px;
    font-size: 1.05em;
}

.custom-game-text .contact-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.custom-game-text .contact-link:hover {
    text-decoration: underline;
}


/* NEW: Updated Mobile Carousel Styles for Animation */
@media (max-width: 850px) {
    .services-carousel-wrapper {
        padding: 0;
    }

    .service-categories {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 20px;
        grid-template-columns: unset;
        padding: 0 10%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .product-categories {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 20px;
        grid-template-columns: unset;
        padding: 0 10%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .service-categories::-webkit-scrollbar {
        display: none;
    }
    .product-categories::-webkit-scrollbar {
        display: none;
    }

    .service-categories .category-card {
        flex: 0 0 80%;
        max-width: 320px;
        margin-bottom: 0;
        scroll-snap-align: center;
        transform: scale(0.9); 
        opacity: 0.7;
        transition: transform 0.4s ease, opacity 0.4s ease; 
    }
    .product-categories .category-card {
        flex: 0 0 80%;
        max-width: 320px;
        margin-bottom: 0;
        scroll-snap-align: center;
        transform: scale(0.9); 
        opacity: 0.7;
        transition: transform 0.4s ease, opacity 0.4s ease; 
    }

    .service-categories .category-card.is-active-card {
        transform: scale(1);   
        opacity: 1;            
    }
    .product-categories .category-card.is-active-card {
        transform: scale(1);   
        opacity: 1;            
    }


    .services-carousel-btn {
    .products-carousel-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-60%);
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        cursor: pointer;
    }
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-60%);
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        cursor: pointer;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: background-color 0.3s ease;
    }

    .services-carousel-btn:hover {
        background-color: #4CAF50;
    }

    .services-prev-btn {
        left: 5px;
    }

    .services-next-btn {
        right: 5px;
    }
}
/* ------------------------------------------------------------------ */
/*  7. Difference Section - Homepage Specific (`index.html`)         */
/* ------------------------------------------------------------------ */
.difference-section {
    background-color: #121212;
    padding: 90px 0;
}

.difference-container {
    /* RENAMED from .difference-grid */
    margin-top: 20px;
    max-width: 1200px;
    /* Increased max-width to match container */
    margin-left: auto;
    margin-right: auto;
    display: grid;
    /* **MODIFIED: Re-introduced Grid Layout** */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* **Responsive Columns** */
    gap: 35px;
    /* **Gap between boxes - MATCHING service-categories** */
    /* REMOVED Flexbox styles:
    display: flex;
    flex-direction: column;
    gap: 20px;
    */
}

.difference-box {
    /* RENAMED from .difference-item */
    background-color: #252525;
    border-radius: 10px;
    padding: 30px;
    margin: 0;
    /* Keep margin reset */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.difference-box:hover {
    /* RENAMED from .difference-item:hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.difference-box h3 {
    /* RENAMED from .difference-item h3 */
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.difference-box p {
    /* RENAMED from .difference-item p */
    color: #ccc;
    font-size: 1.02em;
}

/* ================================================================== */
/*  8. Testimonials Section (Universal Carousel)                      */
/* ================================================================== */

/* --- Main Section Containers --- */
.testimonials-section {
    background-color: #181818;
}
   /* --- Centering The Button --- */
.testimonials-section .container {
    text-align: center;
}
.carousel-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}
.testimonial-carousel-container {
    width: 100%;
    position: relative;
    min-height: 200px;
}


/* --- Horizontal Scrolling Grid (The Carousel Track) --- */
.testimonial-grid {
    /* Layout & Behavior */
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    
    /* Appearance & UX */
    cursor: grab;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.testimonial-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}
.testimonial-grid:active {
    cursor: grabbing;
}


/* --- Individual Testimonial Cards --- */
.testimonial-card {
    /* Layout & Sizing (Desktop First) */
    flex: 0 0 calc(33.333% - 21px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;

    /* Appearance & Animation */
    background-color: #252525;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    
    /* Desktop carousel effect */
    transform: scale(0.9);
    opacity: 0.8;
}

/* Desktop active card styling */
.testimonial-card.is-active-card {
    transform: scale(1);
    opacity: 1;
}


/* --- Card Content --- */
.testimonial-card h3.testimonial-title {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 12px;
}
.star-rating {
    font-size: 1.3em;
    margin-bottom: 15px;
}
.star {
    color: #444;
}
.star.filled {
    color: #4CAF50;
}
.testimonial-text-wrapper {
    position: relative;
    max-height: 4.8em; /* Roughly 3 lines */
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.testimonial-text-wrapper.expanded {
    max-height: 300px; /* Animate to a large height */
}
.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}
.read-more-btn {
    align-self: flex-start;
    background: none;
    border: none;
    padding: 8px 0 0;
    margin-top: 8px;
    cursor: pointer;
    color: #4CAF50;
    font-size: 0.9em;
    font-weight: bold;
}
.read-more-btn:hover {
    text-decoration: underline;
}
.testimonial-author {
    padding-top: 15px;
    margin-top: auto; /* Pushes author to the bottom */
    font-weight: bold;
    color: #fff;
}


/* --- Empty State --- */
.empty-state-message {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-style: italic;
    color: #ccc;
}


/* --- Carousel Navigation Buttons --- */
.carousel-btn {
    /* Positioning */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    
    /* Appearance */
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #fff;
    cursor: pointer;
    
    /* Flex Center Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Hover effects */
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}





/* --- "Add a Review" CTA Button (Improved Styling with Icon) --- */
.add-review-button {
    /* Layout & Sizing - Changed to inline-flex for icon alignment */
    display: inline-flex;
    align-items: center; /* Vertically aligns the icon with the text */
    gap: 10px; /* Creates clean space between the icon and text */
    margin-top: 40px;
    padding: 14px 28px; /* Adjusted padding slightly for the icon */

    /* Typography */
    color: #4CAF50;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Core Appearance */
    background-color: transparent;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    cursor: pointer;

    /* Depth & Animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.add-review-button:hover,
.add-review-button:focus {
    background-color: #4CAF50;
    color: #fff;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 20px rgba(76, 175, 80, 0.25);
    outline: none;
}

.add-review-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.2);
}

/* Optional: Slightly adjust the icon size if needed */
.add-review-button .material-icons {
    font-size: 22px; /* Makes the icon proportional to the uppercase text */
}
/* Testimonials mobile setup */
@media (max-width: 850px) {
    /* On mobile, cards take up most of the view and snap to the center. */
    .testimonial-card {
        flex: 0 0 80% !important;
        min-width: unset !important;
        scroll-snap-align: center; /* Important for mobile snapping */

        /* Mobile scaling animation - smaller unfocused cards */
        transform: scale(0.85) !important;
        opacity: 0.6 !important;
    }
    
    /* The active state for the centered card on mobile */
    .testimonial-card.is-active-card {
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    /* Move buttons inside the viewport for mobile */
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}
/* ------------------------------------------------------------------ */
/*  9. Questions Section - Homepage Specific (`index.html`)           */
/* ------------------------------------------------------------------ */
.questions-section {
    background-color: #121212;
    text-align: center;
    color: #f0f0f0;
}

.questions-section h2,
.questions-section .section-description {
    color: #f0f0f0;
}


.questions-section .cta-button {
    background-color: #4CAF50;
    color: #fff;
}

.questions-section .cta-button:hover {
    background-color: #388E3C;
}

/* ------------------------------------------------------------------ */
/*  10. Footer (Global)                                               */
/* ------------------------------------------------------------------ */

footer {
    background-color: #252525;
    padding: 35px 0;
    text-align: center;
    color: #ccc;
    font-size: 0.95em;
}

footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 12px;
}

footer a:hover {
    text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/*  11. JavaScript Enhancements (Illustrative CSS - Animations)       */
/* ------------------------------------------------------------------ */

/* Example: Fade-in animation for sections */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Example: Hover effect for category cards (already in .category-card:hover) */

/* ------------------------------------------------------------------ */
/*  12. Hamburger Menu Styles (Global)                                */
/* ------------------------------------------------------------------ */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 1000;
}

.hamburger-menu:hover,
.hamburger-menu:focus {
    opacity: 0.8;
}


.hamburger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: #ccc;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center center;
}

/* Hamburger Icon Animation when Menu is Active - ARROW ANIMATION REFINED */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


.hamburger-menu:hover .bar,
.hamburger-menu:focus .bar {
    background-color: #4CAF50;
}

/* ------------------------------------------------------------------ */
/*  13. Navigation Links Wrapper - Island Menu Styles (Global)         */
/* ------------------------------------------------------------------ */
.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links nav ul {
    margin: 0;
    padding: 0;
}


/* --- Responsive Design (Existing Media Query for Smaller Screens - MODIFIED for Hamburger & Island Menu) --- */
@media (max-width: 850px) {
    .container {
        padding: 15px;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        position: relative;
        padding: 16px 15px;
        min-height: 60px;
    }

    /* **Hamburger Menu Display** */
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        height: 18px;
        width: 26px;
    }

    .hamburger-menu .bar {
        height: 3px;
        width: 100%;
        background-color: #ccc;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
    }

    .hamburger-menu .bar:nth-child(1) {
        top: 0;
    }

    .hamburger-menu .bar:nth-child(2) {
        top: 7.5px;
    }

    .hamburger-menu .bar:nth-child(3) {
        top: 15px;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg);
        top: 7.5px;
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg);
        top: 7.5px;
    }

    /* **ISLAND MENU Styles - Navigation Links Wrapper** */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 280px;
        text-align: left;
        background-color: #181818;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 80px;
        right: 20px;
        z-index: 99;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .nav-links nav ul li {
        margin: 0;
        width: 100%;
    }

    .nav-links nav ul li a {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #ccc;
        font-size: 1.1em;
    }

    .nav-links nav ul li a:hover {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .nav-links nav ul li a.current {
        background-color: rgba(76, 175, 80, 0.2);
        color: #4CAF50;
        font-weight: 600;
    }

    .nav-links nav ul li a.client-area-btn {
        margin-top: 0;
        text-align: center;
        border: 2px solid #4CAF50;
        padding: 12px 20px;
    }

    .nav-links nav ul li a.client-area-btn:hover {
        background-color: #4CAF50;
        color: #fff;
    }

    .hero-section {
        padding: 40px 0;
        min-height: auto;
        max-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0 15px;
        opacity: 1;
        visibility: visible;
    }

    .hero-section h1 {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .hero-section p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    section {
        padding: 60px 0;
        opacity: 1;
        transform: none;
    }

    section h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 1em;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .service-categories {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .product-categories {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .difference-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    #particles-js {
        display: block;
        opacity: 0.5;
    }

    .counter {
        font-size: 2em;
    }
    
    /* About page mobile styles */
    .our-story-section .story-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ------------------------------------------------------------------ */
/*  15. Difference Section - Homepage Specific (`index.html`)         */
/* ------------------------------------------------------------------ */
.difference-section {
    background-color: #121212;
    padding: 90px 0;
}

.difference-container {
    /* RENAMED from .difference-grid */
    margin-top: 20px;
    max-width: 1200px;
    /* Increased max-width to match container */
    margin-left: auto;
    margin-right: auto;
    display: grid;
    /* **MODIFIED: Re-introduced Grid Layout** */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* **Responsive Columns** */
    gap: 35px;
    /* **Gap between boxes - MATCHING service-categories** */
    /* REMOVED Flexbox styles:
    display: flex;
    flex-direction: column;
    gap: 20px;
    */
}

.difference-box {
    /* RENAMED from .difference-item */
    background-color: #252525;
    border-radius: 10px;
    padding: 30px;
    margin: 0;
    /* Keep margin reset */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.difference-box:hover {
    /* RENAMED from .difference-item:hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.difference-box h3 {
    /* RENAMED from .difference-item h3 */
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.difference-box p {
    /* RENAMED from .difference-item p */
    color: #ccc;
    font-size: 1.02em;
}

/* ------------------------------------------------------------------ */
/*  16. Products Page - Specific Styles (`products.html`) - SIMPLIFIED */
/* ------------------------------------------------------------------ */
#products-list.services-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

#products-list h2 {
    text-align: center;
    margin-bottom: 20px;
}

.product-category {
    margin-bottom: 60px;
}

.product-category h3 {
    font-size: 2.1em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: default;
    justify-content: center; /* CHANGED from flex-start to center */

}

.category-icon {
    max-width: 40px;
    max-height: 40px;
    border-radius: 6px;
    margin-right: 15px;
    vertical-align: middle;
}

.product-category .category-description {
    font-style: italic;
    font-size: 15px;
    color: #aaa;
    margin-bottom: 30px;
    text-align: center; /* ADD this line */
    max-width: 700px;       /* Adjust this value as needed */
    margin-left: auto;
    margin-right: auto;

}

.product-tier-card {
    background-color: #252525;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    padding: 25px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Specific background sizing for Discord tier cards */
.product-tier-card.discord-tier {
    background-size: cover;
    background-position: center;
}

.product-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Specific game tier styles */
.product-tier-card.minecraft-tier::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.product-tier-card.rust-tier::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.product-tier-card.fivem-tier::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.product-tier-card.beammp-tier::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.product-tier-card.discord-tier::before {
    background-color: rgba(0, 0, 0, 0.4);
}

.product-tier-card.cs2-tier::before {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Tier header styling for all games */
.product-tier-card .tier-header {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.product-tier-card .tier-header h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #fff;
}

/* Price styling for all games */
.product-tier-card .price {
    position: relative;
    z-index: 1;
    font-size: 1.8em;
    font-weight: bold;
    color: #4CAF50;
    margin: 15px 0;
}

.product-tier-card .period {
    font-size: 0.5em;
    color: #ccc;
}

/* Specs list styling for all games */
.product-tier-card .tier-specs {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.product-tier-card .tier-specs li {
    margin: 8px 0;
    color: #fff;
}

/* Tier description styling */
.product-tier-card .tier-description {
    position: relative;
    z-index: 1;
    color: #fff;
    font-style: italic;
    font-size: 0.9em;
    margin: 15px 0;
    line-height: 1.5;
}

/* Button styling for all games */
.product-tier-card .learn-more {
    position: relative;
    z-index: 1;
    background-color: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 15px;
}

.product-tier-card .learn-more:hover {
    background-color: #4CAF50;
    color: #fff;
}

/* ------------------------------------------------------------------ */
/*  17. Products Page - Spacing Adjustments (`products.html`)        */
/* ------------------------------------------------------------------ */
/* Spacing adjustments for product tiers to reduce cramped feeling */
.product-category h3 {
    margin-bottom: 25px;
}

.category-card,
.product-tier-card {
    margin-bottom: 20px;
}

.category-card p,
.product-tier-card ul,
.product-tier-card h4 {
    line-height: 1.7;
}

/* ------------------------------------------------------------------ */
/*  18. About Us Page Specific Styles (`about-us.html`)              */
/* ------------------------------------------------------------------ */
/* **NEW: About Hero Section - Specific Styling** */
.about-hero-section {
    padding: 150px 0;
    /* Slightly more padding for About Hero */
}

/* **NEW: General Content Section Styling (for Our Story, Mission, Team)** */
.content-section {
    background-color: #181818;
    /* Consistent background */
}

/* **NEW: Our Story Section Specific Styling** */
.our-story-section {
    background-color: #121212;
}

.our-story-section .story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.our-story-section .story-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.our-story-section .story-text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.our-story-section ul {
    list-style: disc;
    padding-left: 35px;
    color: #ccc;
    margin-top: 20px;
    margin-bottom: 25px;
}

.our-story-section ul li {
    margin-bottom: 10px;
}

/* **NEW: Story Highlights Styling** */
.our-story-section .story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive grid for highlights */
    gap: 30px;
    margin-top: 30px;
}

.our-story-section .story-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: #252525;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-story-section .story-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.our-story-section .story-highlight-item i {
    /* Icon size */
    font-size: 2.5em;
    /* Icon color */
    color: #4CAF50;
    /* Green icon color */
    margin-bottom: 15px;
}

.our-story-section .story-highlight-item p {
    color: #eee;
    /* Lighter text for highlights */
    font-size: 1.05em;
    line-height: 1.5;
}

.our-story-section .story-highlight-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

/* **NEW: Features Grid Styling** */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #252525;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.feature-card .feature-icon {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05em;
}

/* **NEW: Services Grid Styling for Products Page** */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #252525;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #E5B77B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

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

.service-card .service-icon {
    margin-bottom: 20px;
}

.service-card .service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05em;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-cta:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Service Price Styling */
.service-price {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 20px;
    font-weight: 500;
}

.price-amount {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1em;
}

/* Services Overview Section */
.services-overview {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #252525;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-overview h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.services-overview p {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.service-preview-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.service-preview-item span {
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
}

.browse-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.browse-all-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

/* Custom Quote Section */
.custom-quote-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #252525;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-quote-section h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.custom-quote-section p {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-quote-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E5B77B, #d4a76a);
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.custom-quote-btn:hover {
    background: linear-gradient(135deg, #d4a76a, #E5B77B);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(229, 183, 123, 0.3);
}

/* **NEW: Our Mission & Values Section Styling** */
.our-mission-section .mission-values-content {
    display: flex;
    flex-direction: column;
    /* Stack mission and values vertically on smaller screens */
    align-items: center;
    gap: 40px;
    /* Spacing between mission and values blocks */
}

/* Hero Buttons Styling */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #E5B77B, #d4a76a);
    color: #1a1a1a;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #d4a76a, #E5B77B);
    box-shadow: 0 6px 15px rgba(229, 183, 123, 0.3);
}

/* Quick Stats Section */
.quick-stats-section {
    background-color: #252525;
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.quick-stat-item {
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
}

.stat-label {
    color: #ccc;
    font-size: 1em;
    font-weight: 500;
}

/* Game Showcase Section */
.game-showcase-section {
    background-color: #181818;
    padding: 80px 0;
}

.game-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-showcase-card {
    position: relative;
    background-color: #252525;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}

.game-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Game Banner Styling */
.game-banner {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E5B77B, #D4A574);
    color: #121212;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.minecraft-banner {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.rust-banner {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
}

.fivem-banner {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.vps-banner {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

.game-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.minecraft-bg {
    background-image: linear-gradient(135deg, #4CAF50, #45a049);
}

.rust-bg {
    background-image: linear-gradient(135deg, #FF6B35, #F7931E);
}

.fivem-bg {
    background-image: linear-gradient(135deg, #5865F2, #4752C4);
}

.vps-bg {
    background-image: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.game-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
}

.game-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
}

.game-content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.game-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.game-features span {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.game-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.game-cta:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Banner Image Styling */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 769px) {

    /* Larger screens */
    .our-mission-section .mission-values-content {
        flex-direction: row;
        /* Display mission and values side-by-side on larger screens */
        justify-content: space-around;
        text-align: left;
        /* Left align text in blocks on larger screens */
    }
    
    .our-story-section .story-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .our-story-section .story-text {
        text-align: left;
        margin: 0;
    }
}


.our-mission-section .mission-statement,
.our-mission-section .core-values {
    max-width: 550px;
    /* Limit width of each block */
    padding: 30px;
    /* Add padding to mission/values blocks */
    border-radius: 8px;
}

.our-mission-section .mission-statement {
    background-color: #252525;
    /* Background for Mission block */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.our-mission-section .core-values {
    background-color: #252525;
    /* Background for Values block */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.our-mission-section h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    /* Center align titles within blocks */
}

.our-mission-section p,
.our-mission-section ul {
    text-align: center;
    /* Center align text and lists within blocks */
}

.our-mission-section .mission-statement i {
    /* Icon for Mission Statement */
    font-size: 3em;
    color: #4CAF50;
    display: block;
    margin-bottom: 20px;
}


.our-mission-section .core-values ul.core-values-list {
    /* Styling for Core Values List */
    list-style: none;
    /* Remove default list bullets */
    padding-left: 0;
    /* Reset padding */
    margin-top: 20px;
}

.our-mission-section .core-values ul.core-values-list li {
    margin-bottom: 15px;
    display: flex;
    /* Use flexbox for icon and text alignment */
    align-items: center;
    /* Vertically align icon and text */
    gap: 15px;
    /* Spacing between icon and text */
    color: #eee;
    /* Lighter text color for values */
    font-size: 1.05em;
}

.our-mission-section .core-values ul.core-values-list li i {
    /* Styling for icons in Core Values List */
    font-size: 1.5em;
    /* Icon size in list */
    color: #4CAF50;
    /* Green icon color */
    width: 25px;
    /* Fixed width for icons to align text */
    text-align: center;
    /* Center icons in their width */
}


.our-mission-section ul {
    list-style: disc;
    padding-left: 35px;
    color: #ccc;
    margin-top: 20px;
}

.our-mission-section ul li {
    margin-bottom: 10px;
}

/* ------------------------------------------------------------------ */
/*  19. Media Query for Larger Screens (Global)                        */
/* ------------------------------------------------------------------ */
@media (min-width: 1201px) {

    .container {
        max-width: 1600px;
    }

    .hero-section {
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 3.3em;
    }

    .hero-subtitle {
        font-size: 1.5em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2.4em;
    }

    .section-description {
        font-size: 1.1em;
    }
}

/* ------------------------------------------------------------------ */
/*  19. Contact Page Specific Styles (`contact.html`)                */
/* ------------------------------------------------------------------ */

/* Contact Flex Container */
.contact-flex-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* Contact Form Styles */
.contact-form-container {
    flex: 1;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #f0f0f0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #252525;
    border: 1px solid #333;
    border-radius: 5px;
    color: #f0f0f0;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #388E3C;
}

/* Contact Info Styles */
.contact-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #4CAF50;
    font-size: 1.3em;
}

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

.contact-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4CAF50;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 8px 12px;
    background-color: #252525;
    color: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    background-color: #4CAF50;
    color: white;
}

/* FAQ Section Styles */
.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item h3 {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #4CAF50;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-item.active p {
    max-height: 500px; /* Arbitrary large value */
    opacity: 1;
    margin-top: 15px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 900px) {
    .contact-flex-container {
        flex-direction: column;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Payment Methods Section Styles */
.payment-methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.payment-icon {
    background-color: #252525;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.payment-icon .material-icons {
    font-size: 36px;
    color: #4CAF50;
}

.payment-method-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #fff;
}

.payment-method-card p {
    color: #ccc;
    font-size: 1em;
    line-height: 1.5;
}

/* Responsive Styles for Payment Methods */
@media (max-width: 600px) {
    .payment-methods-container {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------------ */
/*  20. Legal Pages Styles (ToS and Privacy Policy)                   */
/* ------------------------------------------------------------------ */

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.legal-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    color: #4CAF50;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ccc;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul, .legal-section ol {
    margin: 15px 0;
    padding-left: 25px;
    color: #ccc;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section strong {
    color: #fff;
}
.legal-content ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.legal-content li {
    margin-bottom: 0.75rem;
    position: relative;
}
.contact-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
.contact-button:hover {
    background-color: var(--accent-color-darker);
}
.legal-link {
    color: #28a745; /* A nice green color */
    text-decoration: none;
}
.legal-link:hover {
    text-decoration: underline;
}
/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px 20px;
    }
    
    .legal-section h3 {
        font-size: 1.2em;
    }
}

/* Client Area Button in Navigation */
.client-area-btn {
    background-color: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    line-height: 1.2;
    margin: 0;
}

.client-area-btn:hover {
    background-color: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    animation: none;
}

/* Pulse animation for client area button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Slide in animation for dropdown items */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom animation for hamburger menu client area button */
.nav-links nav ul li a.client-area-btn {
    margin-top: 0;
    text-align: center;
    border: 2px solid #4CAF50;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    transition: all 0.3s ease, transform 0.3s ease;
}

.nav-links nav ul li a.client-area-btn:hover {
    background-color: #4CAF50;
    color: #fff;
    animation: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------------ */
/*  21. Partners Page Styles (`partners.html`)                        */
/* ------------------------------------------------------------------ */

/* Partners Grid and Cards */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
      max-width: 500px;   /* Limit the maximum width - adjust this value as needed */
    margin-left: auto;  /* Center the card within its grid cell if */
    margin-right: auto; /* max-width makes it smaller than the cell */
}

.partner-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.partner-card-image {
    display: flex;          /* Allows margin auto for centering */
    margin: 0 auto 25px;     /* Centers horizontally, adds 25px margin below */
    max-width: 250px;        /* Set a maximum width (adjust as needed) */
    height: auto;            /* Maintain aspect ratio automatically */
}

.partner-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
}

.partner-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Alternating background for partner sections */
.partners-alt-bg {
    background-color: #121212;
}

/* Affiliate Program Section */
.affiliate-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.affiliate-info {
    flex: 2;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.affiliate-cta {
    flex: 1;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.affiliate-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.affiliate-benefits li {
    margin-bottom: 15px;
    color: #ccc;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.affiliate-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.affiliate-benefits li strong {
    color: #fff;
    font-weight: bold;
}

.affiliate-cta h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
}

.affiliate-cta p {
    color: #ccc;
    margin-bottom: 25px;
}

/* Partner Types Section */
.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-type-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.partner-type-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #4CAF50;
}

.partner-type-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive styles for Partners page */
@media (max-width: 900px) {
    .affiliate-content {
        flex-direction: column;
    }
    
    .partners-grid,
    .partner-types-grid {
        grid-template-columns: 1fr;
    }
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Partners Page Coming Soon Styles */
.coming-soon-container {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.coming-soon-message {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.coming-soon-message .mascot-image {
    max-width: 150px;
    margin-bottom: 25px;
}

.coming-soon-message h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.coming-soon-message p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .coming-soon-message {
        padding: 30px 20px;
    }
    
    .coming-soon-message .mascot-image {
        max-width: 120px;
    }
    
    .coming-soon-message h3 {
        font-size: 20px;
    }
}

/* Discord Support Section Styles */
.discord-support-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.discord-card {
    flex: 1;
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.discord-logo {
    max-width: 120px;
    margin-bottom: 25px;
}

.discord-card h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #fff;
}

.discord-card p {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.discord-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.discord-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #eee;
    font-size: 1.05em;
}

.feature-icon {
    font-size: 1.3em;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.discord-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #5865F2; /* Discord blue color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.discord-button:hover {
    background-color: #4752C4; /* Darker Discord blue */
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .discord-support-container {
        flex-direction: column;
    }
    
    .discord-card, 
    .contact-info-container {
        width: 100%;
    }
}

/* Server Status Indicators */
.server-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.server-status::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-online {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status-online::before {
    background-color: #4CAF50;
}

.status-offline {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.status-offline::before {
    background-color: #F44336;
}

/* Animated Countup Styles */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number-container {
    margin-bottom: 15px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 48px;
    font-weight: bold;
    color: #4CAF50;
}

.counter-label {
    font-size: 18px;
    color: #a0a0a0;
    margin-top: 10px;
}

/* Adding percentage symbol for percentage stats */
.counter.percentage::after {
    content: '%';
    font-size: 0.8em;
    margin-left: 2px;
}

/* Page load animation */
body:not(.loaded) {
    overflow: hidden;
}

body.loaded .hero-section {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Make sections fade in when they become visible */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .counter {
        font-size: 36px;
    }
}

/* Add to Cart button styling */
.add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 25px;
    background-color: #4CAF50;
    border: 2px solid #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05em;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.add-to-cart:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
}

.add-to-cart:active {
    transform: translateY(0);
}

.add-to-cart .cart-icon {
    font-size: 1.1em;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Button and Arrow Container */
.button-arrow-container {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

/* Dropdown Arrow Styles */
.dropdown-arrow {
    display: none; /* Hidden by default on desktop */
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(76, 175, 80, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    flex-shrink: 0;
}

.dropdown-arrow:hover {
    background-color: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
    transform: scale(1.1);
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg) scale(1.1);
    background-color: rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
}

/* Mobile Dropdown Arrow */
@media (max-width: 850px) {
    .button-arrow-container {
        gap: 6px;
    }
    
    .dropdown-arrow {
        display: flex !important; /* Force display on mobile only */
        font-size: 18px;
        width: 24px;
        height: 24px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-arrow:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg) scale(1.05);
        box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #252525;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

/* Invisible bridge to maintain hover state through the gap (desktop only) */
@media (min-width: 851px) {
    .dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 12px;
        background: transparent;
        z-index: 1000;
    }
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #252525;
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 4px 0;
    font-size: 0.95em;
    transform: translateX(-10px);
    opacity: 0;
}

.dropdown-content a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    transform: translateX(4px);
}

/* Desktop hover functionality */
@media (min-width: 851px) {
    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        display: block;
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }
    
    /* Staggered animation for dropdown items */
    .dropdown:hover .dropdown-content a,
    .dropdown-content:hover a {
        animation: slideInRight 0.2s ease-out forwards;
    }
    
    .dropdown:hover .dropdown-content a:nth-child(2),
    .dropdown-content:hover a:nth-child(2) { animation-delay: 0.05s; }
    .dropdown:hover .dropdown-content a:nth-child(3),
    .dropdown-content:hover a:nth-child(3) { animation-delay: 0.1s; }
    .dropdown:hover .dropdown-content a:nth-child(4),
    .dropdown-content:hover a:nth-child(4) { animation-delay: 0.15s; }
    .dropdown:hover .dropdown-content a:nth-child(5),
    .dropdown-content:hover a:nth-child(5) { animation-delay: 0.2s; }
    .dropdown:hover .dropdown-content a:nth-child(6),
    .dropdown-content:hover a:nth-child(6) { animation-delay: 0.25s; }
    .dropdown:hover .dropdown-content a:nth-child(7),
    .dropdown-content:hover a:nth-child(7) { animation-delay: 0.3s; }
    .dropdown:hover .dropdown-content a:nth-child(8),
    .dropdown-content:hover a:nth-child(8) { animation-delay: 0.35s; }
}

/* Mobile active state */
.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Mobile Dropdown Styles */
@media (max-width: 850px) {
    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #252525;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        margin-top: 8px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        opacity: 1;
        transform: none;
        display: none;
        width: 100%;
        z-index: 1001;
    }
    
    .dropdown-content a {
        opacity: 1;
        transform: translateX(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 12px 16px;
        margin: 4px 0;
        border-radius: 8px;
        font-size: 0.95em;
    }

    .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        transform: none;
    }

    .dropdown-content a:hover {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }
}

/* Quick Links Section */
.quick-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-link-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    text-decoration: none;
    color: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.quick-link-card .material-icons {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.quick-link-card p {
    color: #ccc;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .quick-links-container {
        grid-template-columns: 1fr;
    }
}
