/* ==========================================================================
   MASTER DESIGN SYSTEM - MATOUŠ TLAMKA (MAJESTIC)
   ========================================================================== */
:root {
    --bg-white: #ffffff;
    --bg-marble: #f9f9fb; /* Jemný technický podklad */
    --bg-dark: #050505;
    
    --text-primary: #0f172a; /* Temná modrá/černá - autorita */
    --text-secondary: #475569;
    --text-light: #94a3b8;
    
    --gold: #C6930A;
    --gold-hover: #b08209;
    --gold-glow: #FF8C00;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Manrope', sans-serif;
    
    --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    /* Jemná textura šumu pro "papírový/mramorový" pocit */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* --- TYPOGRAFIE & KOMPONENTY --- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; color: var(--text-primary); line-height: 1.15; margin-bottom: 20px; }
.serif { font-style: italic; font-family: var(--font-serif); }
.text-gold { color: var(--gold); }

.label {
    display: block; font-family: var(--font-sans); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
    font-weight: 700; margin-bottom: 20px;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; position: relative; }
.section-padding { padding: 140px 0; }
.bg-marble { background-color: var(--bg-marble); border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }

/* --- PRELOADER (LÁVA) --- */
.lava-preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 9999; display: flex; justify-content: center; align-items: center;
    background: #000; overflow: hidden;
}
.lava-bg-layer {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(-45deg, #500000 0%, #FF4500 25%, #FFD700 50%, #FF4500 75%, #500000 100%);
    background-size: 400% 400%; animation: fire-flow 6s ease infinite; z-index: 1;
}
.lava-overlay-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 90%);
    z-index: 2; backdrop-filter: blur(3px);
}
.lava-content { position: relative; z-index: 10; text-align: center; display: flex; flex-direction: column; align-items: center; }
.preloader-logo-wrapper {
    width: 120px; height: 120px; position: relative; margin-bottom: 30px;
    animation: pulse-whole 2s infinite ease-in-out alternate;
}
.preloader-fire {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #b04a00, #FFD700, #b04a00);
    background-size: 200% 200%; animation: fire-flow 2s infinite linear;
}
.preloader-stencil { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; transform: scale(1.05); }
.loading-text-container { height: 30px; overflow: hidden; margin-bottom: 20px; position: relative; width: 300px; }
.loading-msg {
    display: block; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 4px; color: var(--gold); font-weight: 700; position: absolute;
    width: 100%; left: 0; opacity: 0; transform: translateY(20px); transition: 0.5s;
}
.loading-msg.active { opacity: 1; transform: translateY(0); }
.loading-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.loading-progress { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

/* --- NAVIGACE --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 1000;
    transition: padding 0.3s;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.img-logo-small { height: 45px; width: auto; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.link { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; color: var(--text-primary); text-decoration: none; position: relative; }
.link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: 0.3s; }
.link:hover::after { width: 100%; }

.btn-switch {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px;
    border: 1px solid var(--text-primary); border-radius: 2px;
    font-size: 0.75rem; text-transform: uppercase; font-weight: 700; text-decoration: none; color: var(--text-primary); transition: 0.3s;
}
.btn-switch:hover { background: var(--text-primary); color: #fff; }
.lang-switch { display: flex; gap: 10px; font-weight: 600; font-size: 0.8rem; color: #ccc; }
.lang-switch a { text-decoration: none; color: #999; }
.lang-switch a:hover { color: #000; }
.lang-switch .active { color: var(--gold); }

/* --- HERO SEKCE --- */
.hero-light {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding-top: 80px; position: relative;
    background: radial-gradient(circle at 50% 50%, #fff 0%, #f4f4f4 100%);
}
.hero-wrapper { display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2; }
.hero-subtitle { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-weight: 700; font-size: 0.9rem; margin-bottom: 20px; display: block; }
.hero-title { font-size: 5.5rem; margin-bottom: 30px; color: var(--text-primary); letter-spacing: -2px; }
.hero-desc { font-size: 1.3rem; max-width: 700px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 50px; }
.floating-logo-hero { width: 150px; opacity: 0.8; filter: drop-shadow(0 20px 40px rgba(198,147,10,0.15)); animation: pulse-whole 4s infinite alternate; }
.scroll-down { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; color: var(--text-light); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-down .line { width: 1px; height: 40px; background: var(--text-light); margin: 10px auto 0; }

/* --- PROFIL (MASTER) --- */
.grid-profile-master { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.photo-frame { position: relative; padding: 20px 0 0 20px; }
.profile-photo { width: 100%; border-radius: 2px; position: relative; z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.frame-border { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--gold); z-index: 1; transform: translate(-20px, -20px); }

.section-heading { font-size: 3.5rem; margin-bottom: 40px; }
.text-block p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 25px; }

.bio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    margin-top: 60px; padding-top: 40px; border-top: 1px solid #eee;
}
.bio-cell { display: flex; flex-direction: column; }
.bio-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 5px; }
.bio-value { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }

/* --- AXIOMY (Metodologie) --- */
.axioms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.axiom-card { 
    background: #fff; padding: 50px 30px; border: 1px solid transparent; transition: 0.4s;
    position: relative; overflow: hidden;
}
.axiom-card:hover { border-color: var(--gold); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.axiom-number { font-family: var(--font-serif); font-size: 3rem; color: rgba(198,147,10,0.15); position: absolute; top: 20px; right: 20px; }
.axiom-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.axiom-card p { font-size: 1rem; color: var(--text-secondary); }

/* --- PROJEKTY (Vertikální) --- */
.projects-vertical { display: flex; flex-direction: column; gap: 60px; }
.project-row {
    display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid #eee;
}
.project-row:last-child { border-bottom: none; }
.project-year { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.project-title { font-size: 2.2rem; margin-bottom: 0; }
.project-body p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 30px; }
.btn-link { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.btn-link:hover { color: var(--gold); }
.status-tag { display: inline-block; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; background: #f0f0f0; padding: 5px 10px; color: #999; }

/* --- INTEL (News) --- */
.intel-grid { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #ddd; }
.intel-item {
    display: grid; grid-template-columns: 200px 1fr; gap: 40px; padding: 40px 0;
    border-bottom: 1px solid #ddd; transition: 0.3s;
}
.intel-item:hover { background: #fff; padding-left: 20px; border-left: 3px solid var(--gold); }
.intel-date { font-weight: 700; color: var(--gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.intel-content h4 { font-size: 1.4rem; margin-bottom: 10px; }
.intel-content p { color: var(--text-secondary); margin-bottom: 0; }

/* ... zbytek souboru ... */

/* =========================================
   10. FILOZOFIE - FINAL STATIC FIX
   ========================================= */
.section-dark-fullscreen {
    background-color: #000000; /* Čistá černá */
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; color: #fff; z-index: 10;
}

.gateway-wrapper { 
    max-width: 800px; 
    width: 100%; 
    text-align: center; 
    z-index: 2; 
}

/* HLAVNÍ KONTEJNER LOGA */
.stencil-logo-wrapper {
    /* Pevné rozměry drží text na svém místě */
    width: 400px;
    height: 300px;
    margin: 0 auto 40px auto; /* Odstup od nadpisu pod logem */
    position: relative;
    overflow: hidden; 
    background-color: #000;
    
    /* ZDE JSME ODSTRANILI ANIMACI 'PULSE' - LOGO SE NEBUDE ZVĚTŠOVAT */
}

/* 1. VRSTVA: OHEŇ (VESPOD) */
.fire-background {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: 1;
    
    /* MAGMA EFEKT */
    background: linear-gradient(
        -45deg, 
        #500000 0%,   
        #FF4500 25%,  
        #FFD700 50%,  
        #FF4500 75%,  
        #500000 100%  
    );
    
    background-size: 400% 400%;
    /* Pouze láva se hýbe */
    animation: fire-flow 4s ease infinite; 
}

/* 2. VRSTVA: VYKROJENÝ OBRÁZEK (NAHOŘE) */
.stencil-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    object-fit: cover;
    /* Žádné stíny, žádné filtry, čistá černá */
}

/* ANIMACE OHNĚ */
@keyframes fire-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* TEXTY */
.gateway-title { font-size: 4.5rem; color: #fff; margin-bottom: 20px; }
.gateway-desc { color: #888; font-size: 1.3rem; margin-bottom: 60px; }
.btn-gold-outline { border: 1px solid #FF8C00; color: #FF8C00; padding: 20px 60px; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; }
.btn-gold-outline:hover { background: #FF8C00; color: #000; box-shadow: 0 0 40px rgba(255, 140, 0, 0.5); }

/* --- EPILOG & FOOTER --- */
.section-epilog { padding: 120px 0; background: #fff; text-align: center; }
.epilog-quote { font-family: var(--font-serif); font-size: 2rem; font-style: italic; color: #000; margin-bottom: 40px; display: block; max-width: 800px; margin-left: auto; margin-right: auto; }
.epilog-line { width: 60px; height: 3px; background: var(--gold); margin: 0 auto; }

.main-footer { padding: 80px 0 30px 0; background: #fff; }
.footer-grid { display: flex; flex-direction: column; align-items: center; gap: 50px; text-align: center; margin-bottom: 60px; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.contact-link { font-size: 1.8rem; font-family: var(--font-serif); font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 25px; text-decoration: none; transition: 0.3s; }
.contact-link:hover { color: var(--gold); }
.ig-link { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ig-link:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #eee; color: var(--text-light); font-size: 0.9rem; }

/* --- RESPONZIVITA (MOBIL) --- */
@media (max-width: 900px) {
    .container { padding: 0 25px; }
    .hero-title { font-size: 3.5rem; }
    .nav-links { display: none; }
    .nav-flex { justify-content: space-between; position: static; }
    .img-logo-small { height: 35px; width: auto; }
    .lang-switch { position: static; }
    .navbar { padding: 15px 0; background: rgba(255,255,255,0.98); }
    
    .grid-profile-master { grid-template-columns: 1fr; gap: 40px; }
    .photo-frame { padding: 0; }
    .frame-border { display: none; }
    .bio-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .axioms-grid { grid-template-columns: 1fr; }
    .project-row { grid-template-columns: 1fr; gap: 20px; text-align: left; }
    .intel-item { grid-template-columns: 1fr; gap: 10px; }
    .intel-date { margin-bottom: 5px; }
    
    .stencil-logo-wrapper { width: 280px; height: 210px; }
    .gateway-title { font-size: 3rem; }
    .epilog-quote { font-size: 1.5rem; }
}

/* POJISTKA VIDITELNOSTI */
.reveal-text, .reveal-img, .reveal-left, .reveal-right, .reveal-up { opacity: 1 !important; visibility: visible !important; transform: none !important; }

/* =========================================
   11. LAVA MODE (EN/DE CONSTRUCTION PAGE)
   ========================================= */

/* Třída pro body v EN/DE verzi - zablokuje scrollování */
body.lava-mode {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #000;
    font-family: var(--font-sans);
    position: fixed; /* Fixne celou stránku */
}

/* Pozadí přes celou obrazovku s efektem lávy */
.lava-fullscreen-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: 1;
    
    /* Stejný magma gradient jako v preloaderu */
    background: linear-gradient(
        -45deg, 
        #500000 0%,   
        #FF4500 25%,  
        #FFD700 50%,  
        #FF4500 75%,  
        #500000 100%  
    );
    background-size: 400% 400%;
    
    /* Pomalý, tekutý pohyb (používáme animaci definovanou výše v souboru) */
    animation: fire-flow 6s ease infinite;
}

/* Tmavý filtr přes lávu */
.lava-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Ztmaví lávu */
    z-index: 2;
    backdrop-filter: blur(8px); /* Silnější rozmazání pro čitelnost */
}

/* Centrovací kontejner */
.construction-centered {
    position: relative;
    z-index: 10;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Karta s textem (Dark Glassmorphism) */
.glass-box {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 60px;
    text-align: center;
    max-width: 600px;
    width: 90%; /* Pro mobily */
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    
    /* Animace příletu */
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 1.5s ease forwards;
    animation-delay: 0.2s;
}

.glass-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.glass-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
}

.glass-text {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Tlačítko na tmavém pozadí */
.btn-lava {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
}
.btn-lava:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(198, 147, 10, 0.6);
}

@keyframes fade-in-up {
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONZIVITA PRO LAVA PAGE */
@media (max-width: 768px) {
    .glass-box { padding: 40px 20px; }
    .glass-title { font-size: 2.2rem; }
    .glass-subtitle { letter-spacing: 1px; }
}

/* =========================================
   PRELOADER - FINAL FIX (STENCIL METODA)
   ========================================= */

/* HLAVNÍ OBAL LOGA */
.preloader-logo-wrapper {
    width: 140px;          /* Velikost loga */
    height: 140px;
    position: relative;    /* Abychom mohli vrstvit */
    margin: 0 auto 30px auto; /* Vycentrování v rodiči */
    
    /* TOTO ZAJISTÍ, ŽE LÁVA NIKDY NEVYTEČE VEN */
    overflow: hidden;      
    /* Pokud je logo čtvercové, nech to tak. Pokud kulaté, dej 50% */
    border-radius: 4px;    
    
    /* Celé logo pulzuje */
    animation: pulse-whole 2s infinite ease-in-out alternate;
}

/* 1. VRSTVA: LÁVA (JÁDRO) */
.lava-core {
    position: absolute;
    top: -50%; left: -50%; /* Posun, aby se mohla hýbat */
    width: 200%; height: 200%;
    z-index: 1; /* Vespod */
    
    /* TA LEPŠÍ LÁVA (Magma Gradient) */
    background: linear-gradient(
        -45deg, 
        #500000 0%,   
        #FF4500 25%,  
        #FFD700 50%,  
        #FF4500 75%,  
        #500000 100%  
    );
    background-size: 400% 400%; /* Fleky místo čar */
    animation: fire-flow 3s ease infinite; /* Rychlejší, žhavý pohyb */
}

/* 2. VRSTVA: VYKROJENÝ OBRÁZEK */
.stencil-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2; /* Nahoře */
    object-fit: cover; /* Vyplní celý prostor */
    
    /* Pojistka: malinko zvětšíme obrázek, aby zakryl hrany řezu */
    transform: scale(1.02); 
}

/* OPRAVA ZAROVNÁNÍ TEXTU */
.loading-text-container {
    height: 30px; 
    overflow: hidden; 
    margin-bottom: 20px; 
    position: relative; 
    width: 300px;
    
    /* TOTO OPRAVUJE POSUN DOLEVA: */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ANIMACE */
@keyframes fire-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-whole {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255,140,0,0.2)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(255,140,0,0.5)); }
}

/* =========================================
   NAVIGACE - ÚPRAVY
   ========================================= */
.nav-flex {
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF6600;
}

/* =========================================
   SEKCE TERRA CONQUEST (HERO - ÚVODNÍ)
   ========================================= */
#terra {
    background-color: #0a0a0a;
    /* Zajistí, že sekce bude přes celou obrazovku */
    min-height: 100vh;
    width: 100%;
    
    /* Flexbox pro perfektní vycentrování obsahu */
    display: flex;
    align-items: center; /* Vertikálně na střed */
    justify-content: center; /* Horizontálně na střed */
    
    position: relative;
    overflow: hidden;
    
    /* Oranžový pruh dole pro oddělení od filozofie */
    border-bottom: 4px solid #FF6600;
}

/* Pozadí hry (Animovaný/Jemný gradient) */
.terra-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Radiální gradient simulující horizont */
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

#terra .container {
    position: relative;
    z-index: 2;
    max-width: 1000px; /* Širší kontejner pro úvod */
}

/* Nadpis Hry - ZVĚTŠENÝ pro úvod */
#terra h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem; /* Větší než předtím */
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.4);
}

/* Popis Hry */
#terra p {
    font-family: 'Manrope', sans-serif;
    color: #ccc;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Malý oranžový text */
#terra p span {
    color: #FF6600;
    font-size: 0.9em;
    margin-top: 15px;
    display: block;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Tlačítko Spustit Invazi */
.btn-terra-launch {
    display: inline-block;
    padding: 20px 50px; /* Větší tlačítko */
    margin-top: 40px;
    border: 2px solid #FF6600;
    background: rgba(255, 102, 0, 0.05); /* Jemně podbarvené */
    color: #FF6600;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-terra-launch:hover {
    background: #FF6600;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    transform: translateY(-2px);
}

/* Responsivita pro mobily */
@media (max-width: 768px) {
    #terra h2 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    #terra p {
        font-size: 1rem;
        padding: 0 20px;
    }
    .btn-terra-launch {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}