/* ==========================================
   SEVEN LOOP STUDIO - RETRO ARCADE LOFI
   ========================================== */

/* CSS Variables - Retro Color Palette */
:root {
    /* Background tones - warm CRT feel */
    --bg-dark: #0a0a12;
    --bg-medium: #12121f;
    --bg-light: #1a1a2e;
    --bg-card: #16162a;
    
    /* Accent colors - neon soft */
    --neon-pink: #ff6b9d;
    --neon-purple: #c77dff;
    --neon-blue: #72ddf7;
    --neon-green: #7ae582;
    --neon-yellow: #ffe066;
    --neon-orange: #ffb347;
    
    /* Text colors */
    --text-primary: #e8e8f0;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    
    /* Special effects */
    --glow-pink: 0 0 20px rgba(255, 107, 157, 0.5);
    --glow-purple: 0 0 20px rgba(199, 125, 255, 0.5);
    --glow-blue: 0 0 20px rgba(114, 221, 247, 0.5);
    
    /* Fonts */
    --font-pixel: 'Press Start 2P', monospace;
    --font-retro: 'VT323', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-retro);
    font-size: 18px;
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.3;
}

/* CRT Flicker Effect */
.crt-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.98; }
    50% { opacity: 1; }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.95) 0%, rgba(10, 10, 18, 0) 100%);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    color: var(--neon-purple);
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-pixel);
    font-size: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-links a {
    font-family: var(--font-pixel);
    font-size: 0.65rem;
    text-decoration: none;
    color: var(--text-secondary);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 80%, rgba(199, 125, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 40%),
        var(--bg-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--neon-green);
    background: rgba(122, 229, 130, 0.1);
    border: 1px solid var(--neon-green);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 5px rgba(122, 229, 130, 0.3); }
    50% { box-shadow: 0 0 20px rgba(122, 229, 130, 0.6); }
}

.hero-title {
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    font-family: var(--font-pixel);
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: 4px;
    line-height: 1.4;
}

.title-line.accent {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.highlight {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--neon-pink);
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.btn {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.7);
}

.btn-primary::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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.launch-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.countdown-date {
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 224, 102, 0.5);
}

/* Arcade Machine Visual */
.hero-visual {
    position: absolute;
    right: -100px;
    bottom: -50px;
    opacity: 0.15;
    transform: rotate(-15deg);
    pointer-events: none;
}

.arcade-machine {
    width: 300px;
    height: 450px;
    background: linear-gradient(180deg, #2a2a4a, #1a1a2e);
    border-radius: 20px 20px 10px 10px;
    position: relative;
    border: 3px solid var(--neon-purple);
}

.arcade-screen {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 200px;
    background: #000;
    border-radius: var(--radius-sm);
    border: 4px solid #333;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #001100, #002200);
}

.blink {
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    color: var(--neon-green);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.arcade-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
}

.joystick {
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, #333, #111);
    border-radius: 50% 50% 40% 40%;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn-arcade {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.btn-arcade.red {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #cc0000);
}

.btn-arcade.blue {
    background: radial-gradient(circle at 30% 30%, #72ddf7, #0066cc);
}

/* ==========================================
   SECTIONS COMMON STYLES
   ========================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: var(--font-pixel);
    font-size: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '◆';
    color: var(--neon-purple);
    margin: 0 var(--spacing-sm);
    font-size: 0.8em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
}

/* ==========================================
   CONCEPT SECTION
   ========================================== */
.concept {
    padding: var(--spacing-xl) 0;
    background: var(--bg-medium);
    position: relative;
}

.concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.concept-card {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 40px rgba(199, 125, 255, 0.15);
}

.concept-card:hover::before {
    transform: scaleX(1);
}

.concept-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.concept-card h3 {
    font-family: var(--font-pixel);
    font-size: 0.75rem;
    color: var(--neon-pink);
    margin-bottom: var(--spacing-sm);
}

.concept-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   GAMES SECTION
   ========================================== */
.games {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(114, 221, 247, 0.05) 0%, transparent 40%),
        var(--bg-dark);
}

.games-timeline {
    position: relative;
    margin-top: var(--spacing-lg);
}

.timeline-line {
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
    opacity: 0.3;
}

.game-card {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.game-date {
    width: 100px;
    text-align: right;
    flex-shrink: 0;
}

.date-day {
    display: block;
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    color: var(--neon-yellow);
}

.date-month {
    display: block;
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.date-year {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.game-content {
    flex: 1;
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.2);
    position: relative;
}

.game-content::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 30px;
    width: 12px;
    height: 12px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: var(--glow-purple);
}

.game-preview {
    width: 150px;
    height: 150px;
    background: var(--bg-medium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px dashed rgba(255, 107, 157, 0.3);
}

.game-gallery {
    position: relative;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(199, 125, 255, 0.4);
    border-style: solid;
    overflow: hidden;
}

.game-gallery .game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-gallery .game-img.active {
    opacity: 1;
}

.gallery-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dots .dot.active {
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
}

.mystery-box {
    text-align: center;
}

.question-mark {
    font-family: var(--font-pixel);
    font-size: 3rem;
    color: var(--neon-pink);
    animation: float 3s ease-in-out infinite;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-preview.locked {
    opacity: 0.5;
}

.lock-icon {
    font-size: 2rem;
}

.game-info {
    flex: 1;
}

.game-status {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    padding: 4px 8px;
    background: rgba(122, 229, 130, 0.2);
    color: var(--neon-green);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-xs);
}

.game-status.locked {
    background: rgba(106, 106, 128, 0.2);
    color: var(--text-muted);
}

.game-title {
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.game-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.game-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: rgba(114, 221, 247, 0.1);
    color: var(--neon-blue);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(114, 221, 247, 0.3);
}

.game-card.future {
    opacity: 0.6;
}

.privacy-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--neon-blue);
}

.games-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    border: 2px dashed rgba(199, 125, 255, 0.3);
    border-radius: var(--radius-md);
}

.games-cta p {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-medium);
}

.about-content {
    margin-top: var(--spacing-lg);
}

.about-story {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    border: 1px solid rgba(199, 125, 255, 0.2);
}

.tape-decoration {
    position: absolute;
    width: 60px;
    height: 25px;
    background: linear-gradient(135deg, rgba(255, 224, 102, 0.3), rgba(255, 224, 102, 0.1));
    transform: rotate(-5deg);
}

.tape-decoration.top-left {
    top: -10px;
    left: 20px;
}

.tape-decoration.top-right {
    top: -10px;
    right: 20px;
    transform: rotate(5deg);
}

.about-story h3 {
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    color: var(--neon-pink);
    margin-bottom: var(--spacing-md);
}

.about-story p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-section h3 {
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    color: var(--neon-purple);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.team-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--neon-purple);
}

.team-card.hiring {
    border-style: dashed;
}

.team-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.avatar-pixel {
    width: 100%;
    height: 100%;
    background: var(--bg-medium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.avatar-pixel.empty {
    border: 2px dashed var(--neon-green);
}

.avatar-pixel.empty span {
    font-size: 2rem;
    color: var(--neon-green);
}

/* Pixel art developer character */
.pixel-dev {
    width: 50px;
    height: 50px;
    background: 
        linear-gradient(90deg, transparent 40%, var(--neon-purple) 40%, var(--neon-purple) 60%, transparent 60%),
        linear-gradient(180deg, 
            transparent 10%,
            var(--neon-pink) 10%, var(--neon-pink) 30%,
            var(--text-primary) 30%, var(--text-primary) 50%,
            var(--neon-blue) 50%, var(--neon-blue) 80%,
            var(--bg-dark) 80%
        );
    border-radius: 5px 5px 0 0;
    position: relative;
}

.pixel-dev::before {
    content: '◉ ◉';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    letter-spacing: 5px;
    color: var(--bg-dark);
}

.team-info h4 {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
}

.team-status {
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.team-status.online {
    background: rgba(122, 229, 130, 0.2);
    color: var(--neon-green);
}

.team-status.hiring {
    background: rgba(255, 179, 71, 0.2);
    color: var(--neon-orange);
    animation: pulse-hiring 2s ease-in-out infinite;
}

@keyframes pulse-hiring {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(circle at 90% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 40%),
        var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-form {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.2);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--bg-medium);
    border: 1px solid rgba(199, 125, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-retro);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(199, 125, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.2);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--neon-purple);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
}

.info-card h4 {
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--neon-pink);
    margin-bottom: 4px;
}

.info-card p {
    color: var(--text-secondary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--bg-medium);
    border-top: 1px solid rgba(199, 125, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-family: var(--font-pixel);
    font-size: 0.8rem;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--neon-purple);
}

.footer-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-lg);
    opacity: 0.1;
}

.ghost {
    font-size: 4rem;
    animation: ghost-float 4s ease-in-out infinite;
}

.ghost:nth-child(2) {
    animation-delay: 0.5s;
}

.ghost:nth-child(3) {
    animation-delay: 1s;
}

@keyframes ghost-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Audio Toggle */
.audio-toggle {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-toggle:hover {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.audio-icon {
    font-size: 1.2rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(199, 125, 255, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .game-card {
        flex-direction: column;
    }
    
    .game-date {
        width: auto;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: var(--spacing-xs);
        margin-left: 40px;
    }
    
    .date-day, .date-month, .date-year {
        display: inline;
    }
    
    .game-content {
        flex-direction: column;
        margin-left: 40px;
    }
    
    .game-content::before {
        left: -30px;
    }
    
    .game-preview {
        width: 100%;
        height: 120px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .info-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 0.5rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ==========================================
   ANIMATIONS & SPECIAL EFFECTS
   ========================================== */

/* Fade in on scroll (to be activated by JS) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch effect for titles */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: var(--neon-blue);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-1px, 1px); }
    80% { clip-path: inset(80% 0 0 0); transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    25% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -2px); }
    50% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
    75% { clip-path: inset(70% 0 10% 0); transform: translate(1px, -1px); }
}

/* Typing effect cursor */
.typing-cursor::after {
    content: '█';
    animation: cursor-blink 0.8s step-end infinite;
    color: var(--neon-green);
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Noise texture overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
