:root {
    --bg-dark: #05050A;
    --bg-card: rgba(15, 15, 25, 0.6);
    --neon-cyan: #00f3ff;
    --neon-blue: #0066ff;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-border: rgba(0, 243, 255, 0.2);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.neon-text-blue {
    color: #fff;
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.glitch-text {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    position: relative;
    text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.025em -0.05em 0 rgba(0,255,0,0.75), 0.025em 0.05em 0 rgba(0,0,255,0.75);
    animation: glitch 500ms infinite;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
    14% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
    15% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
    49% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
    50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
    99% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
    100% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,0,0.75), -0.025em -0.05em 0 rgba(0,0,255,0.75); }
}

/* Glassmorphism */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

.glow-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

.btn-discord {
    border-color: #5865F2;
}

.btn-discord:hover {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 0 15px #5865F2, 0 0 30px #5865F2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 243, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--neon-cyan);
}

.lang-selector select {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 5px;
    border-radius: 5px;
    font-family: var(--font-body);
    outline: none;
}

.lang-selector select option {
    background: var(--bg-dark);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    cursor: pointer;
}



/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,10,0.7) 0%, rgba(5,5,10,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin: 20px 0 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

.profile-card {
    margin-top: 60px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-color: rgba(0, 102, 255, 0.3);
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    object-fit: cover;
}

.profile-info h3 {
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.profile-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
    max-width: 300px;
}

/* Sections */
.products-section {
    padding: 100px 20px;
    position: relative;
    z-index: 5;
}

.alt-bg {
    background: linear-gradient(to bottom, transparent, rgba(0, 102, 255, 0.05), transparent);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.2);
    border-color: var(--neon-cyan);
}

.alt-bg .product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    border-color: var(--neon-blue);
}

.card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff003c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 0 10px #ff003c;
}

.blue-badge {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.features-list {
    list-style: none;
    margin-bottom: 15px;
}

.features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.features-list i {
    color: var(--neon-cyan);
}

.alt-bg .features-list i {
    color: var(--neon-blue);
}

.compatibility {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-buy, .btn-details {
    width: 100%;
}

.more-details {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.more-details summary {
    cursor: pointer;
    color: var(--neon-cyan);
    font-weight: bold;
    outline: none;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    position: relative;
    z-index: 5;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 L100 0 M0 0 L100 100" stroke="rgba(0,243,255,0.03)" stroke-width="1"/></svg>');
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.consoles-supported {
    margin-top: 40px;
}

.consoles-supported h4 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.console-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.console-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 2.5rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.console-icon:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.console-icon span {
    font-size: 1rem;
    font-family: var(--font-heading);
}

/* Discord Section */
.discord-section {
    padding: 80px 20px;
    position: relative;
    z-index: 5;
}

.discord-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    border-color: rgba(88, 101, 242, 0.3);
}

.discord-logo {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.discord-card h2 {
    margin-bottom: 10px;
}

.discord-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #020205;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    padding: 60px 20px 20px;
    position: relative;
    z-index: 5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--neon-cyan);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Category Selection Section */
/* Futuristic Category Chooser Cards */
.categories-section {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    z-index: 5;
    background: linear-gradient(to bottom, #05050A, #090915, #05050A);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.futuristic-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #0a0f24 0%, #03040b 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 480px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Background Glow effect inside card */
.card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.cronus-card .card-glow-bg {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

.futuristic-card:hover .card-glow-bg {
    opacity: 1;
}

/* Floating 3D Device Image */
.futuristic-card .category-img-wrapper {
    position: relative;
    width: 220px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Soft shadow under the image to give the floaty 3D feel */
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.6));
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover effects for 3D float */
.futuristic-card:hover {
    transform: translateY(-20px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 243, 255, 0.15), 0 0 30px rgba(0, 243, 255, 0.05);
}

.futuristic-card.cronus-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 102, 255, 0.05);
}

.futuristic-card:hover .category-img-wrapper {
    transform: translateY(-15px) scale(1.08);
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.8));
}

.futuristic-card:hover .category-img {
    transform: scale(1.05);
}

/* Stylized Title */
.futuristic-card .category-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 3px;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.futuristic-card.xim-card:hover .category-title {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
}

.futuristic-card.cronus-card:hover .category-title {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
}

/* Capsule Pill Button */
.category-capsule-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    transition: all 0.4s ease;
    width: 85%;
    text-align: center;
}

.xim-card .category-capsule-btn {
    background: #8b0000;
    border: 2px solid #ff003c;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3);
}

.xim-card:hover .category-capsule-btn {
    background: #b30000;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8), 0 5px 15px rgba(255, 0, 60, 0.5);
    transform: scale(1.05);
}

.cronus-card .category-capsule-btn {
    background: #06599b;
    border: 2px solid #00f3ff;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.cronus-card:hover .category-capsule-btn {
    background: #0a6da9;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.8), 0 5px 15px rgba(0, 243, 255, 0.5);
    transform: scale(1.05);
}

/* Hidden Section Utility */
.hidden-section {
    display: none !important;
}

/* Responsive */
/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 5, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        padding: 15px;
        gap: 15px;
    }

    .profile-img {
        width: 80px;
        height: 80px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .categories-section {
        padding: 80px 15px;
    }

    .categories-grid {
        gap: 30px;
        margin-top: 40px;
    }

    .futuristic-card {
        padding: 35px 20px 25px 20px;
        min-height: 400px;
    }

    .futuristic-card .category-img-wrapper {
        width: 180px;
        height: 150px;
    }

    .futuristic-card .category-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .category-capsule-btn {
        width: 90%;
        padding: 10px 25px;
        font-size: 1.1rem;
    }

    .products-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Elegant 2-Column Grid on Tablet */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-img-wrapper {
        height: 140px;
    }

    .card-content {
        padding: 15px;
    }

    .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .about-section, .discord-section {
        padding: 60px 15px;
    }
}

@media (max-width: 576px) {
    /* Navbar layout fix to prevent overlap */
    .nav-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .nav-actions {
        gap: 8px;
    }



    .lang-selector {
        gap: 3px;
        font-size: 0.9rem;
    }

    .lang-selector select {
        padding: 3px;
        font-size: 0.8rem;
        max-width: 80px;
    }

    /* Hero section mobile typography & spacing */
    .hero-section {
        padding-top: 70px;
        min-height: calc(100vh - 70px);
    }

    .glitch-text {
        font-size: 1.85rem;
    }

    .hero-content .subtitle {
        font-size: 0.95rem;
        margin: 12px 0 25px;
    }

    .btn-large {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Compact Profile Card on Mobile */
    .profile-card {
        margin-top: 30px;
        padding: 12px;
        gap: 10px;
        width: 100%;
        max-width: 320px;
    }

    .profile-img {
        width: 65px;
        height: 65px;
        border-width: 2px;
    }

    .profile-info h3 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .profile-info p {
        font-size: 0.78rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .btn-discord {
        padding: 6px 12px;
        font-size: 0.78rem;
        border-radius: 4px;
    }

    /* Futuristic Category Selection Cards on Mobile */
    .categories-section {
        padding: 50px 10px;
    }

    .categories-grid {
        gap: 15px;
        margin-top: 25px;
    }

    .futuristic-card {
        padding: 25px 15px 20px 15px;
        min-height: 310px;
        border-radius: 18px;
    }

    .futuristic-card .category-img-wrapper {
        width: 130px;
        height: 100px;
        border-radius: 10px;
        margin-bottom: 12px;
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5));
    }

    .futuristic-card .category-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .category-capsule-btn {
        width: 95%;
        padding: 8px 15px;
        font-size: 0.88rem;
    }

    /* Products lists Section mobile styling */
    .products-section {
        padding: 40px 8px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* Ultimate 2-Column Mobile Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 4px;
    }

    .product-card {
        border-radius: 10px;
        border-width: 1px;
    }

    .card-img-wrapper {
        height: 95px;
    }

    .card-badge {
        font-size: 0.65rem;
        padding: 2px 5px;
        top: 6px;
        right: 6px;
        box-shadow: 0 0 5px #ff003c;
    }

    .card-content {
        padding: 8px;
    }

    .card-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .features-list {
        margin-bottom: 6px;
    }

    .features-list li {
        font-size: 0.72rem;
        margin-bottom: 3px;
        gap: 4px;
    }

    .features-list i {
        font-size: 0.72rem;
    }

    .compatibility {
        font-size: 0.68rem;
        margin-bottom: 8px;
        gap: 4px;
    }

    .compatibility i {
        font-size: 0.7rem;
    }

    .btn-buy {
        font-size: 0.72rem;
        padding: 5px 6px;
        border-radius: 4px;
        gap: 3px;
    }

    .more-details {
        margin-top: 6px;
        font-size: 0.68rem;
    }

    .more-details summary {
        margin-bottom: 3px;
    }

    .more-details p {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    /* About Section Mobile scaling */
    .about-section {
        padding: 45px 15px;
    }

    .about-content {
        padding: 15px;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .consoles-supported {
        margin-top: 25px;
    }

    .console-icons {
        gap: 15px;
    }

    .console-icon {
        font-size: 1.6rem;
    }

    .console-icon span {
        font-size: 0.75rem;
    }

    /* Discord Card Section scaling */
    .discord-section {
        padding: 45px 15px;
    }

    .discord-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .discord-logo {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .discord-card p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* Footer styling compact */
    footer {
        padding: 35px 15px 15px;
    }

    .footer-container {
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-col h4 {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .footer-col ul li {
        margin-bottom: 6px;
        font-size: 0.85rem;
    }
}

