:root {
    --attack-neon: #ccff00;    /* Žlto-zelená z plagátu */
    --attack-pink: #e6007e;    /* Výrazná ružová z plagátu */
    --attack-dark: #0b0c0d;    /* Hlboká tmavá */
    --attack-gray: #16191c;    /* Svetlejšia sivá na sekcie */
}

body { 
    background-color: var(--attack-dark); 
    color: #ffffff; 
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* --- DYNAMICKÁ HLAVIČKA (Navigácia s rezom) --- */
.navbar {
    background-color: rgba(11, 12, 13, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--attack-neon);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.navbar-brand img {
    max-height: 70px;
}


.nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff !important;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--attack-neon) !important;
}



/* --- HERO SEKCE S OBRÁZKOM V POZADÍ --- */
.hero-section {
    position: relative;
    min-height: 85vh;
    
    /* Sem vložíš cestu k tvojmu obrázku. 
       linear-gradient robí tmavý filter, aby bol biely text na fotke skvelo čitateľný */
    background: linear-gradient(rgba(11, 12, 13, 0.5), #0b0c0d), 
                url('../images/home2.jpg') center center / cover no-repeat;
                
    display: flex;
    align-items: center;
    padding: 100px 0;
}

/* --- FINÁLNA OPRAVA NÁPISU ZAŽI EXTRÉM --- */
.hero-title-stroke {
    color: #e6007e;
    font-size:60%; line-height:0.9;
}


/* Šikmý dizajnový prvok v pozadí (Asymetria) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 126, 0.15), rgba(204, 255, 0, 0.05));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--attack-neon);
    letter-spacing: 2px;
}

/* --- TLAČIDLÁ (Moderný Gradient) --- */
.btn-attack-gradient {
    background: linear-gradient(135deg, var(--attack-neon), #a2cb00);
    color: #000000 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px; /* Zaoblené dlhé tlačidlo */
    padding: 14px 35px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-attack-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 255, 0, 0.4);
}

.btn-attack-outline {
    border: 2px solid #ffffff;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 12px 35px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-attack-outline:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

/* --- PARAMETRE TRATE (Čisté, ploché predelové bloky) --- */
.param-box {
    background-color: rgba(22, 25, 28, 0.8);
    border-left: 4px solid var(--attack-pink);
    padding: 15px 25px;
    transition: border-color 0.2s;
}
.param-box:hover {
    border-left-color: var(--attack-neon);
}

/* --- SEKCE A KARTY --- */
.section-padding {
    padding: 80px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--attack-pink);
}

.card-race {
    background-color: var(--attack-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}


.card p {color:#a0a5aa;}


/* --- OPRAVA ČITATEĽNOSTI TEXTOV --- */
.hero-section p.text-muted, 
.param-box .text-muted {
    color: #b0b5b9 !important; /* Výrazne svetlejšia sivá pre unavené oči pretekárov */
}

.param-box .fw-bold {
    color: #ffffff; /* Zaistíme, že hlavné hodnoty svietia na bielo */
}

/* Ak tam máš menšie popisy ako (+2800m), takto ich zosvetlíš */
.param-box .text-muted-light {
    color: #a0a5aa;
    font-size: 0.85rem;
}


@media (min-width: 768px) { 
.mobile { display:none;}
 }

 @media (max-width: 767px) { 
.desktop { display:none;}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--attack-neon);
    letter-spacing: 2px;
}
.section-padding {
    padding:40px 0 0px;
}
.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.lead {
    font-size: 1rem;
}

.table {font-size: 0.7rem;}
.table th{padding: 5px;}
.table td{padding:5px;}

 }


