/* ===========================
   PRISON ESCAPE - Main Styles
   =========================== */

/* Reset & Variables */
:root {
    --primary-color: #ff4444;
    --secondary-color: #ff8800;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #999999;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --success-color: #00ff00;
    --danger-color: #ff0000;
    --warning-color: #ffaa00;
    
    --font-title: 'Bebas Neue', cursive;
    --font-main: 'Oswald', sans-serif;
    --font-mono: 'Courier Prime', monospace;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.8);
    --shadow-glow: 0 0 30px rgba(255,68,68,0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    position: relative;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.prison-bars {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.prison-bars span {
    width: 8px;
    height: 80px;
    background: linear-gradient(180deg, #666 0%, #333 100%);
    animation: barMove 0.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.prison-bars span:nth-child(1) { animation-delay: 0s; }
.prison-bars span:nth-child(2) { animation-delay: 0.1s; }
.prison-bars span:nth-child(3) { animation-delay: 0.2s; }
.prison-bars span:nth-child(4) { animation-delay: 0.3s; }
.prison-bars span:nth-child(5) { animation-delay: 0.4s; }

@keyframes barMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loader-text {
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 2px;
}

.brand-text .accent {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255,68,68,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--light-text);
}

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

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

.btn-order {
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: white !important;
    font-weight: 600;
}

.btn-order:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,68,68,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    transition: var(--transition);
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
}

.lang-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--border-color);
    color: var(--gray-text);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    font-family: var(--font-main);
    line-height: 1;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,68,68,0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255,68,68,0.3);
}

.lang-btn:hover::before {
    opacity: 1;
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255,68,68,0.6), 0 5px 15px rgba(0,0,0,0.5);
    transform: scale(1.15);
}

.lang-btn.active::before {
    opacity: 0;
}

.lang-btn.loading {
    opacity: 0.5;
    cursor: wait;
    animation: pulse 1s infinite;
}

/* Tooltip pour les drapeaux */
.lang-btn::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, bottom 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1000;
}

.lang-btn:hover::after {
    opacity: 1;
    bottom: -40px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10,10,10,0.3) 0%, 
        rgba(10,10,10,0.7) 50%, 
        rgba(10,10,10,0.95) 100%);
}

.hero-video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: white;
    text-shadow: 
        0.05em 0 0 rgba(255, 0, 0, .75),
        -0.025em -0.05em 0 rgba(0, 255, 0, .75),
        0.025em 0.05em 0 rgba(0, 0, 255, .75);
    animation: glitch 3s infinite;
}

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

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Typewriter */
.typewriter {
    overflow: hidden;
    border-right: .15em solid var(--primary-color);
    white-space: nowrap;
    margin: 0 auto;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0.5rem 0;
}

.stat-label {
    color: var(--gray-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gray-text);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll-down 2s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}
/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255,68,68,0.5);
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

/* Game Section */
.game-section {
    background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg));
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-text);
}

.lead-text .highlight {
    color: var(--light-text);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.video-wrapper {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder i:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Characters Section */
.characters-section {
    background: var(--darker-bg);
    position: relative;
}

.characters-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    color: var(--gray-text);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.characters-grid.hidden {
    display: none;
}

.character-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.character-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.character-image {
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.character-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255,68,68,0.2);
}

.character-image.psycho::before { content: '🔪'; }
.character-image.balance::before { content: '🐀'; }
.character-image.parrain::before { content: '👑'; }
.character-image.exflic::before { content: '🚔'; }
.character-image.brute::before { content: '💪'; }
.character-image.vereux::before { content: '💰'; }
.character-image.secouriste::before { content: '🏥'; }
.character-image.directeur::before { content: '📋'; }

.character-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: var(--light-text);
}

.character-ability {
    padding: 0 1rem 1rem;
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.danger-level {
    display: block;
    padding: 0.5rem 1rem 1rem;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.danger-level.high { color: var(--danger-color); }
.danger-level.medium { color: var(--warning-color); }
.danger-level.low { color: var(--success-color); }

/* Mechanics Section */
.mechanics-section {
    background:
        linear-gradient(180deg,
            rgba(5,5,5,0.95),
            rgba(10,10,10,0.90)
        ),
        url('assets/images/plateau.png') center/cover no-repeat fixed;
    position: relative;
}

.mechanics-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.mechanics-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    width: calc(50% - 50px);
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50px;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content ul li {
    padding: 0.5rem 0;
    color: var(--gray-text);
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Download Section */
.download-section {
    background: var(--darker-bg);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.download-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.download-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.download-card h3 {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.download-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
}

.btn-download:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    padding: 4rem 0;
}

.main-quote {
    text-align: center;
    position: relative;
}

.main-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.main-quote p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    margin: 2rem 0;
    color: var(--gray-text);
    font-weight: 300;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    background: var(--darker-bg);
}

.order-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.order-box {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.order-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255,68,68,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.order-box:hover::before {
    opacity: 1;
}

.order-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.order-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.order-features {
    list-style: none;
    margin-bottom: 2rem;
}

.order-features li {
    padding: 0.75rem 0;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-features li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text);
}

.shipping {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.btn-order-now {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-order-now:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.contact-info {
    text-align: center;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.contact-email:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .lang-selector {
        justify-content: center;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
        width: 100%;
        gap: 0.5rem;
    }

    .lang-btn {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .lang-btn::after {
        display: none; /* Hide tooltips on mobile */
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin: 0;
        margin-top: 60px;
    }

    .mechanics-timeline::before {
        left: 30px;
    }

    .timeline-icon {
        left: 30px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}