:root {
    /* Main colors */
    --bg-gradient-1: #13111C;
    --bg-gradient-2: #1A1625;
    --card-bg: #232030;
    --card-bg-hover: #2D2A3C;
    --accent-pink: #FF2E93;
    --accent-purple: #9945FF;
    --accent-blue: #14B8FF;
    --accent-gradient: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    --text-primary: #ffffff;
    --text-secondary: #ABA8C3;
    --text-tertiary: #6E6A85;
    --success: #00E599;
    --warning: #FFB800;
    --danger: #FF4545;
    --border-color: #393650;

    /* Sizing */
    --header-height: 60px;
    --sidebar-width: 260px;
    --content-max-width: 1600px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2));
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout components */
.main-container {
    display: flex;
    min-height: calc(100vh - var(--header-height));
    position: relative;
}

.content-wrapper {
    flex: 1;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

.main-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 30px 20px;
}

/* Header */
.app-header {
    height: var(--header-height);
    background-color: rgba(26, 22, 37, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo-container img {
    max-height: 70px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 6px 15px;
    width: 250px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.search-container:focus-within {
    border-color: var(--accent-purple);
    width: 300px;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.2);
}

.search-container input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 100%;
    padding: 6px 10px;
    outline: none;
    font-size: 0.9rem;
}

.search-container i {
    color: var(--text-tertiary);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: none;
    border: none;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: rgba(35, 32, 48, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-color);
    height: calc(100vh - var(--header-height));
    position: sticky;
    top: var(--header-height);
    overflow-y: auto;
    transition: transform 0.3s ease;
    padding: 20px 0;
}

.sidebar-section {
    margin-bottom: 30px;
    padding: 0 15px;
}

.sidebar-heading {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    padding: 0 15px;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-link.active {
    background: linear-gradient(90deg, rgba(153, 69, 255, 0.15), rgba(153, 69, 255, 0));
    color: var(--accent-purple);
    border-left: 3px solid var(--accent-purple);
}

.nav-link i {
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-market-stats {
    background: linear-gradient(135deg, rgba(20, 184, 255, 0.1), rgba(153, 69, 255, 0.1));
    border-radius: var(--border-radius-md);
    padding: 15px;
    margin: 20px 15px;
    border: 1px solid rgba(153, 69, 255, 0.3);
}

.stat-item {
    margin-bottom: 15px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Overview hero section */
.overview-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(20, 184, 255, 0.1));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.overview-hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><rect width="10" height="10" fill="rgba(255,255,255,0.03)"/></svg>');
    animation: heroBgScroll 60s linear infinite;
    z-index: -1;
}

@keyframes heroBgScroll {
    0% {
        transform: translateZ(0);
    }
    100% {
        transform: translate3d(30px, 30px, 0);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.hero-btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(153, 69, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Grid sections */
.grid-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 1.2rem;
    color: var(--accent-purple);
}

.section-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-outline {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--accent-purple);
    background: rgba(153, 69, 255, 0.1);
}

/* Grid layouts */
.grid-layout {
    display: grid;
    gap: 20px;
}

.grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card-container {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-container:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--card-bg-hover);
}

.game-card {
    position: relative;
}

.game-banner {
    height: 150px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-banner {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(35, 32, 48, 1), rgba(35, 32, 48, 0) 70%);
}

.game-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge-wishlist {
    background-color: rgba(255, 46, 147, 0.7);
    color: white;
}

.badge-trending {
    background-color: rgba(153, 69, 255, 0.7);
    color: white;
}

.badge-trending-secondary {
    background-color: rgba(20, 184, 255, 0.5);
    color: white;
    margin-top: 5px;
}

.badge-new {
    background-color: rgba(20, 184, 255, 0.7);
    color: white;
}

.game-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.game-title a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.game-title a:hover {
    color: var(--accent-blue);
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-value {
    font-weight: 600;
    color: var(--text-primary);
}

.game-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.btn-card {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-card-primary {
    background-color: rgba(153, 69, 255, 0.5); /* More transparent */
    color: white;
    border: none;
}

.btn-card-primary:hover {
    background-color: rgba(153, 69, 255, 0.7);
}

.btn-card-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-card-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* New Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.product-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 69px;
    width: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px;
}

.product-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.product-card:hover .product-title {
    color: var(--text-primary);
}

/* Dev Updates section */
.dev-updates-container {
    max-height: 350px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--card-bg);
}

.dev-updates-container::-webkit-scrollbar {
    width: 6px;
}

.dev-updates-container::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.dev-updates-container::-webkit-scrollbar-thumb {
    background-color: var(--accent-purple);
    border-radius: 3px;
}

.update-entry {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.update-entry:last-child {
    border-bottom: none;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.update-entry-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.update-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-feature {
    background-color: rgba(0, 229, 153, 0.2);
    color: var(--success);
}

.badge-bugfix {
    background-color: rgba(255, 69, 69, 0.2);
    color: var(--danger);
}

.badge-improvement {
    background-color: rgba(20, 184, 255, 0.2);
    color: var(--accent-blue);
}

.update-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.update-time {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.days-ago {
    font-style: italic;
}

/* Project stats card */
.project-stats-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stats-section {
    margin-bottom: 20px;
}

.stats-section:last-child {
    margin-bottom: 0;
    margin-top: auto;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.planned-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 10px;
}

.planned-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.planned-item:before {
    content: "•";
    color: var(--accent-purple);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.stat-row-label {
    color: var(--text-secondary);
}

.stat-row-value {
    font-weight: 600;
    color: var(--text-primary);
}

.stat-row-value.version {
    color: var(--accent-pink);
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: var(--accent-purple);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-top: 15px;
}

.feedback-btn:hover {
    background-color: #8035E8;
    transform: translateY(-2px);
}

/* Footer */
.app-footer {
    background-color: var(--bg-gradient-1);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gradient);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.footer-list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-list li i {
    color: var(--accent-purple);
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-pink);
    margin-right: 10px;
    font-size: 1rem;
}

.footer-contact a {
    color: var(--accent-blue);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-pink);
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Back to top button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(153, 69, 255, 0.4);
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-5px);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .grid-4-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-3-cols, .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .app-header {
        padding: 0 15px;
    }

    .search-container {
        width: 200px;
    }

    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1001;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content-wrapper {
        margin-left: 0;
    }

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

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-3-cols, .grid-4-cols {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-header {
        padding: 0 10px;
    }

    .search-container {
        display: none;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Add these additional styles to your index_style.css file */

/* Product card links */
.product-card-link:focus {
    text-decoration: none;
    color: inherit;
}

/* Updates list styling */
.updates-list {
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--card-bg);
}

.updates-list::-webkit-scrollbar {
    width: 6px;
}

.updates-list::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.updates-list::-webkit-scrollbar-thumb {
    background-color: var(--accent-purple);
    border-radius: 3px;
}

.update-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.update-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.update-item:last-child {
    border-bottom: none;
}

.update-image {
    width: 80px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.update-details {
    flex: 1;
}

.update-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.update-title a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.update-title a:hover {
    color: var(--accent-blue);
}

.change-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.change-type {
    color: var(--accent-pink);
    font-weight: 500;
}

.change-time {
    color: var(--text-tertiary);
}

.change-diff {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px;
    font-size: 0.85rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.diff-row {
    display: flex;
    margin-bottom: 5px;
}

.diff-row:last-child {
    margin-bottom: 0;
}

.diff-label {
    color: var(--text-tertiary);
    width: 50px;
    flex-shrink: 0;
}

.diff-old {
    color: var(--danger);
}

.diff-new {
    color: var(--success);
}

/* News impact styling */
.news-impact-card {
    display: flex;
    flex-direction: column;
}

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

.game-thumb {
    width: 80px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.news-title-container h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.news-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-bottom: 15px;
}

.news-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.news-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.impact-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.impact-stat {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    text-align: center;
}

.impact-stat:first-child {
    margin-right: 10px;
}

.stat-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.stat-result {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success);
}

/* Add these additional CSS rules to fix the overlay issue */

/* Make game banner links properly clickable */
.game-banner-link {
    display: block;
    position: relative;
    overflow: hidden;
    height: 150px;
    text-decoration: none;
}

.game-banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Ensure the banner is properly visible */
.game-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Create a gradient overlay that doesn't block clicks */
.game-banner-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%; /* Just cover the bottom half with the gradient */
    background: linear-gradient(to top, rgba(35, 32, 48, 0.8), rgba(35, 32, 48, 0));
    pointer-events: none; /* Important: makes the overlay non-interactive */
}

/* Make sure badges appear above the gradient but don't block clicks */
.game-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    pointer-events: none; /* Don't block clicks */
}

/* Keep hover effect working */
.game-banner-link:hover .game-banner {
    transform: scale(1.05);
}

/* Product cards need full clickable area */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.product-card-link:hover {
    transform: translateY(-3px);
}

/* Make sure product card is fully clickable */
.product-card {
    height: 100%;
    width: 100%;
    cursor: pointer;
}
