/*
Theme Name: Classic Game Legends
Theme URI: https://classicgamelegends.com.au
Author: Classic Game Legends
Author URI: https://classicgamelegends.com.au
Description: A modern gaming website dedicated to classic 90s games, Dendy/NES, racing games, and the best online games of all time. Perfect for gaming enthusiasts who love retro gaming culture.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: classic-game-legends
Tags: gaming, retro, blog, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d8 50%, #f0f0e0 100%);
    background-attachment: fixed;
    color: #2c2c2c;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Creative Background Layers */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background-image: 
        /* Pixel art clouds */
        radial-gradient(circle at 10% 20%, rgba(230, 0, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 40%, rgba(230, 0, 18, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(230, 0, 18, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(230, 0, 18, 0.07) 0%, transparent 50%),
        /* Pixel art blocks pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(230, 0, 18, 0.03) 40px,
            rgba(230, 0, 18, 0.03) 80px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(44, 44, 44, 0.02) 40px,
            rgba(44, 44, 44, 0.02) 80px
        );
    pointer-events: none;
    z-index: 0;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

/* Pixel art decorative elements */
body {
    position: relative;
}

body::before {
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
        /* Game controller pattern */
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Crect x='20' y='40' width='60' height='20' fill='%23E60012' opacity='0.1'/%3E%3Ccircle cx='30' cy='50' r='5' fill='%23E60012' opacity='0.15'/%3E%3Ccircle cx='70' cy='50' r='5' fill='%23E60012' opacity='0.15'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 
        100% 100%,
        100% 100%,
        200px 200px;
    background-position: 0 0, 0 0, 0 0;
}

/* Header Styles - Nintendo/Dendy Style */
.site-header {
    background: #E60012;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #8B0000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #E60012 0%, #CC0011 100%);
    width: 100%;
    box-sizing: border-box;
}

.site-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #FFFFFF;
    box-shadow: 
        inset 0 0 0 2px #E60012,
        0 4px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.site-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 0 0 2px #E60012,
        0 6px 0 rgba(0, 0, 0, 0.3);
}

.site-logo::before {
    content: '🎮';
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.main-navigation a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #FFFFFF;
    border-radius: 0;
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        0 3px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    position: relative;
}

.main-navigation a:hover {
    background: #FFFFFF;
    color: #E60012;
    transform: translateY(2px);
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(0, 0, 0, 0.2);
}

/* Burger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 45px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid #FFFFFF;
    border-radius: 0;
    cursor: pointer;
    padding: 0.5rem;
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        0 4px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    z-index: 1001;
}

.menu-toggle::before {
    content: 'MENU';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.menu-toggle:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.menu-toggle-line {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
.site-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Decorative background elements */
.site-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background-image: 
        /* Pixel stars */
        radial-gradient(2px 2px at 20% 30%, rgba(230, 0, 18, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(230, 0, 18, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(230, 0, 18, 0.4), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(230, 0, 18, 0.3), transparent),
        radial-gradient(2px 2px at 40% 80%, rgba(230, 0, 18, 0.25), transparent),
        /* Grid pattern */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(230, 0, 18, 0.02) 50px,
            rgba(230, 0, 18, 0.02) 52px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(230, 0, 18, 0.02) 50px,
            rgba(230, 0, 18, 0.02) 52px
        );
    background-size: 
        200% 200%,
        200% 200%,
        200% 200%,
        200% 200%,
        200% 200%,
        100px 100px,
        100px 100px;
    background-position: 
        0% 0%,
        100% 100%,
        50% 50%,
        80% 20%,
        40% 80%,
        0 0,
        0 0;
    pointer-events: none;
    z-index: 0;
    animation: starTwinkle 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.site-main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background-image: 
        /* Retro game elements - pixelated shapes */
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.08'%3E%3Crect x='10' y='10' width='40' height='40' fill='%23E60012'/%3E%3Crect x='15' y='15' width='30' height='30' fill='%23CC0011'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23E60012'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='15' fill='%23E60012'/%3E%3Ccircle cx='40' cy='40' r='10' fill='%23CC0011'/%3E%3Ccircle cx='40' cy='40' r='5' fill='%23E60012'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 150px 150px, 200px 200px;
    background-position: 10% 20%, 90% 80%;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
    animation: pixelFloat 15s ease-in-out infinite;
}

@keyframes pixelFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.wide-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

body.home .content-wrapper,
.home .content-wrapper {
    max-width: 1400px;
}

/* Hero Section - Nintendo Style */
.hero-section {
    background: linear-gradient(135deg, #E60012 0%, #CC0011 50%, #E60012 100%);
    padding: 5rem 3rem;
    text-align: center;
    border: 4px solid #8B0000;
    margin-bottom: 3rem;
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: visible;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Hero Image Container */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    max-height: 400px;
    width: 50%;
    height: auto;
    border: 4px solid #FFFFFF;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #E60012,
        inset 0 0 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
    background: #FFFFFF;
    padding: 8px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid #2c2c2c;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Decorative corners for hero image */
.hero-image-decoration {
    position: absolute;
    color: #E60012;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-image-decoration-top-left {
    top: -10px;
    left: -10px;
}

.hero-image-decoration-top-right {
    top: -10px;
    right: -10px;
}

.hero-image-decoration-bottom-left {
    bottom: -10px;
    left: -10px;
}

.hero-image-decoration-bottom-right {
    bottom: -10px;
    right: -10px;
}

/* Hero Background Overlay - Removed red overlay for full image visibility */
.hero-background-overlay {
    display: none;
}

/* Hero Image Positions */
.hero-image-left,
.hero-image-right {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image-left {
    left: 0;
}

.hero-image-right {
    right: 0;
}

.hero-image-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(20%) contrast(1.1);
}

.hero-image-left .hero-image,
.hero-image-right .hero-image {
    border-right: 4px solid #8B0000;
}

.hero-image-right .hero-image {
    border-right: none;
    border-left: 4px solid #8B0000;
}

.hero-image-top .hero-image {
    border-bottom: 4px solid #8B0000;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        ),
        url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1'%3E%3Crect x='0' y='0' width='40' height='40' fill='%23FFFFFF'/%3E%3Crect x='40' y='40' width='40' height='40' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%, 80px 80px;
    pointer-events: none;
    animation: heroPattern 10s linear infinite;
}

@keyframes heroPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 0, 80px 80px; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20px, 20px) scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: 2rem;
}

.hero-top-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFFFFF;
    padding: 0.6rem 1.8rem;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFFFFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
}

.hero-badge-primary {
    animation-delay: 0s;
}

.hero-badge-secondary {
    animation-delay: 1s;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.hero-main-title {
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.hero-title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.4), 
        6px 6px 0 rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.4);
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0.3rem 0;
    animation: titleSlide 1s ease-out;
    position: relative;
}

.hero-title-line-1 {
    animation-delay: 0.1s;
    transform: translateX(-20px);
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-title-line-2 {
    animation-delay: 0.3s;
    transform: translateX(-20px);
    opacity: 0;
    animation-fill-mode: forwards;
    color: #FFD700;
    text-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.4), 
        6px 6px 0 rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.6);
}

.hero-title-line-3 {
    animation-delay: 0.5s;
    transform: translateX(-20px);
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes titleSlide {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-tagline {
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-tagline-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    font-weight: bold;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFFFFF;
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-tagline-text {
    text-transform: uppercase;
    font-size: 1.3rem;
}

.hero-icon {
    font-size: 1.2rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    animation: iconBounce 1.5s ease-in-out infinite;
}

.hero-icon:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes iconBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.hero-description-box {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-description-main {
    font-size: 1.4rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
    font-weight: 500;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #FFFFFF;
    border-radius: 0;
    box-shadow: 
        inset 0 0 0 2px rgba(0, 0, 0, 0.2),
        0 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-stat-item {
    text-align: center;
    position: relative;
}

.hero-stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.hero-stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-stat-divider {
    color: #FFFFFF;
    font-size: 1.5rem;
    opacity: 0.6;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid #FFFFFF;
    padding: 1.2rem 1rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-feature:hover::before {
    left: 100%;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 4px 0 rgba(0, 0, 0, 0.3);
}

.hero-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: iconRotate 3s ease-in-out infinite;
}

.hero-feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-feature-title {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-feature-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.hero-cta {
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-cta-text {
    font-size: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    animation: ctaBlink 2s ease-in-out infinite;
}

@keyframes ctaBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-cta-arrow {
    font-size: 1.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-decoration {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: decorationFloat 4s ease-in-out infinite;
}

.hero-decoration-corner-1 {
    top: 1.5rem;
    left: 1.5rem;
    animation-delay: 0s;
}

.hero-decoration-corner-2 {
    top: 1.5rem;
    right: 1.5rem;
    animation-delay: 0.5s;
}

.hero-decoration-corner-3 {
    bottom: 1.5rem;
    left: 1.5rem;
    animation-delay: 1s;
}

.hero-decoration-corner-4 {
    bottom: 1.5rem;
    right: 1.5rem;
    animation-delay: 1.5s;
}

.hero-decoration-side-1 {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    animation-delay: 0.25s;
}

.hero-decoration-side-2 {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

.hero-decoration-side-3 {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.25s;
}

.hero-decoration-side-4 {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.75s;
}

@keyframes decorationFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.25; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.4; }
}

/* Content Sections - Retro Console Style */
.content-section {
    background: #FFFFFF;
    padding: 3rem 3.5rem;
    margin-bottom: 3rem;
    border: 4px solid #2c2c2c;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012,
        inset 0 0 20px rgba(230, 0, 18, 0.05);
    position: relative;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(230, 0, 18, 0.03) 2px, rgba(230, 0, 18, 0.03) 4px),
        url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.02'%3E%3Ccircle cx='15' cy='15' r='2' fill='%23E60012'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%, 30px 30px;
}

.content-section::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: #E60012;
    border: 3px solid #2c2c2c;
    box-shadow: 
        inset 0 0 0 2px #FFFFFF,
        0 2px 0 rgba(0, 0, 0, 0.2);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #E60012, #CC0011, #E60012);
    border-bottom: 2px solid #8B0000;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #E60012, #CC0011, #E60012);
    border-bottom: 2px solid #8B0000;
}

.content-section h2 {
    color: #E60012;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    border-bottom: 4px solid #E60012;
    padding-bottom: 0.75rem;
    padding-left: 3rem;
    position: relative;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.content-section h2::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #E60012;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100px;
    height: 4px;
    background: #2c2c2c;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.content-section h3 {
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section h3::before {
    content: '▶';
    color: #E60012;
    font-size: 1rem;
}

.content-section p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #2c2c2c;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

/* Game Cards - Retro Style */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.game-card {
    background: #FFFFFF;
    padding: 2rem;
    border: 3px solid #2c2c2c;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012,
        inset 0 0 15px rgba(230, 0, 18, 0.05);
    transition: all 0.3s;
    position: relative;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(230, 0, 18, 0.02) 2px, rgba(230, 0, 18, 0.02) 4px);
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #E60012, #CC0011, #E60012);
    border-bottom: 2px solid #8B0000;
}

.game-card::after {
    content: '🎮';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.2;
    transform: rotate(-15deg);
    transition: all 0.3s;
}

.game-card:hover::after {
    opacity: 0.4;
    transform: rotate(15deg) scale(1.2);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px #E60012,
        0 0 20px rgba(230, 0, 18, 0.3);
    border-color: #E60012;
}

.game-card h3 {
    color: #E60012;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card h3::before {
    content: '🎮';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.game-card p {
    color: #2c2c2c;
    line-height: 1.8;
    font-size: 0.95rem;
}

.game-card .game-year {
    display: inline-block;
    background: #E60012;
    color: #FFFFFF;
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    border: 2px solid #8B0000;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form - Retro Style */
.contact-form {
    background: #FFFFFF;
    padding: 2rem;
    border: 4px solid #2c2c2c;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #E60012;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid #2c2c2c;
    border-radius: 0;
    background: #FFFFFF;
    color: #2c2c2c;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E60012;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(230, 0, 18, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #E60012;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border: 3px solid #8B0000;
    border-radius: 0;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background: #CC0011;
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

/* Footer - Retro Gaming Style */
.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    padding: 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #E60012;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(230, 0, 18, 0.03) 20px, rgba(230, 0, 18, 0.03) 40px);
    pointer-events: none;
    z-index: 0;
}

.footer-top-border {
    height: 3px;
    background: #E60012;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-pixel-border {
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        #E60012 0px,
        #E60012 8px,
        #FFFFFF 8px,
        #FFFFFF 16px
    );
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-bottom-border {
    height: 2px;
    background: #E60012;
    width: 100%;
    margin-top: 1rem;
    opacity: 0.6;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.25rem;
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(230, 0, 18, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #E60012;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section:hover::before {
    opacity: 1;
}

.footer-section h3 {
    color: #E60012;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-weight: bold;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5), 0 0 10px rgba(230, 0, 18, 0.3);
    font-family: 'Courier New', monospace;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(230, 0, 18, 0.3);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #E60012;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-cta {
    color: #E60012 !important;
    font-weight: bold;
    margin-top: 1rem !important;
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(230, 0, 18, 0.5);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    padding: 0.35rem 0.5rem;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
    margin-left: -0.5rem;
}

.footer-links a:hover {
    background: rgba(230, 0, 18, 0.1);
    padding-left: 0.75rem;
}

.footer-link-icon {
    font-size: 1rem;
    display: inline-block;
    width: 20px;
    text-align: center;
}


.footer-subheading {
    color: #E60012;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.5rem 0 0.75rem 0;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(230, 0, 18, 0.2);
}

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

.footer-contact-list li {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.footer-contact-list a {
    color: #E60012;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-contact-list a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(230, 0, 18, 0.5);
    text-decoration: underline;
}

.footer-contact-icon {
    font-size: 1rem;
    display: inline-block;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-divider-small {
    height: 1px;
    background: #CCCCCC;
    margin: 1rem 0;
    width: 100%;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-hours li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(230, 0, 18, 0.2);
}

.footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Blog Styles */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.blog-post {
    background: #FFFFFF;
    padding: 1.5rem;
    border: 3px solid #2c2c2c;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012;
    border-top: 6px solid #E60012;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px #E60012;
}

.blog-post h3 {
    color: #E60012;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post-excerpt {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.read-more {
    color: #E60012;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    color: #CC0011;
    text-decoration: underline;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border: 3px solid #2c2c2c;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    color: #666;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-placeholder::before {
    content: '📷';
    font-size: 3rem;
    opacity: 0.3;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(230, 0, 18, 0.05) 10px,
        rgba(230, 0, 18, 0.05) 20px
    );
}

.image-placeholder {
    position: relative;
}

.image-placeholder::before {
    content: '📷';
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.image-placeholder {
    color: #666;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #E60012, #CC0011);
    box-shadow: 0 0 10px rgba(230, 0, 18, 0.3);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.6rem;
    top: 0.3rem;
    width: 20px;
    height: 20px;
    background: #E60012;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 
        0 0 0 3px #E60012, 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #8B0000;
    animation: timelinePulse 2s infinite;
}

@keyframes timelinePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.timeline-item::after {
    content: '▶';
    position: absolute;
    left: -0.5rem;
    top: 0.35rem;
    color: #FFFFFF;
    font-size: 0.7rem;
    z-index: 1;
}

.timeline-year {
    color: #E60012;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote Styles */
.quote-box {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.1) 0%, rgba(204, 0, 17, 0.1) 100%);
    border-left: 6px solid #E60012;
    border-top: 2px solid #E60012;
    border-bottom: 2px solid #E60012;
    border-right: 2px solid #E60012;
    padding: 1.5rem 2rem 1.5rem 4rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 
        inset 0 0 10px rgba(230, 0, 18, 0.1),
        0 2px 0 rgba(0, 0, 0, 0.1);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(230, 0, 18, 0.05) 2px, rgba(230, 0, 18, 0.05) 4px);
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 5rem;
    color: #E60012;
    opacity: 0.4;
    font-family: Georgia, serif;
    font-weight: bold;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.quote-box::after {
    content: '💬';
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 1.2rem;
    opacity: 0.3;
}

/* Stats Box */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: #FFFFFF;
    padding: 1.5rem;
    border: 3px solid #2c2c2c;
    text-align: center;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012;
    border-top: 6px solid #E60012;
    position: relative;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(230, 0, 18, 0.03) 5px, rgba(230, 0, 18, 0.03) 10px);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid #8B0000;
}

.stat-box::after {
    content: '★';
    position: absolute;
    top: 8px;
    right: 8px;
    color: #E60012;
    font-size: 1.2rem;
    opacity: 0.3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #E60012;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.stat-label {
    color: #2c2c2c;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(230, 0, 18, 0.05);
    border-left: 6px solid #E60012;
    border-top: 2px solid #E60012;
    border-bottom: 2px solid #E60012;
    border-right: 2px solid #E60012;
    position: relative;
    padding-left: 2.5rem;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: #E60012;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E60012;
    border-radius: 3px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

/* Section Divider */
.section-divider {
    height: 8px;
    background: linear-gradient(90deg, transparent, #E60012, #CC0011, #E60012, transparent);
    margin: 4rem 0;
    box-shadow: 0 2px 4px rgba(230, 0, 18, 0.3);
    position: relative;
    border-top: 2px solid #8B0000;
    border-bottom: 2px solid #8B0000;
}

.section-divider::before,
.section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #E60012;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.section-divider::before {
    left: 20%;
}

.section-divider::after {
    right: 20%;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.highlight {
    color: #E60012;
    font-weight: bold;
    background: rgba(230, 0, 18, 0.1);
    padding: 0.15rem 0.5rem;
    border: 1px solid #E60012;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 0 1.5rem;
    }
    
    .content-section {
        padding: 2rem 2rem;
    }
}

/* Dendy Section Image */
.dendy-image-container {
    position: relative;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    border: 4px solid #FFFFFF;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #E60012,
        inset 0 0 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
    background: #FFFFFF;
    padding: 8px;
    overflow: hidden;
}

.dendy-section-image {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #2c2c2c;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Decorative corners for Dendy image */
.dendy-image-decoration {
    position: absolute;
    color: #E60012;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.dendy-image-decoration-top-left {
    top: -10px;
    left: -10px;
}

.dendy-image-decoration-top-right {
    top: -10px;
    right: -10px;
}

.dendy-image-decoration-bottom-left {
    bottom: -10px;
    left: -10px;
}

.dendy-image-decoration-bottom-right {
    bottom: -10px;
    right: -10px;
}

/* Communities Section Image */
.communities-image-container {
    position: relative;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    border: 4px solid #FFFFFF;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #E60012,
        inset 0 0 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
    background: #FFFFFF;
    padding: 8px;
    overflow: hidden;
}

.communities-section-image {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #2c2c2c;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Decorative corners for Communities image */
.communities-image-decoration {
    position: absolute;
    color: #E60012;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.communities-image-decoration-top-left {
    top: -10px;
    left: -10px;
}

.communities-image-decoration-top-right {
    top: -10px;
    right: -10px;
}

.communities-image-decoration-bottom-left {
    bottom: -10px;
    left: -10px;
}

.communities-image-decoration-bottom-right {
    bottom: -10px;
    right: -10px;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-post-card {
    background: #FFFFFF;
    border: 3px solid #2c2c2c;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012;
    border-top: 6px solid #E60012;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px #E60012;
}

.blog-post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    border-bottom: 3px solid #2c2c2c;
}

.blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-post-card:hover .blog-post-image {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-title a:hover {
    color: #E60012;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.blog-post-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-post-category {
    display: inline-block;
    background: rgba(230, 0, 18, 0.1);
    color: #E60012;
    padding: 0.25rem 0.75rem;
    border: 1px solid #E60012;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-read-more {
    display: inline-block;
    color: #E60012;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.blog-post-read-more:hover {
    border-bottom-color: #E60012;
    transform: translateX(5px);
}

.blog-view-all {
    text-align: center;
    margin-top: 2.5rem;
}

.blog-view-all-button {
    display: inline-block;
    background: #E60012;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border: 3px solid #2c2c2c;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px #FFFFFF;
    transition: all 0.2s;
}

.blog-view-all-button:hover {
    background: #CC0011;
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px #FFFFFF;
}

.blog-no-posts {
    text-align: center;
    padding: 3rem;
    background: rgba(230, 0, 18, 0.05);
    border: 2px dashed #E60012;
    color: #666;
}

/* Dendy Info Line - Single line stats */
.dendy-info-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: #FFFFFF;
    border: 3px solid #2c2c2c;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px #E60012;
    border-top: 6px solid #E60012;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.dendy-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.dendy-info-label {
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dendy-info-value {
    color: #E60012;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.dendy-info-divider {
    color: #E60012;
    font-size: 1rem;
    opacity: 0.5;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .site-main {
        padding: 1rem 1rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .header-container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #E60012 0%, #CC0011 100%);
        border-left: 4px solid #8B0000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding: 5rem 0 2rem;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation::before {
        content: 'MENU';
        position: absolute;
        top: 1rem;
        left: 1rem;
        color: #FFFFFF;
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .main-navigation a {
        display: block;
        text-align: left;
        padding: 1.25rem 1.5rem;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        border-left: 4px solid transparent;
        transition: all 0.3s;
    }

    .main-navigation a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #FFFFFF;
        border-left-color: #FFFFFF;
        transform: translateX(5px);
        box-shadow: none;
    }

    /* Overlay when menu is open */
    .main-navigation.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

    .hero-section {
        padding: 2.5rem 1rem;
        min-height: auto;
    }

    .hero-title-line {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-tagline-line {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-tagline-text {
        font-size: 1rem;
    }

    .hero-description-main {
        font-size: 1.1rem;
    }

    .hero-description-sub {
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-feature {
        padding: 1rem 0.75rem;
    }

    .hero-feature-icon {
        font-size: 1.5rem;
    }

    .hero-feature-title {
        font-size: 0.85rem;
    }

    .hero-feature-desc {
        font-size: 0.7rem;
    }

    .hero-decoration {
        display: none;
    }

    .content-section {
        padding: 1.5rem 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }

    .game-grid,
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    @media (min-width: 768px) and (max-width: 1024px) {
        .blog-posts {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }
    
    @media (min-width: 1025px) {
        .blog-posts {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .dendy-info-line {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .dendy-info-label {
        font-size: 0.85rem;
    }
    
    .dendy-info-value {
        font-size: 1.1rem;
    }
    
    .dendy-info-divider {
        font-size: 0.9rem;
        margin: 0 0.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem 1.5rem;
    }
    
    @media (min-width: 768px) and (max-width: 1200px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (min-width: 1201px) {
        .footer-container {
            grid-template-columns: repeat(5, 1fr);
        }
    }
    
    .footer-section {
        padding: 1.25rem;
    }
    
    .footer-section {
        padding: 1.25rem;
    }
    
    .footer-top-decoration,
    .footer-bottom-decoration {
        letter-spacing: 1rem;
        font-size: 1.2rem;
        padding: 0.75rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post-thumbnail {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 1.25rem;
    }
    
    .blog-post-title {
        font-size: 1.1rem;
    }
    
    .blog-view-all-button {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
}
