@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Montserrat:wght@500;700;800&family=Orbitron:wght@400;700&display=swap');

/* Updated Color Palette */
:root {
    --primary-golden-olive: #FFD300; /* Main brand color - Cyber Yellow */
    --dark-base-charcoal-black: #0A0A0A; /* Background, cards - Jet Black */
    --accent-burnt-umber: #FFD300; /* Buttons, highlights - Cyber Yellow */
    --accent-muted-olive-green: #C4A000; /* Hover states, secondary buttons - Gold Fusion */
    --highlight-antique-ivory: #B0B0B0; /* Headings, text highlights - Silver Grey */
    --text-pale-ash-gray: #B0B0B0; /* Body text - Silver Grey */
    --danger-deep-crimson: #8a1f1f; /* Alerts, errors (retained from original as no direct mapping) */
    --link-hover-warm-bronze: #C4A000; /* Links, minor accents - Gold Fusion */

    /* Mapping new palette to existing variable names for easier integration */
    --primary-bg: var(--dark-base-charcoal-black);
    --secondary-bg: #2A2A2A; /* Gunmetal - Navbars, footers */
    --card-bg: #1C1C1C; /* Charcoal - Cards, content backgrounds */
    --text-color: var(--text-pale-ash-gray);
    --accent-color: var(--primary-golden-olive);
    --hover-color: var(--accent-muted-olive-green);
    --border-color: #444; /* Subtle border, adjusted (retained from original) */
    --shadow-color: rgba(0, 0, 0, 0.8); /* Retained from original */
    --error-color: var(--danger-deep-crimson);
    --success-color: #69f0ae; /* Keeping a vibrant green for success (retained from original) */
    --gradient-start: rgba(0,0,0,0.7); /* Retained from original */
    --gradient-end: rgba(0,0,0,0); /* Retained from original */
    --button-gradient-start: var(--accent-burnt-umber);
    --button-gradient-end: #C4A000; /* Slightly darker shade for button gradient - Gold Fusion */
    --input-bg: #1C1C1C; /* Adjusted input background - Charcoal */
    --input-border: #666666; /* Adjusted input border (retained from original) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%; /* Ensure full width */
    position: relative; /* Added for z-index context */
    z-index: 1; /* Ensures body content is above particles-js */
}

/* ---- particles.js container ---- */
#particles-js {
    position: fixed; /* Changed to fixed to cover the entire viewport */
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg); /* Use your primary background color */
    background-image: url(""); /* No background image for particles */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1; /* Place it behind other content */
    top: 0;
    left: 0;
}

a {
    color: var(--link-hover-warm-bronze); /* Use new link/hover color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

/* Navbar - Liquid Glass Effect */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(42, 42, 42, 0.7); /* Semi-transparent background - Gunmetal with opacity */
    backdrop-filter: blur(10px); /* Liquid glass blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    padding: 15px 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6); /* Stronger shadow */
    position: fixed; /* Keep it still when scrolling */
    top: 0;
    width: 100%; /* Full width */
    z-index: 1000;
    border-bottom: 1px solid rgba(68, 68, 68, 0.5); /* Subtle border */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* Increased max-width for full website */
    margin: 0 auto;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
    border-radius: 5px;
}

.navbar .logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    text-shadow: 0 0 8px rgba(255, 211, 0, 0.7); /* Glow effect - Cyber Yellow */
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    color: var(--text-pale-ash-gray); /* Use pale ash gray for links */
    font-weight: 500;
    font-size: 1.1rem;
    padding: 5px 0;
    position: relative;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-golden-olive); /* Use primary golden olive */
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-pale-ash-gray);
    position: relative;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.cart-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#cart-count {
    background-color: var(--danger-deep-crimson); /* Use danger deep crimson */
    color: white;
    font-size: 0.8rem;
    border-radius: 50%;
    padding: 2px 7px;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Mobile Menu Styles */
.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--text-pale-ash-gray);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Carousel - New Cinematic Styles */
.hero-carousel {
    width: 100%;
    height: 80vh; /* Use viewport height for better responsiveness */
    max-height: 800px; /* Maximum height for large screens */
    min-height: 400px; /* Minimum height for small screens */
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 100px; /* Offset for fixed navbar */
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to start for desktop layout */
    color: white;
    text-align: left;
    overflow: hidden; /* Ensure content stays within slide */
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) blur(3px); /* Darken and blur background */
    transform: scale(1.05); /* Slightly scale for zoom effect */
    transition: transform 1s ease-in-out, filter 1s ease-in-out;
}

.swiper-slide-active .slide-background {
    filter: brightness(0.8) blur(0px); /* Less blur and brighter on active */
    transform: scale(1); /* Zoom out to original size */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 80%); /* Dark gradient on left */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px; /* Space between cover and text */
    max-width: 1200px;
    width: 90%;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    padding-left: 5%; /* Initial padding from left */
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.game-cover {
    flex-shrink: 0; /* Prevent cover from shrinking */
    width: 250px; /* Fixed width for desktop cover */
    height: 350px; /* Fixed height for desktop cover */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
}

.swiper-slide-active .game-cover {
    transform: scale(1);
    opacity: 1;
}

.game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-content {
    flex-grow: 1;
    max-width: 600px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.text-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size */
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--primary-golden-olive);
    text-align: left;
    line-height: 1.1;
    color: var(--highlight-antique-ivory);
}

.text-content p {
    font-size: clamp(1rem, 1.8vw, 1.3rem); /* Responsive font size */
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    color: var(--text-pale-ash-gray);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-golden-olive) !important;
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
    --swiper-navigation-size: 35px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 10; /* Ensure buttons are above preview */
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.1);
    color: var(--hover-color) !important;
    background-color: rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-golden-olive) !important;
    transform: scale(1.2);
}

/* New: Styles for Upcoming Games Preview */
.swiper-next-games-preview {
    position: absolute;
    right: 5%; /* Position from the right edge */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between game items */
    z-index: 5; /* Below main content, above background */
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    max-height: 90%; /* Limit height */
    overflow-y: auto; /* Enable scrolling if too many items */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

/* Hide scrollbar for Chrome, Safari, Opera */
.swiper-next-games-preview::-webkit-scrollbar {
    display: none;
}

.next-game-item {
    width: 120px; /* Fixed width for preview covers */
    height: 170px; /* Fixed height for preview covers (approx 1:1.4 aspect) */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0.7; /* Slightly faded */
    border: 2px solid transparent; /* Border for hover effect */
}

.next-game-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px var(--primary-golden-olive); /* Glow on hover */
    opacity: 1;
    border-color: var(--primary-golden-olive);
}

.next-game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btncl {
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #0A0A0A; /* Text on Cyber Yellow button should be Jet Black */
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-align: center;
}

/* Responsive Adjustments for Carousel with Next Games Preview */
@media (min-width: 1025px) {
    .slide-content {
        padding-left: 10%; /* More padding for desktop to make room for preview */
    }
}

@media (max-width: 1024px) {
    .hero-carousel {
        height: 65vh;
        min-height: 380px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
        padding-left: 20px; /* Reset padding for smaller screens */
        align-items: center; /* Center content when stacked */
    }

    .game-cover {
        width: 200px;
        height: 280px;
    }

    .text-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 2.0rem); /* smaller font */
    line-height: 1;                     /* tighter line spacing */
    text-align: center;
    }


    .text-content p {
        font-size: clamp(0.9rem, 1.6vw, 1.2rem);
    }

    .swiper-button-next, .swiper-button-prev {
        width: 50px;
        height: 50px;
        font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
    }

    .swiper-next-games-preview {
        display: none; /* Hide on tablets and smaller */
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 60vh;
        min-height: 350px;
        margin-top: 80px; /* Adjust for mobile navbar height */
    }

    .slide-content {
        padding: 15px;
        width: 95%;
    }

    .game-cover {
        width: 180px;
        height: 250px;
    }

    .text-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 2.0rem); /* smaller font */
    line-height: 1;                     /* tighter line spacing */
    text-align: center;
    }


    .text-content p {
        display: none;
        font-size: clamp(0.85rem, 1.5vw, 1.1rem);
        margin-bottom: 20px;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important; /* Hide arrows on small screens */
    }

    .slide-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0) 50%); /* Gradient from bottom for mobile */
    }

    .btncl {
    padding: 8px 16px; /* smaller vertical and horizontal padding */
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #0A0A0A;
    border: none;
    border-radius: 6px; /* slightly tighter corners */
    font-size: 0.9rem;  /* smaller text */
    font-weight: 600;   /* slightly lighter, optional */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* reduced spacing */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-align: center;
}

}

@media (max-width: 480px) {
    .hero-carousel {
        height: 55vh;
        min-height: 300px;
    }

    .slide-content {
        gap: 15px;
        padding: 10px;
    }

    .game-cover {
        width: 150px;
        height: 210px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    }

    .text-content h2 {
    font-size: clamp(1.3rem, 2.3vw, 1.7rem) !important;
    text-align: center;
    }

    .text-content p {
        display: none;
        font-size: clamp(0.8rem, 1.4vw, 1rem);
        margin-bottom: 15px;
    }

    .slide-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0) 60%);
    }

    .btncl {
    padding: 8px 16px; /* smaller vertical and horizontal padding */
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #0A0A0A;
    border: none;
    border-radius: 6px; /* slightly tighter corners */
    font-size: 0.9rem;  /* smaller text */
    font-weight: 600;   /* slightly lighter, optional */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* reduced spacing */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-align: center;
}

}


/* General Section Styling */
section {
    padding: 40px 20px;
    max-width: 1400px; /* Increased max-width for full website */
    margin: 0 auto 40px auto;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    position: relative; /* Added for z-index context */
    z-index: 10; /* Ensures sections are above particles */
}

section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--primary-golden-olive); /* Glow effect */
}

/* Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.filter-group label {
    font-weight: 700;
    margin-right: 10px;
    color: var(--text-pale-ash-gray);
}

.filter-group select,
.search-group input {
    padding: 10px 15px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--text-pale-ash-gray);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.search-group input:focus {
    border-color: var(--primary-golden-olive); /* Use primary golden olive */
}

.search-group {
    flex-grow: 1;
    max-width: 300px;
}

.search-group input {
    width: 100%;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--hover-color);
}

.game-card img {
    width: 100%;
    height: 350px; /* Standardized height for covers */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.game-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    text-align: center;
}

.game-card-content p {
    font-size: 0.9rem;
    color: var(--text-pale-ash-gray);
    margin-bottom: 5px;
}

.game-card-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--success-color);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #0A0A0A; /* Text on Cyber Yellow button should be Jet Black */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, var(--hover-color), var(--button-gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--hover-color); /* Changed shadow color */
}

/* Buttons */
.btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #0A0A0A; /* Text on Cyber Yellow button should be Jet Black */
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: linear-gradient(45deg, var(--hover-color), var(--button-gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--hover-color); /* Changed shadow color */
}

/* Footer */
footer {
    background-color: var(--secondary-bg);
    color: var(--text-pale-ash-gray);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px var(--shadow-color);
    position: relative; /* Added for z-index context */
    z-index: 10; /* Ensures footer is above particles */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Increased max-width for full website */
    margin: 0 auto;
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.admin-btn {
    background: none;
    border: 1px solid var(--primary-golden-olive); /* Use primary golden olive */
    color: var(--primary-golden-olive); /* Use primary golden olive */
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background-color: var(--primary-golden-olive); /* Use primary golden olive */
    color: var(--primary-bg);
    box-shadow: 0 0 10px var(--primary-golden-olive);
}

/* Modal (Cart and Edit Game) */
.modal {
    display: none; /* Add this line */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    align-items: center; /* For flex centering */
    justify-content: center; /* For flex centering */
    z-index: 10000; /* Ensure modal is on top */
}

.modal-content {
    background-color: var(--secondary-bg);
    margin: auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 20px var(--shadow-color);
    position: relative;
    animation: zoomIn 0.3s ease-out;
    max-height: 80vh; /* Decreased height for the popup */
    overflow-y: auto; /* Added scroll for content overflow */
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.close-button {
    color: var(--text-pale-ash-gray);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--danger-deep-crimson); /* Use danger deep crimson */
}

/* Cart Specific Styles */
#cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px;
    background-color: var(--input-bg);
}

.empty-cart-message {
    text-align: center;
    color: rgba(176, 176, 176, 0.7); /* Use Silver Grey with opacity */
    padding: 20px;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--input-border);
    gap: 15px; /* Added gap for better spacing */
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px; /* Slightly larger for better visual */
    height: 80px; /* Maintain 1:1 aspect ratio */
    object-fit: cover;
    border-radius: 8px; /* More rounded corners */
    margin-right: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

.cart-item-img {
    width: 80px; /* Slightly larger for better visual */
    height: 80px; /* Maintain 1:1 aspect ratio */
    object-fit: cover;
    border-radius: 8px; /* More rounded corners */
    margin-right: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-pale-ash-gray);
    margin-bottom: 5px;
}

.cart-item-details p {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-golden-olive); /* Highlight price */
    font-weight: 700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between quantity controls */
    margin-top: 10px;
}

.quantity-btn {
    background-color: var(--card-bg); /* Darker background */
    color: var(--primary-golden-olive); /* Accent color for text */
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 30px; /* Ensures consistent width */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.quantity-btn:hover {
    background-color: var(--hover-color); /* Lighter accent on hover */
    color: var(--primary-bg); /* Dark text on hover */
    border-color: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.quantity-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.quantity-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-pale-ash-gray);
    padding: 0 5px;
    min-width: 25px; /* Adjust as needed */
    text-align: center;
}

.remove-from-cart-btn {
    background-color: transparent; /* Transparent background */
    color: var(--danger-deep-crimson); /* Red 'x' */
    border: none;
    font-size: 1.8rem; /* Larger 'x' */
    line-height: 1; /* Adjust vertical alignment */
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 5px; /* Add some padding for easier clicking */
    border-radius: 50%; /* Make it circular */
    width: 40px; /* Fixed width for circular button */
    height: 40px; /* Fixed height for circular button */
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-from-cart-btn:hover {
    color: #ff0000; /* Darker red on hover */
    transform: scale(1.1);
    background-color: rgba(255, 0, 0, 0.1); /* Subtle red background on hover */
}

.cart-summary {
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
}

.cart-summary div:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 10px;
}

.coupon-section {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.coupon-section input {
    flex-grow: 1; /* Allow input to grow */
    max-width: 200px; /* Limit max width */
    padding: 10px 12px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--text-pale-ash-gray);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.coupon-section input:focus {
    border-color: var(--primary-golden-olive); /* Use primary golden olive */
}

.coupon-section button {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 5px;
    white-space: nowrap; /* Prevent button text from wrapping */
}

#coupon-message {
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: right;
    color: var(--danger-deep-crimson); /* Default to error color */
    width: 100%; /* Ensure it takes full width below coupon input */
    padding-right: 5px; /* Small padding to align with totals */
}

.customer-info-form {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.customer-info-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    margin-bottom: 15px;
    text-align: center;
}

.customer-info-form p {
    font-size: 0.9rem;
    color: rgba(176, 176, 176, 0.7); /* Use Silver Grey with opacity */
    margin-bottom: 15px;
    text-align: center;
}

.customer-info-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--text-pale-ash-gray);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.customer-info-form input:focus {
    border-color: var(--primary-golden-olive); /* Use primary golden olive */
}

.place-order-btn {
    width: 100%;
    margin-top: 10px;
}

/* Game Details Page */
.game-detail-page-main {
    padding: 40px 20px;
    max-width: 1400px; /* Increased max-width for full website */
    margin: 20px auto;
    margin-top: 100px; /* Offset for fixed navbar - Adjusted */
    position: relative; /* Added for z-index context */
    z-index: 10; /* Ensures content is above particles */
}

.game-details-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    padding: 30px;
}

.game-cover-trailer {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-cover-trailer img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    flex: 1;
    min-width: 300px;
}

.game-info h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--primary-golden-olive);
    color: var(--highlight-antique-ivory); /* Highlight headings */
}

.game-info .game-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 20px;
}

.game-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-pale-ash-gray);
}

.game-info .game-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 30px;
    color: rgba(176, 176, 176, 0.9); /* Use Silver Grey with opacity */
}

.game-info .add-to-cart-btn {
    width: auto;
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Static Page Main (About Us, Contact Us) */
.static-page-main {
    padding: 40px 20px;
    max-width: 1200px; /* Adjusted max-width */
    margin: 20px auto;
    margin-top: 100px; /* Offset for fixed navbar - Adjusted */
    position: relative; /* Added for z-index context */
    z-index: 10; /* Ensures content is above particles */
}

.static-content-section {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.static-content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    text-align: center;
    margin-bottom: 25px;
    color: var(--highlight-antique-ivory); /* Highlight headings */
}

.static-content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(176, 176, 176, 0.9); /* Use Silver Grey with opacity */
}

/* New Contact Us Section Styling */
.contact-us-section {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    max-width: 1200px; /* Adjusted max-width */
    margin: 20px auto;
    text-align: center;
    margin-top: 0px; /* Offset for fixed navbar - Adjusted */
    position: relative; /* Added for z-index context */
    z-index: 10; /* Ensures content is above particles */
}

.contact-us-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-golden-olive);
    color: var(--highlight-antique-ivory); /* Highlight headings */
}

.contact-intro {
    font-size: 1.1rem;
    color: rgba(176, 176, 176, 0.8); /* Use Silver Grey with opacity */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--hover-color);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    margin-bottom: 15px;
    text-shadow: 0 0 8px var(--primary-golden-olive);
}

.contact-info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--text-pale-ash-gray);
    margin-bottom: 10px;
}

.contact-info-item p {
    font-size: 1rem;
    color: rgba(176, 176, 176, 0.7); /* Use Silver Grey with opacity */
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-golden-olive); /* Use primary golden olive */
    color: var(--primary-bg);
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.contact-form-container {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-golden-olive); /* Use primary golden olive */
    margin-bottom: 25px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    color: var(--text-pale-ash-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Invoice download button styling */
.invoice-download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: var(--primary-bg);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.invoice-download-btn:hover {
    background: linear-gradient(45deg, var(--hover-color), var(--button-gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--text-pale-ash-gray);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-golden-olive); /* Use primary golden olive */
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

/* Feedback Page Styles - Enhanced */
.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-form-section, .feedback-list-section {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-form-section:hover, .feedback-list-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.feedback-form-section h3, .feedback-list-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-golden-olive);
    margin-bottom: 25px;
    font-size: 2rem;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 211, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--highlight-antique-ivory);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background-color: var(--input-bg);
    color: var(--text-pale-ash-gray);
    font-size: 1.05rem;
    outline: none;
    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: var(--primary-golden-olive);
    box-shadow: 0 0 0 3px rgba(255, 211, 0, 0.3);
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B0B0B0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group small {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(176, 176, 176, 0.8);
}

.feedback-list {
    max-height: 650px;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-golden-olive) var(--input-bg);
}

.feedback-list::-webkit-scrollbar {
    width: 10px;
}

.feedback-list::-webkit-scrollbar-track {
    background: var(--input-bg);
    border-radius: 10px;
}

.feedback-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-golden-olive);
    border-radius: 10px;
    border: 2px solid var(--input-bg);
}

.feedback-item {
    background-color: var(--input-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-golden-olive);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feedback-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.feedback-header h4 {
    margin: 0;
    color: var(--primary-golden-olive);
    font-size: 1.3rem;
    font-weight: 700;
}

.feedback-date {
    font-size: 0.9rem;
    color: rgba(176, 176, 176, 0.8);
    white-space: nowrap;
}

.feedback-email {
    margin: 8px 0;
    font-size: 1rem;
    color: rgba(176, 176, 176, 0.9);
    word-break: break-word;
}

.feedback-games {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.game-tag {
    background-color: rgba(255, 211, 0, 0.15);
    color: var(--primary-golden-olive);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-golden-olive);
    white-space: nowrap;
}

.feedback-message {
    margin-top: 20px;
    line-height: 1.7;
    color: var(--text-pale-ash-gray);
    font-size: 1.05rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .feedback-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feedback-form-section, .feedback-list-section {
        padding: 25px;
        width: 100%;
    }

    .feedback-list {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .feedback-form-section h3, .feedback-list-section h3 {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .feedback-item {
        padding: 20px;
    }

    .feedback-header h4 {
        font-size: 1.2rem;
    }

    .feedback-email {
        font-size: 0.95rem;
    }

    .feedback-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feedback-container {
        padding: 0 12px;
        gap: 25px;
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Ensure full width */
    }

    
    .feedback-form-section {
    margin-left: auto;
    margin-right: auto;
    }

    .feedback-list-section {
        padding: 20px;
        margin: 0; /* Remove any default margin */
        width: 100%; /* Make full width */
        align-self: flex-start; /* Align to left */
    }

    .feedback-form-section h3, .feedback-list-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: left; /* Align heading to left */
    }
}

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-group small {
        font-size: 0.8rem;
    }

    .feedback-list {
        padding-right: 10px;
    }

    .feedback-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .feedback-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .feedback-header h4 {
        font-size: 1.1rem;
    }

    .feedback-date {
        font-size: 0.8rem;
    }

    .feedback-email {
        font-size: 0.9rem;
    }

    .feedback-games {
        gap: 6px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .game-tag {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .feedback-message {
        font-size: 0.95rem;
        margin-top: 15px;
    }
    

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar .nav-links li {
        margin-left: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
    }

    .game-card img {
        height: 300px;
    }

    .game-details-section {
        flex-direction: column;
        align-items: center;
    }

    .game-cover-trailer, .game-info {
        min-width: unset;
        width: 100%;
    }

    .game-info h1 {
        font-size: 2.8rem;
        text-align: center;
    }

    .game-info .game-price {
        text-align: center;
    }

    .game-info .add-to-cart-btn {
        width: 80%;
        margin: 0 auto;
    }

    /* Adjust video container for 1024px */
    .video-container {
        max-width: 100%; /* Allow video to take full width of its parent */
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: fixed; /* Keep it fixed */
    }

    .hamburger-menu {
        display: block;
        order: 2;
    }

    .navbar .nav-links {
        position: fixed; /* Keep it fixed */
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 10px var(--shadow-color);
    }

    .navbar .nav-links.active {
        left: 0;
    }

    .navbar .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .navbar .nav-links a {
        font-size: 1.2rem;
        padding: 10px 20px;
        display: inline-block;
        width: 100%;
    }

    .navbar .nav-links a::after {
        bottom: 0;
    }

    .cart-icon {
        order: 1;
        margin-left: auto;
        margin-right: 20px;
    }

    .navbar .logo {
        order: 0;
    }

    .site-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group, .search-group {
        width: 100%;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .game-card img {
        height: 250px;
    }

    .game-card-content h3 {
        font-size: 1.15rem;
    }

    .game-card-price {
        font-size: 1.3rem;
    }

    .add-to-cart-btn {
        font-size: 0.9rem;
        padding: 8px;
    }

    .game-info h1 {
        font-size: 2.2rem;
    }
    .game-info .game-price {
        font-size: 1.8rem;
    }
    .game-info .add-to-cart-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    /* Contact Us Mobile */
    .contact-us-section h2 {
        font-size: 2.2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-form-container h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar-logo {
        height: 40px;
    }

    .site-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hamburger-menu {
        font-size: 1.5rem;
    }

    .cart-icon {
        font-size: 1.3rem;
        margin-right: 15px;
    }

    .navbar .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .slide-content {
        padding: 15px 20px; /* Further adjust padding */
    }

    .slide-content h2 {
        font-size: 2.2rem; /* Smaller font for very small screens */
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .games-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .game-card img {
        height: 300px; /* Maintain aspect ratio */
    }

    .modal-content {
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 1.6rem;
    }

    .close-button {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }

    .customer-info-form input {
        padding: 10px;
    }

    .game-info h1 {
        font-size: 1.8rem;
    }
    .game-info .game-price {
        font-size: 1.5rem;
    }
    .game-info .add-to-cart-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .contact-us-section h2 {
        font-size: 1.8rem;
    }
    .contact-intro {
        font-size: 1.0rem;
    }
    .contact-info-item h3 {
        font-size: 1.4rem;
    }
    .contact-info-item p {
        font-size: 0.9rem;
    }
    .contact-form-container h3 {
        font-size: 1.6rem;
    }
    .contact-form label, .contact-form input, .contact-form textarea {
        font-size: 0.9rem;
    }

    /* Cart Specific Mobile Adjustments */
    .coupon-section {
        flex-direction: column; /* Stack coupon input and button */
        align-items: flex-end; /* Align to the right */
    }
    .coupon-section input {
        width: 100%; /* Full width for input */
        max-width: none; /* Remove max-width constraint */
        margin-bottom: 10px; /* Space between input and button */
    }
    .coupon-section button {
        width: 100%; /* Full width for button */
        max-width: none; /* Remove max-width constraint */
    }
    #coupon-message {
        text-align: center; /* Center coupon message */
        padding-right: 0;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Rajdhani:wght@600&display=swap');

/* Replace the existing .site-title styles with these */
.site-title {
    color: var(--primary-golden-olive);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 211, 0, 0.5); /* Cyber Yellow with opacity */
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 1.8rem; /* Default size */
    white-space: nowrap; /* Prevent text from wrapping */
}

.site-title:hover {
    text-shadow: 0 0 15px rgba(255, 211, 0, 0.7); /* Cyber Yellow with opacity */
    transform: scale(1.02);
}

/* Adjust logo and title alignment */
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
    z-index: 1001;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .site-title {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .navbar-logo {
        height: 40px; /* Slightly smaller logo */
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.1rem; /* Even smaller for very small screens */
        letter-spacing: 0.5px;
    }

    .navbar-logo {
        height: 35px; /* Matching smaller size */
    }

    .navbar .logo {
        gap: 8px; /* Reduce gap on smallest screens */
    }
}

/* New / Modified Cart styles */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--input-border);
    gap: 15px; /* Added gap for better spacing */
}

.cart-item-details {
    flex-grow: 1; /* Allows details to take up available space */
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between quantity buttons and number */
}

.quantity-controls span {
    font-size: 1rem;
    font-weight: 700;
    min-width: 20px; /* Ensure space for quantity number */
    text-align: center;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: var(--primary-golden-olive); /* Use primary golden olive */
    color: var(--primary-bg);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-small:hover {
    background-color: var(--hover-color);
    transform: translateY(-1px);
}

.btn-remove {
    background-color: transparent; /* Transparent background */
    color: var(--danger-deep-crimson); /* Red 'x' */
    border: none;
    font-size: 1.8rem; /* Larger 'x' */
    line-height: 1; /* Adjust vertical alignment */
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 5px; /* Add some padding for easier clicking */
    border-radius: 50%; /* Make it circular */
    width: 40px; /* Fixed width for circular button */
    height: 40px; /* Fixed height for circular button */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    color: #ff0000; /* Darker red on hover */
    transform: scale(1.1);
    background-color: rgba(255, 0, 0, 0.1); /* Subtle red background on hover */
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
}

.cart-summary div:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 10px;
}

.empty-cart-message {
    text-align: center;
    color: rgba(176, 176, 176, 0.7); /* Use Silver Grey with opacity */
    padding: 20px;
    font-style: italic;
}

@media (max-width: 480px) {
    .coupon-section {
        flex-direction: column; /* Stack coupon input and button */
        align-items: flex-end; /* Align to the right */
    }
    .coupon-section input {
        width: 100%; /* Full width for input */
        max-width: none; /* Remove max-width constraint */
        margin-bottom: 10px; /* Space between input and button */
    }
    .coupon-section button {
        width: 100%; /* Full width for button */
        max-width: none; /* Remove max-width constraint */
    }
    #coupon-message {
        text-align: center; /* Center coupon message */
        padding-right: 0;
    }
}

/* How to Setup Accounts Page Styles */
.how-page-main {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 100px auto 40px auto;
    position: relative;
    z-index: 10;
}

.how-section {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-color);
}

.how-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-golden-olive);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 211, 0, 0.3);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-pale-ash-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-tutorials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
}

.tutorial-container {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutorial-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--hover-color);
}

.tutorial-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--highlight-antique-ivory);
    padding: 20px 30px 10px;
    text-align: center;
    background: linear-gradient(to right, 
        rgba(42, 42, 42, 0.8), 
        rgba(28, 28, 28, 0.9), 
        rgba(42, 42, 42, 0.8));
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

.tutorial-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.tutorial-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tutorial-description {
    padding: 25px 30px;
    background-color: var(--card-bg);
}

.tutorial-description p {
    font-size: 1.1rem;
    color: var(--text-pale-ash-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tutorial-steps {
    padding-left: 20px;
    margin-top: 20px;
}

.tutorial-steps li {
    margin-bottom: 12px;
    color: var(--text-pale-ash-gray);
    font-size: 1rem;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.tutorial-steps li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background-color: var(--primary-golden-olive);
    border-radius: 50%;
    transform: scale(0.7);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .how-section {
        padding: 30px;
    }
    
    .how-section h2 {
        font-size: 2.4rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .tutorial-container h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .how-page-main {
        margin-top: 80px;
        padding: 20px 15px;
    }
    
    .how-section {
        padding: 25px 20px;
    }
    
    .how-section h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .video-tutorials {
        gap: 40px;
    }
    
    .tutorial-container h3 {
        font-size: 1.4rem;
        padding: 15px 20px 10px;
    }
    
    .tutorial-description {
        padding: 20px;
    }
    
    .tutorial-steps li {
        font-size: 0.95rem;
        padding-left: 25px;
    }
    
    .tutorial-steps li:before {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .how-section h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .tutorial-container h3 {
        font-size: 1.3rem;
        padding: 12px 15px 8px;
    }
    
    .tutorial-description {
        padding: 15px;
    }
    
    .tutorial-steps {
        padding-left: 15px;
    }
    
    .tutorial-steps li {
        font-size: 0.9rem;
        padding-left: 22px;
        margin-bottom: 10px;
    }
    
    .tutorial-steps li:before {
        width: 12px;
        height: 12px;
        top: 5px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--accent-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px var(--hover-color);
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question.active {
    color: var(--accent-color);
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: rgba(224, 224, 224, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    background-color: var(--input-bg);
}

.faq-answer.active {
    max-height: 500px;
    padding: 15px 25px 20px;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 15px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 10px 20px 15px;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .faq-answer.active {
        padding: 8px 15px 12px;
    }
    
    .faq-question .toggle-icon {
        font-size: 1.3rem;
    }
}

/* Add this to your style.css file */

.load-more-btn {
    display: block; /* Ensure the button is block-level */
    margin: 40px auto; /* Center the button and add vertical space */
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: #0A0A0A;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.load-more-btn:hover {
    background: linear-gradient(45deg, var(--hover-color), var(--button-gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--hover-color);
}