/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #666666;
    --accent-color: #b91c1c;
    --dark-bg: #1a1a1a;
    --darker-bg: #0a0a0a;
    --metal-bg: #2a2a2a;
    --metal-light: #404040;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --glow: 0 0 10px currentColor;
    --metal-glow: 0 0 15px rgba(220, 38, 38, 0.3);
    --pixel-font: 'Press Start 2P', cursive;
    --tech-font: 'Orbitron', monospace;
}

body {
    font-family: var(--tech-font);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Industrial Metal Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(64, 64, 64, 0.03) 3px,
        rgba(64, 64, 64, 0.03) 6px
    );
    pointer-events: none;
    z-index: 1000;
}

.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 70%, rgba(0, 0, 0, 0.3));
    pointer-events: none;
    z-index: 999;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-family: var(--pixel-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: var(--metal-glow), 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
}

.logo .subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.2rem;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(64, 64, 64, 0.3), rgba(42, 42, 42, 0.3));
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: var(--metal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
    margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(42, 42, 42, 0.6) 50%, rgba(26, 26, 26, 0.8) 100%),
        url('../images/dieselpunk-ps2-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 102, 102, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(64, 64, 64, 0.03) 50%, transparent 51%);
    opacity: 0.8;
    animation: metalShimmer 6s ease-in-out infinite alternate;
}

@keyframes metalShimmer {
    0% { opacity: 0.8; transform: translateX(-5px); }
    100% { opacity: 1; transform: translateX(5px); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-family: var(--pixel-font);
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: var(--metal-glow), 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    animation: redGlow 3s ease-in-out infinite alternate;
}

@keyframes redGlow {
    from { text-shadow: 0 0 15px var(--primary-color), 3px 3px 6px rgba(0, 0, 0, 0.8); }
    to { text-shadow: 0 0 25px var(--primary-color), 0 0 35px var(--accent-color), 3px 3px 6px rgba(0, 0, 0, 0.8); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background: linear-gradient(135deg, var(--metal-bg), var(--metal-light));
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-family: var(--pixel-font);
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(220, 38, 38, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.4),
        var(--metal-glow);
    color: var(--text-primary);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.secondary {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(64, 64, 64, 0.8));
    border-color: var(--secondary-color);
    color: var(--text-secondary);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--metal-light));
    color: var(--text-primary);
}

/* Hero Graphics - PS2 Console */
.hero-graphics {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ps2-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.ps2-console {
    width: 350px;
    height: 200px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.3));
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    box-shadow: 
        var(--metal-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps2-image {
    position: absolute;
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    transition: opacity 1s ease-in-out;
}

.ps2-fat {
    opacity: 1;
    animation: fadeInOut 8s ease-in-out infinite;
}

.ps2-slim {
    opacity: 0;
    animation: fadeInOut 8s ease-in-out infinite 4s;
}

@keyframes fadeInOut {
    0% { opacity: 1; }
    45% { opacity: 1; }
    55% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--darker-bg);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 255, 65, 0.2);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--pixel-font);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-button {
    width: 100%;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.8rem;
    font-family: var(--tech-font);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.service-button:hover {
    background: var(--secondary-color);
    color: var(--darker-bg);
}

/* Tutorials Section */
.tutorials-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.tutorials-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-style: italic;
}

/* Tutorial Categories */
.tutorial-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--metal-light);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--tech-font);
    font-weight: 600;
    font-size: 0.95rem;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--metal-glow);
}

/* Category Sections */
.tutorial-category-section {
    transition: opacity 0.3s ease;
}

.tutorial-category-section.hidden {
    display: none;
}

.category-title {
    color: var(--primary-color);
    font-family: var(--pixel-font);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: var(--metal-glow);
}

/* Subcategories */
.tutorial-subcategory {
    margin-bottom: 3rem;
}

.subcategory-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.subcategory-title i {
    color: var(--primary-color);
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tutorial-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9));
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.tutorial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 
        var(--metal-glow),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

.featured-tutorial {
    border-color: var(--primary-color);
    box-shadow: var(--metal-glow);
}

.featured-tutorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.placeholder-card {
    opacity: 0.7;
    border-style: dashed;
}

.tutorial-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--metal-bg), var(--darker-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.tutorial-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tutorial-thumbnail:hover img {
    transform: scale(1.05);
}

.tutorial-thumbnail i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 38, 38, 0.9);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.tutorial-thumbnail:hover .play-overlay {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--pixel-font);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(42, 42, 42, 0.9);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--metal-light);
}

.tutorial-content {
    padding: 1.5rem;
}

.tutorial-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.tutorial-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Video Details Section */
.video-details {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.creator-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.creator-details {
    flex: 1;
}

.creator-name {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.creator-bio {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.creator-link:hover {
    color: var(--accent-color);
}

.tutorial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.difficulty {
    color: #fbbf24;
}

.category-tag {
    background: rgba(42, 42, 42, 0.8);
    color: var(--text-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid var(--metal-light);
}

.tutorial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(220, 38, 38, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.community-spotlight {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(26, 26, 26, 0.8));
    border: 2px solid var(--metal-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.community-spotlight h3 {
    color: var(--primary-color);
    font-family: var(--pixel-font);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.community-spotlight p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Store Section */
.store-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.store-card {
    background: var(--dark-bg);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 25px rgba(0, 255, 65, 0.2);
}

.store-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.store-icon.etsy { color: #f16521; }
.store-icon.ebay { color: #e53238; }
.store-icon.discord { color: #5865f2; }

.store-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.store-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.store-link:hover {
    background: var(--secondary-color);
    color: var(--darker-bg);
}

.custom-build {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(255, 0, 128, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.custom-build h3 {
    font-family: var(--pixel-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.config-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--darker-bg);
    padding: 1rem 2rem;
    font-family: var(--pixel-font);
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.config-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.3);
}

/* About Section Updates */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.community-links {
    margin-top: 3rem;
    text-align: center;
}

.community-links h3 {
    color: var(--primary-color);
    font-family: var(--pixel-font);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 255, 65, 0.05);
}

.social-link.youtube:hover { color: #ff0000; border-color: #ff0000; }
.social-link.discord:hover { color: #5865f2; border-color: #5865f2; }

.social-link i {
    font-size: 2rem;
}

/* Footer Updates */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    font-family: var(--pixel-font);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

/* Section Titles */
.section-title {
    font-family: var(--pixel-font);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: var(--glow);
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 255, 65, 0.2);
    border-color: var(--secondary-color);
}

.game-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.placeholder-image {
    background: var(--darker-bg);
    border: 2px solid var(--accent-color);
}

.game-card h3 {
    font-family: var(--pixel-font);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.play-button {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.7rem 1.5rem;
    font-family: var(--tech-font);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.play-button:hover {
    background: var(--secondary-color);
    color: var(--darker-bg);
    text-shadow: none;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--darker-bg);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(10px);
}

.review-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.date {
    color: var(--text-secondary);
}

.rating {
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--darker-bg);
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--pixel-font);
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-color);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--primary-color);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-graphics {
        margin-top: 2rem;
    }
    
    .arcade-cabinet {
        width: 150px;
        height: 225px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-glow {
    text-shadow: var(--glow);
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
