/* --- NAČTENÍ FONTŮ PŘÍMO DO CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@400;500;600;700&display=swap');

/* ========================================================
   ZÁKLADNÍ PROMĚNNÉ A RESET
   ======================================================== */
:root {
    --c-primary: #292927;
    --c-primary-hover: #1a1a19;
    --c-accent: #fdec01;
    --c-bg: #f5f5f5;
    --c-white: #ffffff;
    --c-text: #222222;
    --c-border: #e0e0e0;
    
    --f-heading: 'Oswald', sans-serif; 
    --f-body: 'Barlow', sans-serif;    
}

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

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

body {
    font-family: var(--f-body);
    background-color: var(--c-bg);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    text-transform: uppercase;
    font-weight: 600; 
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================================
   HLAVIČKA, UTILITY BAR A NAVIGACE
   ======================================================== */
.site-header {
    background-color: transparent; 
    position: sticky;
    top: 0; 
    z-index: 1000;
    transition: top 0.4s ease;
}

.utility-bar {
    background-color: #f0f0f0;
    color: var(--c-primary);
    font-size: 14px; 
    font-family: var(--f-heading);
    font-weight: 500;
    letter-spacing: 1px;
}

.utility-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.utility-left { display: flex; align-items: center; }
.utility-logo-link { display: flex; align-items: center; margin-right: 15px; }
.utility-logo-lfa { height: 16px; width: auto; }
.utility-logo-facr { height: 28px; width: auto; }
.invert-logo { filter: invert(1); }

.utility-divider { width: 1px; height: 20px; background: rgba(0,0,0,0.2); margin-right: 15px; margin-left: 5px; }

.utility-dropdown { position: relative; display: flex; align-items: center; height: 40px; margin-right: 20px; }
.utility-dropdown-toggle { display: flex; align-items: center; gap: 8px; color: var(--c-primary); text-decoration: none; transition: color 0.2s; }
.utility-dropdown-toggle:hover { color: #000000; }
.utility-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--c-white); box-shadow: 0 4px 15px rgba(0,0,0,0.1); min-width: 220px; padding: 10px 0; border-top: 3px solid var(--c-accent); z-index: 1200; }
.utility-dropdown:hover .utility-dropdown-menu { display: block; }
.utility-dropdown-menu a { display: block; padding: 8px 20px; color: var(--c-primary); font-family: var(--f-body); text-decoration: none; font-weight: 500; font-size: 15px; transition: background-color 0.2s; }
.utility-dropdown-menu a:hover { background-color: var(--c-bg); }

.utility-right { display: flex; align-items: center; gap: 15px; }
.utility-right a { display: flex; align-items: center; color: var(--c-primary); text-decoration: none; transition: color 0.2s; }
.utility-icon { width: 18px; height: 18px; }
.utility-right a:hover { color: #000000; }
.utility-right a.highlight { background-color: var(--c-accent); color: var(--c-primary); padding: 0 15px; line-height: 40px; margin-left: 5px; font-weight: 600; transition: background-color 0.2s; }
.utility-right a.highlight:hover { background-color: #e5d500; }

.main-nav-bar { background-color: var(--c-primary); border-bottom: 4px solid var(--c-accent); transition: background-color 0.4s ease, border-color 0.4s ease; }
.nav-inner { display: flex; justify-content: flex-end; align-items: center; height: 90px; position: relative; transition: height 0.4s ease; }

.logo { position: absolute; top: 0; left: 30px; background-color: var(--c-primary); height: 130px; padding: 15px; border-bottom: 4px solid var(--c-accent); z-index: 1100; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.logo img { height: 100%; width: auto; transition: all 0.4s ease; }

.desktop-nav { display: flex; gap: 25px; margin-right: auto; margin-left: 220px; }
.nav-item { position: relative; display: flex; align-items: center; height: 90px; transition: height 0.4s ease; }
.nav-link { font-family: var(--f-heading); color: var(--c-white); text-decoration: none; font-weight: 500; font-size: 18px; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-item:hover .nav-link { color: var(--c-accent); }

.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--c-white); box-shadow: 0 4px 15px rgba(0,0,0,0.1); min-width: 220px; padding: 10px 0; border-top: 3px solid var(--c-accent); }
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 12px 20px; color: var(--c-primary); font-family: var(--f-heading); text-decoration: none; font-weight: 500; font-size: 16px; letter-spacing: 0.5px; transition: background-color 0.2s; }
.dropdown-menu a:hover { background-color: var(--c-accent); }

.nav-right { display: flex; align-items: center; gap: 25px; }
.search-btn, .hamburger-btn { background: none; border: none; color: var(--c-white); cursor: pointer; transition: color 0.2s; }
.search-btn:hover, .hamburger-btn:hover { color: var(--c-accent); }
.hamburger-btn { display: none; }
.nav-divider { width: 1px; height: 25px; background: rgba(255,255,255,0.3); }
.fanshop-link { font-family: var(--f-heading); color: var(--c-accent); text-decoration: none; font-weight: 600; font-size: 18px; letter-spacing: 1px; }

/* Scroll Efekt Hlavičky */
.site-header.scrolled { top: -40px; }
.site-header.scrolled .main-nav-bar { background-color: rgba(41, 41, 39, 0.95); backdrop-filter: blur(8px); border-bottom: 2px solid var(--c-accent); }
.site-header.scrolled .nav-inner { height: 70px; }
.site-header.scrolled .nav-item { height: 70px; }
.site-header.scrolled .logo { height: 70px; padding: 5px 15px; background-color: transparent; border-bottom-color: transparent; }

/* Mobilní Navigace */
.mobile-nav { display: none; background-color: var(--c-primary); padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.active { display: block; }
.mobile-nav a { display: block; color: var(--c-white); font-family: var(--f-heading); font-size: 20px; text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ========================================================
   HOMEPAGE KOMPONENTY
   ======================================================== */
.hero-carousel { position: relative; height: 650px; display: flex; align-items: center; overflow: hidden; }
.carousel-bgs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.carousel-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; }
.carousel-bg.active { opacity: 1; }
.carousel-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.carousel-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(41,41,39,0.95) 0%, rgba(41,41,39,0.7) 40%, rgba(0,0,0,0.2) 100%); z-index: 2; }
.carousel-content { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 120px; width: 100%; }
.carousel-main-info { max-width: 700px; }
.carousel-main-info h1 { font-size: 64px; color: var(--c-white); margin-bottom: 30px; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); line-height: 1.1; }

.btn-sharp { display: inline-flex; justify-content: center; align-items: center; border: 2px solid var(--c-accent); background: rgba(0,0,0,0.4); color: var(--c-accent); padding: 12px 35px; font-family: var(--f-heading); font-size: 24px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; letter-spacing: 1px; line-height: 1; }
.btn-sharp:hover { background: var(--c-accent); color: var(--c-primary); }

.carousel-stack { width: 450px; display: flex; flex-direction: column; }
.stack-item { position: relative; background: rgba(26,26,25,0.8); padding: 20px 25px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--c-white); transition: background-color 0.3s ease; }
.stack-item:last-child { border-bottom: none; }
.stack-item.active { border-bottom-color: transparent; }

@keyframes fillProgress { 0% { height: 0%; } 100% { height: 100%; } }
.progress-bg { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background-color: var(--c-accent); z-index: 1; }
.stack-item.active .progress-bg { animation: fillProgress 4s linear forwards; }
.stack-item-inner { position: relative; z-index: 2; }

.stack-meta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.4); padding: 3px 12px 1px 12px; font-family: var(--f-heading); font-size: 16px; margin-bottom: 10px; color: var(--c-white); }
.stack-meta .sep { color: var(--c-accent); font-weight: bold; }
.stack-item h3 { font-size: 26px; margin: 0; line-height: 1.1; color: var(--c-white); }

.stack-item.active .stack-meta { animation: textDarkTop 4s linear forwards; }
.stack-item.active .stack-meta .sep { animation: sepDarkTop 4s linear forwards; }
.stack-item.active h3 { animation: textDarkBottom 4s linear forwards; }

@keyframes textDarkTop { 0%, 20% { color: var(--c-white); border-color: rgba(255,255,255,0.4); } 40%, 100% { color: var(--c-primary); border-color: var(--c-primary); } }
@keyframes sepDarkTop { 0%, 20% { color: var(--c-accent); } 40%, 100% { color: var(--c-primary); } }
@keyframes textDarkBottom { 0%, 45% { color: var(--c-white); } 85%, 100% { color: var(--c-primary); } }

/* ZÁPASY NA HOMEPAGE */
.matches-overlap { position: relative; margin-top: -60px; z-index: 10; }
.matches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.match-card { background: var(--c-primary); color: var(--c-white); padding: 25px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.2); border-top: 3px solid var(--c-accent); }
.match-info { display: flex; flex-direction: column; gap: 5px; margin-bottom: 20px; }
.match-comp { font-size: 16px; font-weight: bold; text-transform: uppercase; color: var(--c-accent); font-family: var(--f-heading); letter-spacing: 0.5px;}
.match-date { font-size: 13px; opacity: 0.8; }

.match-score-row { display: grid !important; grid-template-columns: 1fr auto 1fr !important; align-items: center !important; gap: 10px !important; width: 100% !important; margin-bottom: 20px !important; }
.match-team-block { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: flex-start !important; width: 100% !important; min-height: 80px; }
.match-team-logo { display: flex; justify-content: center; align-items: center; height: 75px; }
.match-team-logo img, .match-team-logo .dummy-logo-souper { max-height: 75px; max-width: 75px; object-fit: contain; }
.match-team-name { font-family: var(--f-heading); font-size: 13px; color: var(--c-white); text-transform: uppercase; text-align: center; margin-top: 5px; word-break: break-word; }
.score { font-family: var(--f-heading); font-size: 38px; color: var(--c-accent); line-height: 1; text-align: center; padding: 0 10px; white-space: nowrap; }

.btn-match, .btn-match-solid { display: inline-flex; justify-content: center; align-items: center; padding: 8px 25px; text-decoration: none; transition: all 0.3s; font-family: var(--f-heading); font-size: 22px; letter-spacing: 1px; line-height: 1; }
.btn-match { border: 2px solid var(--c-white); color: var(--c-white); }
.btn-match:hover { border-color: var(--c-accent); color: var(--c-accent); }
.btn-match-solid { background: var(--c-accent); border: 2px solid var(--c-accent); color: var(--c-primary); }
.btn-match-solid:hover { background: var(--c-white); border-color: var(--c-white); color: var(--c-primary); }

.card-toggles { display: flex; justify-content: center; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); width: 100%; }
.btn-slot-toggle { background-color: transparent !important; color: var(--c-accent) !important; border: 1px solid rgba(255,255,255,0.2) !important; padding: 6px 16px; font-size: 11px; font-family: var(--f-heading) !important; font-weight: 800; cursor: pointer; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 1px; }
.btn-slot-toggle:hover { background-color: rgba(255,255,255,0.05) !important; border-color: var(--c-accent) !important; color: var(--c-accent) !important; }
.btn-slot-toggle.active { background-color: var(--c-accent) !important; color: var(--c-primary) !important; border-color: var(--c-accent) !important; }

/* ZPRÁVY A TABULKA (HP) */
.news-section { padding: 60px 0; }
.section-title { color: var(--c-primary); font-size: 48px; margin-bottom: 30px; }
.news-main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-bottom: 30px; align-items: stretch; }
.main-article { position: relative; display: block; height: 100%; min-height: 450px; overflow: hidden; }
.main-article img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.main-article:hover img { transform: scale(1.05); }
.main-article-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(transparent, rgba(41,41,39,0.95)); color: var(--c-white); z-index: 2; }
.main-article-content h3 { font-size: 42px; margin-top: 10px; }

.badge { background: var(--c-accent); color: var(--c-primary); padding: 6px 15px; font-family: var(--f-heading); font-size: 18px; display: inline-flex; justify-content: center; align-items: center; line-height: 1; margin-bottom: 15px; letter-spacing: 1px; }

.table-card { background: var(--c-primary); color: var(--c-white); padding: 20px; display: flex; flex-direction: column; }
.table-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; margin-bottom: 15px; }
.table-header h4 { font-size: 28px; margin: 0; color: var(--c-accent); font-family: var(--f-heading); font-weight: normal; letter-spacing: 0.5px; }
.table-header-stats { display: flex; gap: 15px; font-size: 13px; font-weight: bold; color: #94a3b8; }
.table-header-stats span { width: 30px; text-align: center; }
.table-header-stats span:last-child { color: var(--c-white); }
.table-body { flex-grow: 1; }

.hp-row { display: flex; align-items: center; padding: 8px 10px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; box-sizing: border-box; }
.hp-row:last-child { border-bottom: none; }
.hp-left { display: flex; align-items: center; gap: 10px; flex-grow: 1; }
.hp-pos { width: 25px; opacity: 0.6; font-weight: bold; flex-shrink: 0; color: var(--c-white); }
.hp-team { font-weight: 500; color: var(--c-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-right { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.hp-z { width: 30px; text-align: center; opacity: 0.6; color: var(--c-white); }
.hp-b { width: 30px; text-align: center; font-weight: bold; color: var(--c-white); }
.hp-row.highlight-team { background-color: var(--c-accent); border-radius: 2px; border-bottom: none; }
.hp-row.highlight-team .hp-pos, .hp-row.highlight-team .hp-team, .hp-row.highlight-team .hp-z, .hp-row.highlight-team .hp-b { color: var(--c-primary); opacity: 1; font-weight: 700; }
.table-link { font-family: var(--f-heading); color: var(--c-accent); text-decoration: none; font-size: 20px; margin-top: 15px; display: block; letter-spacing: 0.5px;}

.news-sub-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.sub-article { display: block; background: var(--c-white); text-decoration: none; color: var(--c-text); overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-bottom: 4px solid transparent; transition: border-color 0.3s; }
.sub-article:hover { border-bottom-color: var(--c-accent); }
.sub-article img { display: block; width: 100%; height: 220px; object-fit: cover; }
.sub-article-body { padding: 20px; }
.sub-article h4 { font-size: 24px; margin: 10px 0; }
.date { color: #888; font-size: 14px; }
.btn-center { text-align: center; }

.btn-solid-dark { display: inline-flex; justify-content: center; align-items: center; background: var(--c-primary); color: var(--c-white); padding: 12px 30px; text-decoration: none; transition: background-color 0.3s; font-family: var(--f-heading); font-size: 24px; letter-spacing: 1px; line-height: 1; }
.btn-solid-dark:hover { background: var(--c-accent); color: var(--c-primary); }

/* PARTNEŘI */
.partners-section { padding: 60px 0 120px 0; text-align: center; background-color: #eaeaec; }
.partners-section .section-title { margin-bottom: 50px; }
.partner-tier { margin-bottom: 50px; }
.partner-tier h3 { font-size: 22px; color: var(--c-primary); opacity: 0.6; margin-bottom: 25px; letter-spacing: 1px; }
.partner-logos { display: flex; justify-content: center; align-items: stretch; gap: 20px; flex-wrap: wrap; }
.partner-box { background-color: var(--c-white); border: 2px solid #dcdcdc; display: flex; justify-content: center; align-items: center; text-decoration: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.partner-box:hover { border-color: var(--c-accent); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.partner-box img { object-fit: contain; }
.partner-logos.large .partner-box { width: calc(50% - 10px); max-width: 450px; height: 180px; padding: 30px; }
.partner-logos.large img { max-height: 100px; max-width: 100%; }
.partner-logos.medium .partner-box { width: calc(50% - 10px); max-width: 400px; height: 150px; padding: 25px; }
.partner-logos.medium img { max-height: 80px; max-width: 100%; }
.partner-logos.small .partner-box { width: calc(33.333% - 14px); max-width: 320px; height: 130px; padding: 20px; }
.partner-logos.small img { max-height: 65px; max-width: 100%; }

/* ========================================================
   VNITŘNÍ STRÁNKY & KOMPONENTY
   ======================================================== */
.subpage-header { background-color: #f0f0f0; padding: 60px 0 40px; border-bottom: 2px solid var(--c-accent); }
.subpage-header h1 { font-size: 56px; color: var(--c-primary); margin: 0; }
.subpage-content { padding: 60px 20px 100px 20px; }
.subpage-title { font-size: 32px; color: var(--c-primary); margin-bottom: 25px; border-bottom: 2px solid var(--c-accent); display: inline-block; padding-bottom: 5px; }

.text-center { text-align: center; }
.text-center .subpage-title { display: inline-block; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }
.pb-100 { padding-bottom: 100px; }

.text-content p { font-size: 18px; line-height: 1.7; margin-bottom: 20px; color: #444; }

.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.contact-info-block { margin: 20px 0; font-size: 16px; line-height: 1.6; }
.contact-link { color: var(--c-primary); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--c-accent); transition: color 0.3s, border-color 0.3s; }
.contact-link:hover { color: #000; border-color: #000; }
.contact-boxes { margin-top: 30px; }
.contact-box { display: flex; align-items: center; border: 1px solid var(--c-border); padding: 15px 25px; margin-bottom: 15px; background-color: var(--c-white); }
.contact-box .c-icon { width: 32px; height: 32px; margin-right: 20px; color: #888; }
.contact-box .c-text small { color: #888; font-weight: bold; letter-spacing: 1px; }
.contact-box .c-text strong { font-size: 18px; color: var(--c-primary); }

.dark-card { background-color: var(--c-primary); color: var(--c-white); padding: 30px; border-radius: 4px; }
.dark-card h3 { font-family: var(--f-heading); font-size: 28px; color: var(--c-accent); margin-bottom: 20px; letter-spacing: 1px; }
.dark-card p { opacity: 0.8; margin-bottom: 15px; }

.social-row { display: flex; align-items: center; background: rgba(255,255,255,0.05); padding: 15px; color: var(--c-white); text-decoration: none; margin-bottom: 10px; border-left: 3px solid var(--c-accent); transition: background 0.3s; }
.social-row:hover { background: rgba(255,255,255,0.1); }
.social-row .s-icon { display: inline-block; width: 20px; height: 20px; margin-right: 12px; color: var(--c-accent); }
.social-note { font-size: 14px; margin-top: 15px; color: #ccc; }
.accent-link { color: var(--c-accent); text-decoration: none; font-weight: 600; }
.accent-link:hover { text-decoration: underline; }

.billing-card { background-color: #f9f9f9; padding: 30px; border: 1px solid var(--c-border); border-left: 4px solid var(--c-primary); }
.billing-card h3 { font-family: var(--f-heading); font-size: 24px; margin-bottom: 15px; }
.billing-card p { margin-bottom: 8px; font-size: 15px; }

.map-container iframe { border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.value-card { background: var(--c-white); padding: 40px 30px; border: 1px solid var(--c-border); text-align: center; }
.v-icon { width: 48px; height: 48px; margin: 0 auto 15px auto; color: #888; }
.value-card h3 { font-size: 24px; margin-bottom: 15px; color: var(--c-primary); }
.value-card p { color: #666; }

.btn-solid-light { display: inline-flex; justify-content: center; align-items: center; background: var(--c-white); color: var(--c-primary); padding: 12px 30px; text-decoration: none; transition: background-color 0.3s; font-family: var(--f-heading); font-size: 22px; letter-spacing: 1px; line-height: 1; }
.btn-solid-light:hover { background: var(--c-accent); }

.table-responsive { overflow-x: auto; }
.club-table { width: 100%; border-collapse: collapse; background: var(--c-white); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.club-table th { background-color: var(--c-primary); color: var(--c-white); text-align: left; padding: 18px 20px; text-transform: uppercase; font-family: var(--f-heading); font-size: 22px; letter-spacing: 1px; border-bottom: 3px solid var(--c-accent); }
.club-table td { padding: 15px 20px; border-bottom: 1px solid var(--c-border); color: #333; }
.club-table tbody tr:nth-child(even) { background-color: #f9f9f9; }
.club-table tbody tr:hover { background-color: #fdfce3; }
.club-table tbody tr.table-divider td { background-color: var(--c-primary) !important; color: var(--c-accent); text-align: center; font-family: var(--f-heading); font-size: 20px; letter-spacing: 2px; padding: 15px 20px; border-top: 4px solid var(--c-accent); }

/* PATIČKA */
.site-footer { background: var(--c-primary); color: var(--c-white); margin-top: 0; border-top: 6px solid var(--c-accent); position: relative; }
.footer-overlap-logo { position: absolute; top: -110px; left: 50%; transform: translateX(-50%); z-index: 10; }
.footer-overlap-logo img { height: 220px; width: auto; filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5)); }
.footer-hashtags-row { display: flex; justify-content: center; align-items: center; gap: 280px; padding-top: 50px; }
.footer-hashtag { font-family: var(--f-heading); font-size: 52px; font-weight: 600; color: var(--c-white); letter-spacing: 2px; }
.footer-main-content { display: flex; justify-content: space-between; padding: 70px 0 80px 0; }
.footer-col { flex: 1; max-width: 250px; }
.footer-col h3 { font-family: var(--f-heading); font-size: 26px; color: var(--c-white); margin-bottom: 30px; letter-spacing: 1px; }
.footer-col a { display: block; color: var(--c-white); text-decoration: none; margin-bottom: 15px; font-size: 16px; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--c-accent); }
.contact-col .footer-socials { display: flex; gap: 20px; margin-bottom: 35px; }
.contact-col .footer-socials a { display: inline-block; opacity: 1; margin-bottom: 0; }
.contact-col .utility-icon { width: 28px; height: 28px; color: var(--c-white); transition: color 0.2s; }
.contact-col .utility-icon:hover { color: var(--c-accent); }
.footer-contact-info p { color: var(--c-white); opacity: 0.7; font-size: 16px; margin-bottom: 12px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; text-align: center; }
.footer-bottom p { font-size: 16px; opacity: 0.5; font-family: var(--f-body); }

/* HISTORIE KLUBU */
.history-vertical-timeline { max-width: 900px; margin: 60px auto; position: relative; padding-left: 120px; }
.history-vertical-timeline::before { content: ''; position: absolute; top: 0; left: 40px; width: 4px; height: 100%; background-color: var(--c-accent); }
.history-v-item { position: relative; margin-bottom: 60px; }
.history-v-item:last-child { margin-bottom: 0; }
.history-v-year { position: absolute; left: -120px; top: 15px; font-family: var(--f-heading); font-size: 42px; font-weight: 700; color: var(--c-primary); background-color: var(--c-bg); padding: 10px 0; width: 100px; text-align: center; line-height: 1; }
.history-v-content { 
    background-color: var(--c-primary); 
    color: var(--c-white); 
    border-left: 4px solid var(--c-accent); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    padding: 30px; 
    border-radius: 4px;
}
.history-v-content h3 { 
    font-family: var(--f-heading);
    font-size: 28px;
    color: var(--c-accent);
    margin-bottom: 20px;
    letter-spacing: 1px;
    margin-top: 0; 
}
.history-v-content p { 
    color: var(--c-white);
    opacity: 0.8;
    margin-bottom: 15px; 
}

/* FANOUŠCI */
.fans-hero { background-color: var(--c-primary); padding: 100px 0; position: relative; overflow: hidden; color: var(--c-white); border-bottom: 5px solid var(--c-accent); }
.fans-hero-content { position: relative; z-index: 2; max-width: 800px; }
.fans-hero h1 { font-size: 64px; color: var(--c-accent); margin-bottom: 20px; }
.fans-hero p { font-size: 20px; line-height: 1.6; margin-bottom: 30px; opacity: 0.9; }
.fans-hero-btns { display: flex; gap: 20px; }
.fans-hero-watermark { position: absolute; right: -50px; bottom: -80px; font-family: var(--f-heading); font-size: 300px; font-weight: 700; color: rgba(255,255,255,0.03); z-index: 1; line-height: 1; pointer-events: none; }
.fans-stats-bar { background-color: var(--c-white); padding: 40px 0; border-bottom: 1px solid var(--c-border); }
.fans-stats-inner { display: flex; justify-content: space-around; text-align: center; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-family: var(--f-heading); font-size: 56px; font-weight: 700; color: var(--c-primary); line-height: 1; }
.stat-label { font-size: 14px; font-weight: bold; color: #888; letter-spacing: 1px; margin-top: 5px; }
.fans-community-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 80px 20px; align-items: center; }
.fc-text h2 { font-size: 42px; color: var(--c-primary); margin-bottom: 20px; }
.fc-text p { font-size: 18px; line-height: 1.7; margin-bottom: 15px; color: #444; }
.fc-image { position: relative; }
.fc-image img { width: 100%; height: 400px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.fc-image-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(41, 41, 39, 0.9); color: var(--c-white); padding: 15px 20px; font-family: var(--f-heading); font-size: 20px; letter-spacing: 1px; }
.fans-region-section { background-color: var(--c-white); padding: 60px 20px; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.fans-region-section h3 { font-size: 32px; color: var(--c-primary); margin-bottom: 20px; }
.fans-region-section p { font-size: 18px; line-height: 1.7; color: #555; }
.fans-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.f-value-card { background: var(--c-white); padding: 30px 20px; border: 1px solid var(--c-border); border-top: 4px solid var(--c-primary); }
.f-value-card:hover { border-top-color: var(--c-accent); }
.f-value-card svg { width: 40px; height: 40px; color: var(--c-primary); margin-bottom: 15px; }
.f-value-card h4 { font-size: 20px; color: var(--c-primary); margin-bottom: 10px; }
.f-value-card p { font-size: 14px; color: #666; }
.fans-respect-section { background-color: var(--c-primary); color: var(--c-white); padding: 80px 20px; }
.badge-outline { background: transparent; color: var(--c-accent); border: 1px solid var(--c-accent); }
.respect-box { border: 1px solid rgba(255,255,255,0.2); padding: 40px; margin-top: 30px; margin-bottom: 40px; }
.respect-box p { font-size: 18px; line-height: 1.7; margin-bottom: 15px; color: rgba(255,255,255,0.9); }
.respect-pillars { display: flex; justify-content: center; gap: 30px; max-width: 900px; margin: 0 auto; }
.r-pillar { flex: 1; background: rgba(255,255,255,0.05); padding: 25px 20px; border-bottom: 3px solid var(--c-accent); }
.r-pillar h4 { color: var(--c-accent); font-size: 20px; margin-bottom: 10px; }
.r-pillar p { font-size: 14px; color: rgba(255,255,255,0.7); }
.btn-outline-dark { display: inline-block; padding: 12px 30px; border: 2px solid var(--c-primary); color: var(--c-primary); text-decoration: none; font-weight: 600; transition: all 0.3s; }
.btn-outline-dark:hover { background: var(--c-primary); color: var(--c-white); }
.tour-de-hodolany-box { background-color: var(--c-primary); padding: 40px; color: var(--c-white); border-left: 5px solid var(--c-accent); text-align: left; }
.tour-de-hodolany-box h3 { font-family: var(--f-heading); font-size: 32px; color: var(--c-accent); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* MLÁDEŽ */
.youth-teams-container { width: 100%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; align-items: start; }
.youth-category-card { background-color: var(--c-white); border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; }
.youth-category-header { background-color: var(--c-primary); color: var(--c-white); padding: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; border-top: 4px solid var(--c-accent); position: relative; }
.youth-category-header h2 { font-size: 22px; margin-bottom: 0; color: var(--c-accent); letter-spacing: 1px; padding-right: 80px; }
.youth-league-name { font-size: 13px; color: rgba(255,255,255,0.7); font-family: var(--f-body); line-height: 1.3; }
.youth-match-count { background: rgba(255,255,255,0.1); padding: 6px 10px; border-radius: 4px; font-family: var(--f-heading); font-size: 14px; letter-spacing: 0.5px; position: absolute; top: 20px; right: 20px; white-space: nowrap; }
.youth-match-list { display: flex; flex-direction: column; }
.youth-match-row { display: flex; align-items: center; padding: 15px 15px; border-bottom: 1px solid var(--c-border); transition: background-color 0.2s; text-decoration: none; color: var(--c-text); min-height: 75px; }
.youth-match-row:last-child { border-bottom: none; }
.youth-match-row:hover { background-color: #fdfce3; }
.ym-datetime { flex: 0 0 80px; font-size: 12px; color: #666; line-height: 1.4; border-right: 1px solid var(--c-border); padding-right: 10px; margin-right: 10px; white-space: nowrap; }
.ym-datetime strong { color: var(--c-primary); font-size: 13px; }
.ym-teams { flex: 1; display: flex; align-items: center; font-size: 13px; line-height: 1.4; }
.ym-home, .ym-away { flex: 1; display: flex; align-items: center; }
.ym-home { justify-content: flex-end; text-align: right; }
.ym-away { justify-content: flex-start; text-align: left; }
.ym-vs { flex: 0 0 30px; text-align: center; color: #aaa; font-size: 12px; font-weight: bold; }
.highlight-team { font-weight: bold; color: var(--c-primary); background-color: var(--c-accent); padding: 3px 8px; border-radius: 2px; display: inline-flex; white-space: normal; }
.ym-score-box { background-color: #0f172a !important; color: #fff !important; font-weight: 900; font-size: 1.1rem; padding: 4px 12px; border-radius: 6px; display: inline-block; min-width: 65px; text-align: center; margin: 0 15px !important; }

.alert-box { background-color: #fff3cd; border-left: 5px solid var(--c-accent); color: #856404; padding: 20px; border-radius: 4px; font-size: 18px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.schedule-day-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow: hidden; }
.sd-header { background-color: var(--c-primary); color: var(--c-accent); font-family: var(--f-heading); font-size: 22px; text-align: center; padding: 15px; letter-spacing: 1px; text-transform: uppercase; }
.sd-list { display: flex; flex-direction: column; }
.sd-row { display: flex; padding: 15px; border-bottom: 1px solid var(--c-border); }
.sd-row:last-child { border-bottom: none; }
.sd-time { flex: 0 0 65px; font-size: 13px; font-weight: bold; color: var(--c-primary); border-right: 2px solid var(--c-accent); padding-right: 15px; margin-right: 15px; line-height: 1.4; }
.sd-info { flex: 1; font-size: 15px; line-height: 1.5; }
.pitch-badge { display: inline-block; background-color: #f0f0f0; color: #555; font-size: 12px; padding: 2px 8px; border-radius: 2px; margin-top: 5px; font-weight: bold; }
.pitch-map-wrapper { display: flex; justify-content: center; margin-top: 30px; }

.recruitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.recruitment-card { padding: 40px; border-radius: 4px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.r-card-icon { width: 60px; height: 60px; margin: 0 auto 20px auto; }
.player-wanted { background-color: var(--c-accent); color: var(--c-primary); border: 3px solid var(--c-accent); }
.player-wanted h3 { color: var(--c-primary); font-size: 32px; margin-bottom: 5px; }
.coach-wanted { background-color: var(--c-primary); color: var(--c-white); border: 3px solid var(--c-primary); }
.coach-wanted h3 { color: var(--c-accent); font-size: 32px; margin-bottom: 5px; }
.r-subtitle { font-family: var(--f-heading); font-size: 20px; letter-spacing: 1px; margin-bottom: 15px !important; font-weight: 500; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.video-wrapper { background: var(--c-white); padding: 10px; border: 1px solid var(--c-border); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.video-wrapper iframe { width: 100%; aspect-ratio: 16 / 9; border-radius: 2px; }

/* ========================================================
   ARCHIV ČLÁNKŮ A ČLÁNEK DETAIL
   ======================================================== */
.archive-filters { display: flex; justify-content: flex-start; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--c-border); }
.filter-left { display: flex; gap: 20px; align-items: center; }
.filter-btn-outline { display: inline-flex; align-items: center; border: 2px solid var(--c-primary); color: var(--c-primary); padding: 8px 20px; font-family: var(--f-heading); font-size: 16px; text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s; }
.filter-btn-outline:hover { background-color: var(--c-primary); color: var(--c-white); }
.filter-select-wrapper { position: relative; display: inline-block; }
.filter-select { appearance: none; background-color: transparent; border: 1px solid var(--c-border); padding: 9px 40px 9px 20px; font-family: var(--f-body); font-size: 16px; cursor: pointer; outline: none; transition: border-color 0.2s; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.archive-card { background: var(--c-white); text-decoration: none; color: var(--c-text); border: 1px solid var(--c-border); display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s; }
.archive-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--c-accent); }
.ac-img { width: 100%; height: 220px; overflow: hidden; }
.ac-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.archive-card:hover .ac-img img { transform: scale(1.05); }
.ac-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; align-items: flex-start; }
.ac-badge { background-color: var(--c-accent); color: var(--c-primary); font-family: var(--f-heading); font-size: 13px; padding: 3px 10px; margin-bottom: 12px; font-weight: 500; }
.ac-content h3 { font-size: 22px; margin-bottom: 15px; color: var(--c-primary); }
.ac-date { margin-top: auto; font-size: 13px; color: #888; }

.pagination { display: flex; justify-content: center; gap: 10px; }
.page-link { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border: 1px solid var(--c-border); color: var(--c-primary); text-decoration: none; font-family: var(--f-heading); font-size: 18px; transition: all 0.2s; }
.page-link:hover { border-color: var(--c-primary); }
.page-link.active { background-color: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }

.article-detail-header { background-color: var(--c-primary); color: var(--c-white); padding: 80px 0 60px 0; text-align: center; border-bottom: 5px solid var(--c-accent); }
.ad-meta { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 25px; }
.ad-badge { background-color: var(--c-accent); color: var(--c-primary); font-family: var(--f-heading); font-size: 14px; padding: 4px 12px; font-weight: 600; }
.ad-date { font-size: 15px; color: rgba(255,255,255,0.7); }
.article-detail-header h1 { font-size: 52px; margin-bottom: 30px; color: var(--c-white); }
.ad-perex { font-size: 22px; line-height: 1.6; color: rgba(255,255,255,0.9); font-weight: 500; }
.article-hero-image { width: 100%; height: 50vh; min-height: 400px; max-height: 600px; overflow: hidden; position: relative; background: #111; }
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.ad-img-caption { position: absolute; bottom: 15px; right: 20px; background: rgba(0,0,0,0.6); color: #fff; padding: 5px 10px; font-size: 12px; border-radius: 2px; }
.article-content-wrapper { padding-top: 60px; }
.article-body { max-width: 800px; margin: 0 auto; font-size: 18px; line-height: 1.8; color: #333; }
.article-body p { margin-bottom: 25px; }
.article-body h2 { font-size: 32px; color: var(--c-primary); margin: 50px 0 20px 0; border-bottom: 2px solid var(--c-accent); display: inline-block; padding-bottom: 5px; }
.article-body h3 { font-size: 26px; color: var(--c-primary); margin: 40px 0 15px 0; }
.article-quote { margin: 40px 0; padding: 30px 40px; background-color: #fdfce3; border-left: 6px solid var(--c-accent); font-size: 22px; font-style: italic; color: var(--c-primary); line-height: 1.6; }
.article-quote cite { display: block; margin-top: 15px; font-size: 16px; font-style: normal; font-weight: 700; color: #888; font-family: var(--f-heading); text-transform: uppercase; }
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--c-border); }
.article-tags a { display: inline-block; background-color: #eee; color: #555; padding: 6px 15px; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.article-tags a:hover { background-color: var(--c-primary); color: var(--c-white); }
.article-share { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.article-share span { font-weight: bold; color: #666; font-family: var(--f-heading); text-transform: uppercase; }
.article-share a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: var(--c-primary); color: var(--c-white); border-radius: 50%; transition: background-color 0.2s; }
.article-share a:hover { background-color: var(--c-accent); color: var(--c-primary); }

/* ========================================================
   A-TÝM (SUBMENU, SOUPISKA, KARTY HRÁČŮ)
   ======================================================== */
.team-submenu { background-color: var(--c-white); border-bottom: 1px solid var(--c-border); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.ts-links { display: flex; justify-content: flex-start; overflow-x: auto; }
.ts-links a { display: inline-block; padding: 20px 25px; font-family: var(--f-heading); font-size: 16px; color: var(--c-primary); text-decoration: none; letter-spacing: 1px; border-bottom: 3px solid transparent; white-space: nowrap; transition: all 0.2s; }
.ts-links a:hover { color: var(--c-accent); }
.ts-links a.active { color: var(--c-primary); border-bottom-color: var(--c-primary); }

.roster-section { margin-bottom: 60px; }
.roster-title { font-size: 28px; color: var(--c-primary); margin-bottom: 25px; border-bottom: 2px solid var(--c-accent); display: inline-block; padding-bottom: 5px; }
.roster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.player-card { display: block; background-color: var(--c-primary); position: relative; overflow: hidden; text-decoration: none; border-bottom: 4px solid var(--c-accent); border-radius: 4px; transition: box-shadow 0.3s ease; }
.player-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.pc-image { height: 350px; text-align: center; background: linear-gradient(180deg, #3a3a38 0%, #1a1a19 100%); position: relative; }
.pc-image img { height: 100%; width: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s ease; }
.player-card:hover .pc-image img { transform: scale(1.05); }
.pc-info { display: flex; align-items: center; padding: 20px; position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(0deg, rgba(26,26,25,1) 0%, rgba(26,26,25,0.8) 50%, rgba(26,26,25,0) 100%); }
.pc-number { color: var(--c-accent); font-family: var(--f-heading); font-size: 42px; line-height: 1; margin-right: 15px; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
.pc-name { color: var(--c-white); font-family: var(--f-heading); font-size: 18px; text-transform: uppercase; line-height: 1.2; letter-spacing: 0.5px; }

.staff-info { display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(0deg, rgba(26,26,25,1) 0%, rgba(26,26,25,0.8) 50%, rgba(26,26,25,0) 100%); }
.sc-role { color: var(--c-accent); font-family: var(--f-body); font-size: 13px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 5px; }
.sc-name { color: var(--c-white); font-family: var(--f-heading); font-size: 22px; text-transform: uppercase; line-height: 1.15; letter-spacing: 0.5px; }

/* ========================================================
   ZÁPASY (SEZNAM), TABULKA A STATISTIKY (A-TÝM / B-TÝM)
   ======================================================== */
.match-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.match-filter-select { padding: 10px 20px; border: 1px solid var(--c-border); font-family: var(--f-body); font-size: 16px; outline: none; background: var(--c-white); color: var(--c-text); cursor: pointer; transition: border-color 0.2s; }
.competition-title { font-size: 20px; background-color: #f0f0f0; padding: 12px 20px; border-left: 4px solid var(--c-accent); margin-bottom: 0; color: var(--c-primary); }
.match-list-wrapper { margin-bottom: 50px; background: var(--c-white); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.match-list-row { display: flex; align-items: center; padding: 20px; border-bottom: 1px solid var(--c-border); transition: background-color 0.2s; }
.match-list-row:last-child { border-bottom: none; }
.match-list-row:hover { background-color: #fdfce3; }
.ml-date { flex: 0 0 130px; display: flex; flex-direction: column; color: #666; font-size: 14px; border-right: 1px solid var(--c-border); margin-right: 20px; padding-right: 20px; }
.ml-date span { font-weight: bold; color: var(--c-primary); font-size: 15px; }
.ml-teams { flex: 1; display: flex; align-items: center; justify-content: center; }
.ml-team { flex: 1; font-size: 18px; font-weight: 500; }
.ml-home { text-align: right; }
.ml-away { text-align: left; }
.ml-team .highlight-text { font-weight: 700; color: var(--c-primary); border-bottom: 2px solid var(--c-accent); }
.ml-score-wrap { flex: 0 0 100px; text-align: center; padding: 0 15px; }
.ml-score { display: inline-block; background-color: var(--c-primary); color: var(--c-accent); font-family: var(--f-heading); font-size: 24px; padding: 6px 15px; border-radius: 2px; min-width: 70px; }
.ml-vs { display: inline-block; font-family: var(--f-heading); font-size: 20px; color: #aaa; }
.ml-action { flex: 0 0 120px; text-align: right; margin-left: 20px; }
.btn-match-outline { display: inline-block; border: 2px solid var(--c-border); color: var(--c-primary); padding: 8px 15px; font-family: var(--f-heading); font-size: 14px; text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s; text-align: center; min-width: 110px; }
.btn-match-outline:hover { border-color: var(--c-primary); background-color: var(--c-primary); color: var(--c-white); }

.standings-table { width: 100%; border-collapse: collapse; background: var(--c-white); box-shadow: 0 4px 15px rgba(0,0,0,0.03); border-radius: 4px; overflow: hidden; }
.standings-table thead { background-color: var(--c-primary); color: var(--c-white); border-bottom: 3px solid var(--c-accent); }
.standings-table th { padding: 15px 10px; font-family: var(--f-heading); font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.standings-table td { padding: 12px 10px; text-align: center; border-bottom: 1px solid var(--c-border); color: var(--c-text); font-size: 15px; }
.standings-table tbody tr:last-child td { border-bottom: none; }
.standings-table th.t-team, .standings-table td.t-team { text-align: left; }
.standings-table td.t-team { font-weight: 600; }
.standings-table td.t-pos { font-weight: bold; color: #888; }
.standings-table td.t-points { font-weight: 700; font-size: 16px; color: var(--c-primary); }
.standings-table tbody tr:hover { background-color: #f9f9f9; }
.standings-table tr.highlight-row td { background-color: var(--c-accent); color: var(--c-primary); border-bottom-color: rgba(0,0,0,0.1); }
.standings-table tr.highlight-row td.t-pos, .standings-table tr.highlight-row td.t-points { color: var(--c-primary); }
.standings-legend { display: flex; flex-wrap: wrap; gap: 15px; background-color: #f0f0f0; padding: 15px 20px; font-size: 13px; color: #555; border-radius: 4px; }

.table-filters-container { background-color: var(--c-white); padding: 20px 0; margin-bottom: 30px; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.tf-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.tf-divider { height: 1px; background-color: var(--c-border); width: 100%; margin: 20px 0; }
.tf-btn { display: inline-block; padding: 10px 20px; background-color: #f4f4f4; color: var(--c-primary); font-family: var(--f-heading); font-size: 14px; text-transform: uppercase; text-decoration: none; letter-spacing: 1px; font-weight: 600; transition: all 0.2s; border-radius: 2px; }
.tf-btn:hover { background-color: #e5e5e5; }
.tf-btn.active { background-color: var(--c-primary); color: var(--c-accent); }
.tf-secondary-tabs { gap: 20px; }
.tf-season-wrap { display: flex; align-items: center; gap: 10px; }
.tf-label { font-family: var(--f-heading); font-size: 14px; letter-spacing: 1px; color: var(--c-primary); text-transform: uppercase; font-weight: 600; }
.tf-select { appearance: none; background-color: var(--c-primary); color: var(--c-accent); border: none; padding: 10px 30px 10px 15px; font-family: var(--f-heading); font-size: 14px; font-weight: 600; letter-spacing: 1px; cursor: pointer; border-radius: 2px; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fdec01' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; }

.stats-toggle { display: flex; border: 2px solid var(--c-primary); border-radius: 2px; overflow: hidden; }
.st-btn { padding: 10px 25px; font-family: var(--f-heading); font-size: 14px; text-transform: uppercase; text-decoration: none; letter-spacing: 1px; color: var(--c-primary); background-color: transparent; transition: all 0.2s; font-weight: 600; }
.st-btn.active { background-color: var(--c-primary); color: var(--c-accent); }
.stats-grid-players { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 30px; }
.stat-player-card { background: linear-gradient(180deg, #2a2a29 0%, #111 100%); border-bottom: 4px solid var(--c-accent); padding: 25px 20px; text-align: center; border-radius: 2px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: box-shadow 0.3s; }
.spc-header { color: #888; font-family: var(--f-heading); font-size: 14px; letter-spacing: 1px; margin-bottom: 20px; }
.spc-img { width: 120px; height: 120px; margin: 0 auto 15px auto; border-radius: 50%; background-color: #333; overflow: hidden; border: 2px solid var(--c-accent); }
.spc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.spc-name { color: var(--c-white); font-family: var(--f-body); font-weight: 600; font-size: 16px; margin-bottom: 10px; }
.spc-value { color: var(--c-accent); font-family: var(--f-heading); font-size: 48px; line-height: 1; margin-bottom: 5px; }
.spc-subtext { color: #999; font-size: 13px; text-transform: uppercase; }

.stats-grid-team-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat-team-box-full { background-color: var(--c-white); border: 1px solid var(--c-border); padding: 30px; border-radius: 2px; transition: box-shadow 0.3s; }
.stat-team-box-full .stb-title { font-family: var(--f-heading); font-size: 14px; color: var(--c-primary); letter-spacing: 1px; margin-bottom: 15px; font-weight: 700; }
.stat-team-box-full .stb-value { font-family: var(--f-heading); font-size: 56px; color: var(--c-primary); line-height: 1; margin-bottom: 5px; }
.stat-team-box-full .stb-desc { font-size: 13px; color: #999; text-transform: uppercase; padding-bottom: 20px; border-bottom: 1px solid var(--c-border); margin-bottom: 20px; line-height: 1.4; }
.stat-team-box-full .stb-footer { display: flex; justify-content: flex-start; gap: 40px; }
.stat-team-box-full .stb-footer div { display: flex; flex-direction: column; }
.stat-team-box-full .stb-footer strong { font-family: var(--f-heading); font-size: 24px; color: var(--c-primary); line-height: 1.2; }
.stat-team-box-full .stb-footer span { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========================================================
   DETAIL ZÁPASU (PRO VZHLED)
   ======================================================== */
.pro-match-hero { position: relative; background-color: var(--c-primary); padding: 60px 0; border-bottom: 4px solid var(--c-accent); width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden; }
.pro-match-hero::before { content: "ZÁPASOVÉ INFO"; position: absolute; top: -10px; left: -10px; font-size: clamp(6rem, 12vw, 15rem); font-weight: 900; font-family: var(--f-heading); color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04); white-space: nowrap; z-index: 0; pointer-events: none; line-height: 0.8; }
.pro-match-hero::after { content: "#1912"; position: absolute; bottom: -15px; right: 15px; font-size: clamp(4rem, 8vw, 12rem); font-weight: 900; font-family: var(--f-heading); color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04); z-index: 0; pointer-events: none; line-height: 0.8; }
.pro-match-hero .container { position: relative; z-index: 1; }

.pro-hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.pro-back-btn { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; text-transform: uppercase; transition: color 0.2s; width: 130px; }
.pro-back-btn:hover { color: var(--c-accent); }
.pro-meta { display: flex; gap: 15px; color: var(--c-accent); font-family: var(--f-heading); font-size: 15px; letter-spacing: 1px; text-transform: uppercase; }
.pro-hero-spacer { width: 130px; }

.pro-hero-grid { display: grid !important; grid-template-columns: 1fr auto 1fr !important; align-items: center !important; gap: 40px !important; max-width: 1100px !important; margin: 0 auto !important; }
.pro-team-box { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 20px !important; }
.pro-logo-wrap { width: 130px !important; height: 130px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.pro-logo-wrap img { max-width: 100% !important; max-height: 100% !important; width: auto !important; height: auto !important; object-fit: contain !important; }
.pro-team-box h2 { color: var(--c-white) !important; font-family: var(--f-heading) !important; font-size: 24px !important; letter-spacing: 1px !important; margin: 0 !important; text-transform: uppercase !important; }
.pro-score-box { text-align: center !important; padding: 0 20px !important; }
.pro-score-main { font-family: var(--f-heading) !important; font-size: 76px !important; color: var(--c-accent) !important; line-height: 1 !important; letter-spacing: 2px !important; }
.pro-score-sub { font-size: 14px !important; color: rgba(255,255,255,0.6) !important; margin-top: 10px !important; text-transform: uppercase !important; font-weight: 500 !important; }
.pro-stadium-info { text-align: center !important; margin-top: 40px !important; font-size: 14px !important; color: rgba(255,255,255,0.4) !important; text-transform: uppercase !important; letter-spacing: 1px !important; }

.match-tabs { display: flex; gap: 30px; border-bottom: 2px solid var(--c-border); margin-bottom: 40px; flex-wrap: wrap; }
.match-tab { font-family: var(--f-heading); font-size: 18px; font-weight: 500; color: #94a3b8; text-transform: uppercase; cursor: pointer; padding-bottom: 12px; border-bottom: 3px solid transparent; transition: all 0.2s; letter-spacing: 0.5px; }
.match-tab:hover { color: var(--c-primary); }
.match-tab.active { color: var(--c-primary); border-bottom-color: var(--c-accent); }

.lineup-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--c-white); padding: 40px; border-top: 4px solid var(--c-accent); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.lineup-col { display: flex; flex-direction: column; }
.lineup-team-header { display: flex; align-items: center; gap: 15px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 2px solid var(--c-border); }
.lineup-team-header img { height: 50px; width: auto; object-fit: contain; }
.lineup-team-header h4 { font-size: 24px; font-family: var(--f-heading); text-transform: uppercase; color: var(--c-primary); margin: 0; }
.lineup-pos-title { color: var(--c-primary); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin: 25px 0 10px 0; padding-bottom: 5px; border-bottom: 1px solid var(--c-border); font-family: var(--f-heading); }
.lineup-sub-title { color: #888; font-size: 16px; font-family: var(--f-heading); text-transform: uppercase; margin: 30px 0 15px 0; padding-top: 20px; border-top: 2px dashed var(--c-border); }
.lineup-list { list-style: none; padding: 0; margin: 0; }
.lineup-list li { padding: 10px 15px; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; justify-content: space-between; align-items: center; font-size: 16px; color: #333; }
.lineup-list li:nth-child(odd) { background: rgba(0,0,0,0.015); }
.lineup-player { font-weight: 500; }
.lineup-cap { background: var(--c-accent); color: var(--c-primary); font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 3px; margin-left: 10px; }

.match-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }
.match-gallery-grid img { width: 100%; height: 180px; object-fit: cover; cursor: pointer; border-radius: 6px; transition: 0.3s ease; border: 1px solid rgba(0,0,0,0.1); }
.match-gallery-grid img:hover { transform: scale(1.03); border-color: var(--c-accent); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.lightbox { display: none; position: fixed; z-index: 99999; padding-top: 40px; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); }
.lightbox-content { margin: auto; display: block; max-width: 90%; max-height: 85vh; border-radius: 4px; box-shadow: 0 0 40px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 15px; right: 35px; color: #fff; font-size: 50px; cursor: pointer; }
.lightbox-close:hover { color: var(--c-accent); }
.lb-btn { cursor: pointer; position: absolute; top: 50%; padding: 25px 20px; margin-top: -50px; color: white; font-size: 30px; transition: 0.3s ease; background: rgba(0,0,0,0.3); }
.lb-btn:hover { background: rgba(250,204,21,0.8); color: #000; }
.lb-next { right: 0; border-radius: 3px 0 0 3px; }
.lb-prev { left: 0; }

.pro-detail-layout { display: grid; grid-template-columns: 320px 1fr 320px; gap: 60px; align-items: start; }
.sidebar-title { font-family: var(--f-heading); font-size: 18px; color: var(--c-primary); text-transform: uppercase; margin-bottom: 20px; border-bottom: 2px solid var(--c-accent); padding-bottom: 8px; }
.sidebar-articles { display: flex; flex-direction: column; gap: 20px; }
.sidebar-article-card { display: flex; flex-direction: column; text-decoration: none; color: var(--c-text); background: var(--c-white); border: 1px solid var(--c-border); transition: border-color 0.2s, box-shadow 0.2s; }
.sidebar-article-card:hover { border-color: var(--c-accent); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.sa-img { width: 100%; height: 140px; overflow: hidden; }
.sa-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sa-info { padding: 15px; }
.sa-info h5 { font-family: var(--f-heading); font-size: 16px; margin-bottom: 5px; color: var(--c-primary); line-height: 1.3; }
.sa-date { font-size: 12px; color: #888; }
.sidebar-banner-link { text-decoration: none; display: block; }
.sidebar-banner { background: linear-gradient(135deg, var(--c-primary) 0%, #111 100%); color: var(--c-white); padding: 30px 20px; text-align: center; border-radius: 2px; border-bottom: 4px solid var(--c-accent); position: relative; overflow: hidden; }
.sidebar-banner::after { content: '1912'; position: absolute; bottom: -15px; right: -10px; font-family: var(--f-heading); font-size: 70px; color: rgba(255,255,255,0.04); pointer-events: none; line-height: 1; }
.sb-content { position: relative; z-index: 2; }
.sb-content h4 { font-family: var(--f-heading); font-size: 26px; color: var(--c-accent); margin-bottom: 10px; line-height: 1.1; text-transform: uppercase; }
.sb-content p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 15px; line-height: 1.5; }

.pro-timeline-card { background-color: transparent; padding: 0 0 20px 0; border-radius: 0; margin-bottom: 50px; box-shadow: none; }
.pro-timeline-wrap { position: relative; padding: 20px 0; }
.pro-timeline-wrap::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--c-border); transform: translateX(-50%); z-index: 1; }
.pro-timeline-half { text-align: center; margin-bottom: 30px; position: relative; z-index: 2; }
.pro-timeline-half span { background: var(--c-bg); color: #777; font-family: var(--f-heading); font-size: 14px; padding: 5px 15px; border: 1px solid var(--c-border); border-radius: 20px; letter-spacing: 1px; }
.pro-event-row { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; margin-bottom: 15px; position: relative; z-index: 2; }
.pro-event-home { display: flex; justify-content: flex-end; align-items: center; gap: 12px; padding-right: 20px; }
.pro-event-away { display: flex; justify-content: flex-start; align-items: center; gap: 12px; padding-left: 20px; }
.pro-event-player { color: var(--c-primary); font-size: 16px; font-weight: 600; }
.pro-ball-icon { color: var(--c-primary); flex-shrink: 0; opacity: 0.5; }
.pro-event-min { font-family: var(--f-heading); font-size: 16px; font-weight: bold; color: var(--c-primary); background: var(--c-accent); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 3px 8px rgba(0,0,0,0.1); }

/* ========================================================
   DETAIL HRÁČE (PRO VZHLED) A JEHO TABULKY
   ======================================================== */
.pro-player-hero { position: relative; background-color: var(--c-primary); padding: 60px 0 0 0; border-bottom: 5px solid var(--c-accent); overflow: hidden; display: flex; align-items: flex-end; min-height: 650px; width: 100vw; margin-left: calc(-50vw + 50%); }
.pro-player-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(8rem, 18vw, 25rem); font-weight: 900; font-family: var(--f-heading); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.03); white-space: nowrap; z-index: 0; pointer-events: none; text-transform: uppercase; line-height: 0.8; }
.pro-player-year { position: absolute; top: 60px; right: 5%; font-size: clamp(4rem, 8vw, 10rem); font-weight: 900; font-family: var(--f-heading); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.05); z-index: 0; pointer-events: none; line-height: 0.8; }

.pro-player-container { position: relative; z-index: 1; display: flex; gap: 60px; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 30px; align-items: flex-end; }
.pro-player-photo { flex: 0 0 450px; position: relative; display: flex; justify-content: center; }
.pro-player-photo img { width: 100%; max-height: 700px; object-fit: contain; object-position: bottom; display: block; }
.pro-player-data { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 40px; padding-top: 40px; }

.pro-player-back { color: rgba(255,255,255,0.6); font-family: var(--f-heading); font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 40px; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.pro-player-back:hover { color: var(--c-accent); }
.pro-player-badge { display: inline-block; background: var(--c-white); color: var(--c-primary); font-family: var(--f-heading); font-size: 14px; font-weight: 800; padding: 6px 15px; letter-spacing: 1px; text-transform: uppercase; align-self: flex-start; margin-bottom: 20px; }
.pro-player-name { font-family: var(--f-heading); font-size: 72px; color: var(--c-white); line-height: 1; text-transform: uppercase; margin: 0 0 5px 0; letter-spacing: 1px; }
.pro-player-number { color: var(--c-accent); margin-left: 15px; }
.pro-player-firstname { font-family: var(--f-body); font-size: 26px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }

.pro-player-stats { display: flex; gap: 20px; margin-bottom: 40px; }
.pro-stat-box { flex: 1; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-top: 2px solid rgba(255,255,255,0.1); padding: 20px; display: flex; flex-direction: column; }
.pro-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: bold; }
.pro-stat-val { font-family: var(--f-heading); font-size: 42px; color: var(--c-white); line-height: 1; }

.pro-player-personal { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.pro-player-personal h3 { font-family: var(--f-heading); font-size: 18px; color: var(--c-white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.pro-pi-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 15px; }
.pro-pi-row span:first-child { color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.pro-pi-row span:last-child { color: var(--c-white); font-weight: bold; }

/* Sub-navigace hráče (Bílá lišta Profil/Statistiky) */
.pd-subnav { background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.pd-subnav .container { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; }
.pd-subnav .container::-webkit-scrollbar { display: none; }
.pd-subnav .tab-link { padding: 20px 0; color: #64748b; font-family: var(--f-heading); font-size: 15px; text-transform: uppercase; text-decoration: none; border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; font-weight: 700; }
.pd-subnav .tab-link:hover { color: var(--c-primary); }
.pd-subnav .tab-link.active { color: var(--c-primary); border-bottom-color: var(--c-accent); }

/* Tabulka statistik hráče (Tmavá hlavička, žlutá linka) */
.stats-table-wrapper { background: #ffffff; overflow-x: auto; margin-bottom: 40px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
table.stats-table { width: 100%; border-collapse: collapse; text-align: center; min-width: 700px; margin: 0; }
table.stats-table thead th { background-color: var(--c-primary); color: var(--c-white); font-family: var(--f-heading); text-transform: uppercase; padding: 18px 20px; font-size: 15px; letter-spacing: 1px; border-bottom: 4px solid var(--c-accent); font-weight: 800; white-space: nowrap; }
table.stats-table thead th:first-child { text-align: left; }
table.stats-table tbody td { padding: 16px 20px; border-bottom: 1px solid #e2e8f0; color: #334155; font-size: 15px; background: #ffffff; transition: background-color 0.2s; }
table.stats-table tbody tr:hover td { background: #f8fafc; }
table.stats-table tbody td:first-child { text-align: left; font-weight: 700; color: var(--c-primary); }

.player-picker-section { background-color: var(--c-white); border: 1px solid var(--c-border); padding: 25px; border-radius: 2px; }
.pp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pp-header h3 { font-size: 20px; color: var(--c-primary); margin: 0; }
.pp-arrows { display: flex; gap: 5px; }
.pp-arrow-btn { background: var(--c-primary); color: var(--c-accent); border: none; width: 35px; height: 35px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.pp-arrow-btn:hover { background: #333; }
.player-picker-grid { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.player-picker-grid::-webkit-scrollbar { display: none; }
.pp-card { background: #fdfce3; border: 1px solid var(--c-border); text-decoration: none; padding: 15px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: border-color 0.2s, box-shadow 0.2s; flex: 0 0 calc((100% - 80px) / 5); }
.pp-card:hover { border-color: var(--c-accent); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.pp-img { width: 90px; height: 90px; border-radius: 50%; background: #111; overflow: hidden; margin-bottom: 10px; border: 2px solid var(--c-accent); }
.pp-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.pp-name { font-family: var(--f-body); font-size: 14px; font-weight: 600; color: var(--c-primary); }
.stats-roster-lists { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; background: var(--c-white); border: 1px solid var(--c-border); padding: 30px; }
.srl-column h4 { font-size: 18px; color: var(--c-primary); border-bottom: 2px solid var(--c-accent); padding-bottom: 8px; margin-bottom: 15px; }
.srl-column ul { list-style: none; padding: 0; margin: 0; }
.srl-column li { margin-bottom: 10px; }
.srl-column a { color: #444; text-decoration: none; font-size: 15px; transition: color 0.2s; }
.srl-column a:hover { color: var(--c-primary); font-weight: 600; text-decoration: underline; }

/* ========================================================
   SLEDUJ LIGU A STADION
   ======================================================== */
.live-hero { background-color: var(--c-primary); padding: 60px 0 80px 0; border-bottom: 5px solid var(--c-accent); text-align: center; color: var(--c-white); }
.live-header { margin-bottom: 40px; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; background: #ef4444; color: #fff; padding: 5px 15px; font-family: var(--f-heading); font-size: 16px; letter-spacing: 1px; border-radius: 4px; margin-bottom: 20px; animation: pulseLive 2s infinite; }
.live-badge.offline { background: #64748b; animation: none; }
@keyframes pulseLive { 0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } }
.live-title { font-size: 56px; margin-bottom: 10px; line-height: 1.1; }
.live-meta { font-size: 18px; color: var(--c-accent); font-family: var(--f-heading); letter-spacing: 1px; }

.video-container-wrapper { max-width: 1000px; margin: 0 auto; background: #111; border: 2px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-radius: 4px; overflow: hidden; }
.video-aspect-ratio { position: relative; width: 100%; padding-bottom: 56.25%; }
.video-aspect-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.btn-massive-live { display: inline-flex; align-items: center; justify-content: center; gap: 15px; background: var(--c-accent); color: var(--c-primary); font-family: var(--f-heading); font-size: 24px; text-transform: uppercase; letter-spacing: 1px; padding: 20px 40px; text-decoration: none; margin-top: 30px; border-radius: 4px; transition: background-color 0.2s; }
.btn-massive-live:hover { background: var(--c-white); color: var(--c-primary); }
.btn-massive-live svg { width: 32px; height: 32px; }
.live-message { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.8); max-width: 700px; margin: 20px auto 0 auto; }
.offline-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: url('img/galerie/grafikajun600x1200.jpg') center center / cover no-repeat; }
.offline-placeholder::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26,26,25,0.9); }
.offline-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }

.stadium-hero { position: relative; height: 400px; background-color: var(--c-primary); display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 5px solid var(--c-accent); }
.stadium-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(26,26,25,0.95) 0%, rgba(26,26,25,0.4) 100%); z-index: 1; }
.stadium-hero img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.stadium-hero-content { position: relative; z-index: 2; text-align: center; }
.stadium-hero h1 { color: var(--c-white); font-size: 64px; margin: 0; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.st-params-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: -50px; position: relative; z-index: 10; margin-bottom: 60px; }
.st-param-card { background: var(--c-white); border: 1px solid var(--c-border); border-bottom: 4px solid var(--c-accent); padding: 30px 20px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.st-param-icon { width: 48px; height: 48px; margin: 0 auto 15px auto; color: var(--c-primary); opacity: 0.8; }
.st-param-icon svg { width: 100%; height: 100%; }
.st-param-val { font-family: var(--f-heading); font-size: 32px; color: var(--c-primary); line-height: 1.1; margin-bottom: 5px; }
.st-param-label { font-size: 13px; color: #888; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.st-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; margin-bottom: 80px; }
.st-tribunes-title { font-size: 32px; color: var(--c-primary); margin-bottom: 30px; border-bottom: 2px solid var(--c-accent); display: inline-block; padding-bottom: 5px; }
.st-tribune-list { display: flex; flex-direction: column; gap: 20px; }
.st-tribune-item { background: #fff; border: 1px solid var(--c-border); border-left: 4px solid var(--c-primary); padding: 25px; display: flex; flex-direction: column; }
.st-tr-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.st-tr-name { font-family: var(--f-heading); font-size: 24px; color: var(--c-primary); text-transform: uppercase; margin: 0; }
.st-tr-cap { background: var(--c-primary); color: var(--c-accent); font-family: var(--f-heading); padding: 5px 12px; font-size: 16px; border-radius: 2px; letter-spacing: 0.5px; }
.st-info-box { background: var(--c-primary); color: var(--c-white); padding: 35px 30px; border-bottom: 5px solid var(--c-accent); }
.st-info-box h3 { color: var(--c-accent); font-size: 24px; margin-bottom: 25px; }
.st-info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.st-ir-label { color: rgba(255,255,255,0.6); font-size: 14px; }
.st-ir-val { font-weight: bold; font-size: 15px; }
.st-rules-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--c-accent); color: var(--c-primary); padding: 15px; text-decoration: none; font-family: var(--f-heading); font-size: 18px; text-transform: uppercase; letter-spacing: 1px; margin-top: 30px; transition: background 0.2s; }
.st-rules-btn:hover { background: var(--c-white); }

/* ========================================================
   RESPONZIVNÍ MEDIA QUERIES A OPRAVY TÉMATU ZÁPASŮ
   ======================================================== */
@media (max-width: 1300px) { .pro-detail-layout { grid-template-columns: 280px 1fr 280px; gap: 40px; } }
@media (max-width: 1024px) { 
    .pro-detail-layout { grid-template-columns: 1fr 300px; } .pro-sidebar-left { display: none; }
    .pro-player-container { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .pro-player-photo { flex: 0 0 auto; width: 100%; max-width: 400px; }
    .pro-player-data { width: 100%; padding-top: 0; }
    .pro-player-badge { align-self: center; }
    .pro-player-back { align-self: center; margin-bottom: 20px; }
    .pro-pi-row { flex-direction: column; gap: 5px; text-align: center; padding: 15px 0; }
    .pp-card { flex: 0 0 calc((100% - 40px) / 3); } 
    .stats-roster-lists { grid-template-columns: repeat(2, 1fr); }
    .st-params-grid { grid-template-columns: repeat(2, 1fr); }
    .st-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) { 
    .pro-hero-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .pro-hero-spacer, .pro-back-btn { display: none !important; }
    .lineup-container { grid-template-columns: 1fr; padding: 20px; gap: 40px; }
}
@media (max-width: 768px) { 
    .pro-detail-layout { grid-template-columns: 1fr; } .pro-sidebar-left { display: block; margin-top: 20px; }
    .pd-hero-content { flex-direction: column; align-items: center; text-align: center; }
    .pd-image-col { flex: 0 0 auto; width: 100%; max-width: 350px; }
    .pd-info-row { flex-direction: column; gap: 5px; }
    .pd-subnav .container { overflow-x: auto; white-space: nowrap; }
    .pp-card { flex: 0 0 calc((100% - 20px) / 2); } 
    .stats-roster-lists { grid-template-columns: 1fr; }
    .st-params-grid { grid-template-columns: 1fr; margin-top: 0; }
    .stadium-hero h1 { font-size: 42px; }
    .st-tr-header { flex-direction: column; gap: 10px; }
}
@media (max-width: 600px) { 
    .pro-player-name { font-size: 48px; }
    .pro-player-stats { flex-direction: column; gap: 10px; }
}
@media (max-width: 500px) { 
    .pp-card { flex: 0 0 100%; } 
}

/* ========================================================
   ULTIMÁTNÍ ZABIJÁK DLOUHÝCH SLOV
   ======================================================== */
.main-article, .main-article-content, .sub-article, .sub-article-body, .article-layout, .article-body, .article-detail-header,
.article-detail-header .container, .news-main-grid, .news-sub-grid, .archive-grid, .archive-card, .ac-content, .pro-detail-layout,
.pro-sidebar-left, .sidebar-articles, .sidebar-article-card, .sa-info {
    min-width: 0 !important;
    max-width: 100% !important;
}

.article-detail-header h1, .ad-perex, .text-content, .text-content p, .text-content h1, .text-content h2, .text-content h3,
.text-content h4, .text-content span, .text-content div, .main-article-content h3, .sub-article-body h4, .stack-item h3,
.ac-content h3, #carousel-title, .sa-info h5 {
    white-space: normal !important;
    word-break: normal !important; 
    overflow-wrap: break-word !important; 
    hyphens: auto !important; 
    max-width: 100% !important;
}

.main-article-content h3, .sub-article-body h4, .stack-item h3, .ac-content h3, .sa-info h5 {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important; 
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
/* ========================================================
   GLOBÁLNÍ PŘEPÍNÁNÍ ZÁLOŽEK (VYNUCENÉ SKRÝVÁNÍ)
   ======================================================== */
.tab-pane {
    display: none !important;
}

.tab-pane.active {
    display: block !important;
    animation: fadeInTab 0.4s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.search-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(26, 26, 25, 0.98) !important;
        z-index: 99999 !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding-top: 15vh !important;
    }

    .search-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .search-overlay-close {
        position: absolute !important;
        top: 30px !important;
        right: 40px !important;
        font-size: 50px !important;
        color: #ffffff !important;
        cursor: pointer !important;
        line-height: 1 !important;
        z-index: 100000 !important;
    }

    .search-overlay-close:hover { 
        color: #fdec01 !important; 
    }

    .search-overlay-content {
        width: 100% !important;
        max-width: 800px !important;
        padding: 0 20px !important;
    }

    .search-form { 
        position: relative !important; 
        margin-bottom: 40px !important; 
    }

    .search-input {
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 2px solid rgba(255,255,255,0.2) !important;
        color: #ffffff !important;
        font-size: 42px !important;
        padding: 10px 0 !important;
        outline: none !important;
    }

    .search-input::placeholder { 
        color: rgba(255,255,255,0.2) !important; 
    }
    
    .search-input:focus { 
        border-color: #fdec01 !important; 
    }

    .search-results {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        max-height: 60vh !important;
        overflow-y: auto !important;
    }

    .sr-item {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 15px 20px !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 4px !important;
        text-decoration: none !important;
        border-left: 3px solid transparent !important;
        transition: background 0.2s !important;
    }

    .sr-item:hover {
        background: rgba(255,255,255,0.08) !important;
        border-left-color: #fdec01 !important;
    }

    .sr-badge {
        font-size: 11px !important;
        padding: 3px 8px !important;
        border-radius: 2px !important;
        text-transform: uppercase !important;
        font-weight: bold !important;
        min-width: 80px !important;
        text-align: center !important;
    }

    .sr-článek { background: #fdec01 !important; color: #292927 !important; }
    .sr-stránka { background: #38bdf8 !important; color: #fff !important; }
    .sr-hráč { background: #ef4444 !important; color: #fff !important; }

    .sr-title {
        color: #ffffff !important;
        font-size: 18px !important;
        font-weight: 500 !important;
    }

    .sr-empty {
        color: rgba(255,255,255,0.5) !important;
        font-size: 20px !important;
        text-align: center !important;
        padding: 40px 0 !important;
    }

    @media (max-width: 768px) {
        .search-input { font-size: 28px !important; }
        .search-overlay-close { top: 15px !important; right: 20px !important; font-size: 40px !important; }
        .search-overlay { padding-top: 10vh !important; }
        .sr-item { flex-direction: column !important; align-items: flex-start !important; gap: 5px !important; }
    }
/* ========================================================
   KOMPLEXNÍ RESPONZIVITA PRO MOBILY A TABLETY
   ======================================================== */

@media (max-width: 1150px) {
    .desktop-nav { margin-left: 150px; gap: 15px; }
    .nav-link { font-size: 16px; }
}

@media (max-width: 992px) {
    /* HLAVIČKA A MENU */
    .utility-inner { flex-direction: column; height: auto; padding: 10px 0; gap: 10px; }
    .utility-right { flex-wrap: wrap; justify-content: center; }
    
    .desktop-nav { display: none !important; } /* Skryje hlavní menu */
    .hamburger-btn { display: block !important; font-size: 28px; margin-right: 15px; } /* Ukáže hamburger menu */
    
    .logo { left: 15px; height: 95px; padding: 10px; }
    .site-header.scrolled .logo { height: 70px; }
    .nav-inner { justify-content: space-between; padding-left: 120px; height: 70px; }
    .nav-right { gap: 15px; margin-right: 15px; }

    /* DOMOVSKÁ STRÁNKA A GRIDY */
    .news-main-grid { grid-template-columns: 1fr; }
    .main-article { min-height: 350px; }
    .matches-overlap { margin-top: 0; }
    .matches-grid { grid-template-columns: 1fr; }

    /* PATIČKA */
    .footer-main-content { flex-direction: column; gap: 40px; padding-top: 70px; text-align: center; }
    .footer-col { max-width: 100%; margin: 0 auto; }
    .footer-hashtags-row { gap: 20px; flex-direction: column; padding-top: 40px; }
    .contact-col .footer-socials { justify-content: center; }
    .footer-overlap-logo img { height: 140px; }
    .footer-overlap-logo { top: -70px; }
    
    /* VÝPIS ZÁPASŮ (Rozbité datum a týmy na screenu) */
    .match-list-row { flex-direction: column !important; text-align: center !important; gap: 15px !important; padding: 20px 15px !important; }
    .ml-date { border-right: none !important; border-bottom: 1px solid var(--c-border) !important; padding-right: 0 !important; margin-right: 0 !important; padding-bottom: 15px !important; width: 100% !important; flex: auto !important; }
    .ml-teams { flex-direction: column !important; gap: 10px !important; width: 100% !important; }
    .ml-home, .ml-away { justify-content: center !important; text-align: center !important; width: 100% !important; }
    .ml-vs { margin: 5px 0 !important; }
    .ml-action { margin-left: 0 !important; width: 100% !important; display: flex !important; justify-content: center !important; margin-top: 10px !important; }
}

@media (max-width: 768px) {
    /* UNIVERZÁLNÍ GRIDY A KARTY */
    .news-sub-grid, .archive-grid, .contact-grid, .values-grid, .video-grid, .st-params-grid { grid-template-columns: 1fr !important; }
    .partner-logos.large .partner-box, .partner-logos.medium .partner-box, .partner-logos.small .partner-box { width: 100% !important; max-width: none !important; }
    
    /* MLÁDEŽ (Skrácené nudle na screenu) */
    .youth-teams-container { grid-template-columns: 1fr !important; }
    
    /* TÝMY A HRÁČI */
    .roster-grid, .player-grid { grid-template-columns: repeat(2, 1fr) !important; }
    
    /* NADPISY */
    .carousel-main-info h1 { font-size: 42px; }
    .section-title { font-size: 32px; margin-bottom: 20px; }
    .subpage-header h1 { font-size: 36px; }
    .fans-hero h1 { font-size: 42px; }
    
    /* HISTORIE (Zabránění přetečení z obrazovky) */
    .history-vertical-timeline { padding-left: 80px; }
    .history-vertical-timeline::before { left: 20px; }
    .history-v-year { left: -75px; font-size: 24px; width: 60px; }
    .history-v-content { padding: 20px; }
    .history-v-content h3 { font-size: 20px; }
}

@media (max-width: 480px) {
    /* EXTRÉMNĚ MALÉ MOBILY */
    .roster-grid, .player-grid { grid-template-columns: 1fr !important; }
    .pc-image { height: 320px !important; }
    .logo { height: 80px; left: 10px; }
    .nav-inner { padding-left: 90px; }
    .carousel-main-info h1 { font-size: 32px; }
    .fans-stats-inner { flex-direction: column; gap: 30px; }
    .sub-article img { height: 180px; }
}
/* ========================================================
   OPRAVA PRO MOBILY: SKRYTÍ HORNÍ LIŠTY A NOVÝ HERO SLIDER
   ======================================================== */

@media (max-width: 992px) {
    /* 1. Skrytí horní šedé lišty s kluby a projekty na mobilu */
    .utility-bar {
        display: none !important;
    }

    /* 2. Přepnutí stínu na obrázku (gradientu) zleva-doprava na zdola-nahoru (aby byl text dole čitelný) */
    .carousel-overlay {
        background: linear-gradient(0deg, rgba(26,26,25,0.95) 0%, rgba(26,26,25,0.5) 45%, rgba(0,0,0,0) 100%) !important;
    }

    /* 3. Úvodní sekce roztáhneme více na výšku displeje */
    .hero-carousel {
        height: 75vh !important; 
        min-height: 480px !important;
        padding: 0 !important;
    }

    /* 4. Zarovnání hlavního nadpisu a tlačítka kousek nad spodek */
    .carousel-content {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        padding: 20px !important;
        padding-bottom: 50px !important; /* Místo dole pro obdélníčky */
    }

    .carousel-main-info {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }

    .carousel-main-info h1 {
        font-size: 36px !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    }

    .btn-sharp {
        font-size: 16px !important;
        padding: 10px 20px !important;
    }

    /* 5. Magie: Přeměna postranních karet na 4 spodní obdélníčky */
    .carousel-stack {
        position: absolute !important;
        bottom: 15px !important;
        left: 20px !important;
        right: 20px !important;
        width: calc(100% - 40px) !important;
        flex-direction: row !important;
        gap: 8px !important;
        height: 5px !important; /* Tloušťka čárek */
    }

    .stack-item {
        flex: 1 !important;
        height: 100% !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.3) !important; /* Průhledný bílý podklad */
        border: none !important;
        border-radius: 4px !important;
        overflow: hidden !important;
    }

    /* Skrytí textů (datum, nadpis) uvnitř čárek na mobilu */
    .stack-item-inner {
        display: none !important;
    }

    /* Upravení "jezdící" animace plnění ze zdola-nahoru na zleva-doprava */
    .stack-item .progress-bg {
        width: 0% !important;
        height: 100% !important;
        background-color: var(--c-accent) !important; /* Bude jezdit ve žluté barvě klubu */
    }

    /* Aktivace zbrusu nové animace pro mobily */
    .stack-item.active .progress-bg {
        animation: fillProgressHorizontal 4s linear forwards !important;
    }
}

/* ========================================================
   NOVÁ ANIMACE PLNĚNÍ ČÁREK ZLEVA DOPRAVA
   ======================================================== */
@keyframes fillProgressHorizontal {
    0% { width: 0%; }
    100% { width: 100%; }
}
/* ========================================================
   ZAROVNÁNÍ HAMBURGERU DOPRAVA A ANIMACE NA KŘÍŽEK
   ======================================================== */

@media (max-width: 992px) {
    /* Zrušíme odsazení, které tlačítko drželo dál od okraje */
    .nav-right {
        margin-right: 0 !important;
    }
    .hamburger-btn {
        margin-right: 0 !important;
        padding: 5px; /* Zvětší klikatelnou plochu na mobilu */
    }
}

/* Plynulá transformace SVG čar */
.hamburger-btn svg line {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Když má tlačítko třídu .open, čáry udělají "X" */
.hamburger-btn.open .top-line {
    transform: translateY(6px) rotate(45deg);
}
.hamburger-btn.open .mid-line {
    opacity: 0; /* Prostřední čára zmizí */
}
.hamburger-btn.open .bot-line {
    transform: translateY(-6px) rotate(-45deg);
}
/* ========================================================
   FINÁLNÍ ZAROVNÁNÍ PRVKŮ MENU ÚPLNĚ DOPRAVA
   ======================================================== */
@media (max-width: 992px) {
    .nav-inner {
        justify-content: flex-end !important;
    }
}
/* ========================================================
   OPRAVY: ZÁPASY, FANOUŠCI A MLÁDEŽ (MOBILY)
   ======================================================== */

@media (max-width: 768px) {
    /* --- 1. ZÁPASY (Obří Preview tlačítka) --- */
    .ml-action { margin-top: 10px !important; }
    .btn-match-outline { 
        width: 100%; /* Roztáhne tlačítko na celou šířku kontejneru */
        padding: 12px 15px; /* Větší na kliknutí prstem, ale ne extrémní */
        font-size: 16px;
    }

    /* --- 2. FANOUŠCI (Rozbitá mřížka s obrázkem a textem vedle sebe) --- */
    .fans-community-section { 
        grid-template-columns: 1fr !important; /* Dvě věci pod sebe */
        gap: 30px !important; 
        padding: 50px 20px !important; 
    }
    .fc-image img { 
        height: auto !important; 
        max-height: 350px; /* Zabrání obřím fotkám */
    }
    
    /* Úprava nadpisu u fanoušků, aby neprotékal přes okraje */
    .fans-hero h1 {
        font-size: 48px !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
    }
    .fans-hero-btns {
        flex-direction: column; /* Tlačítka kontakt a vstupenky pod sebe */
        gap: 15px;
    }
    .fans-hero-btns a {
        width: 100%;
        text-align: center;
    }

    /* --- 3. MLÁDEŽ (Rozbitá tabulka "Proč fotbal" a nábor) --- */
    .recruitment-grid { 
        grid-template-columns: 1fr !important; /* Karty náboru pod sebe */
    }
    .recruitment-card {
        padding: 30px 20px !important;
    }
    .recruitment-card h3 {
        font-size: 26px !important;
    }
}
/* ========================================================
   OPRAVA: FANOUŠCI (HODNOTY A PILÍŘE ZÁVAZKU)
   ======================================================== */

@media (max-width: 992px) {
    /* Na tabletu dáme 4 hodnoty do 2 sloupců (2 a 2 pod sebou) */
    .fans-values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Na mobilu dáme HODNOTY do 1 sloupce čistě pod sebe */
    .fans-values-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Na mobilu dáme PILÍŘE (Závazek) čistě pod sebe */
    .respect-pillars {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Trochu zmenšíme padding u textu "Vážíme si vás", aby neplýtval místem */
    .respect-box {
        padding: 25px 15px !important;
        margin-bottom: 25px !important;
    }
}
/* ========================================================
   SPOLEČNÁ HLAVIČKA PRO PODSTRÁNKY (VSTUPENKY, FANSHOP, PERMICE)
   ======================================================== */
.page-hero { position: relative; background-color: var(--c-primary); padding: 80px 0 60px 0; border-bottom: 4px solid var(--c-accent); width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden; }
.page-watermarks { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; z-index: 0; }
.page-watermarks::before { content: attr(data-watermark); position: absolute; top: -10px; left: -10px; font-size: clamp(5rem, 10vw, 13rem); font-weight: 900; font-family: var(--f-heading); color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04); white-space: nowrap; line-height: 0.8; }
.page-watermarks::after { content: "#1912"; position: absolute; bottom: -15px; right: 15px; font-size: clamp(4rem, 8vw, 12rem); font-weight: 900; font-family: var(--f-heading); color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04); line-height: 0.8; }
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.page-title { color: var(--c-white); font-family: var(--f-heading); font-size: clamp(36px, 5vw, 56px); line-height: 1.1; text-transform: uppercase; margin-bottom: 20px; }
.page-perex { color: #cbd5e1; font-size: 18px; line-height: 1.6; }

/* ========================================================
   VSTUPENKY
   ======================================================== */
.tickets-container { padding: 80px 20px; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ticket-price-box { background: var(--c-primary); border-top: 4px solid var(--c-accent); padding: 40px; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); color: var(--c-white); }
.ticket-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 18px; }
.ticket-row:last-child { border-bottom: none; }
.ticket-price { font-family: var(--f-heading); font-size: 24px; color: var(--c-accent); font-weight: bold; }
.ticket-free { font-family: var(--f-heading); font-size: 20px; color: #10b981; font-weight: bold; text-transform: uppercase; }
.ticket-info-box { background: var(--bg-body, #f8fafc); padding: 40px; border-radius: 8px; border: 1px solid var(--border-color, #e2e8f0); }
.ticket-info-box h3 { font-family: var(--f-heading); color: var(--c-primary); font-size: 28px; margin-bottom: 20px; text-transform: uppercase; }
.info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.info-icon { background: var(--c-accent); color: var(--c-primary); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; flex-shrink: 0; }
@media (max-width: 768px) { .tickets-container { grid-template-columns: 1fr; padding: 50px 15px; } }

/* ========================================================
   PERMANENTKY
   ======================================================== */
.perm-container { padding: 80px 20px; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.perm-card { background: var(--c-white); border-radius: 8px; border: 1px solid var(--border-color, #e2e8f0); overflow: hidden; position: relative; display: flex; flex-direction: column; transition: border-color 0.3s ease; }
/* Pevné karty bez posunu, jen lehce zvýrazníme rámeček při najetí */
.perm-card:hover { border-color: var(--c-accent); }
.perm-header { background: var(--c-primary); color: var(--c-white); padding: 30px 20px; text-align: center; border-bottom: 4px solid #334155; }
.perm-header.vip { border-bottom-color: var(--c-accent); }
.perm-header h3 { font-family: var(--f-heading); font-size: 28px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.perm-price { font-size: 46px; font-weight: 900; font-family: var(--f-heading); line-height: 1; }
.perm-price span { font-size: 18px; font-weight: normal; font-family: var(--f-body); opacity: 0.8; }
.perm-body { padding: 30px; flex-grow: 1; }
.perm-list { list-style: none; padding: 0; margin: 0; }
.perm-list li { padding: 12px 0; border-bottom: 1px solid var(--bg-body, #f1f5f9); display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-main); }
.perm-list li:last-child { border-bottom: none; }
.perm-list li::before { content: "✓"; color: #10b981; font-weight: bold; font-size: 18px; }
.perm-footer { padding: 30px; text-align: center; background: var(--bg-body, #f8fafc); border-top: 1px solid var(--border-color, #e2e8f0); }
@media (max-width: 768px) { .perm-container { grid-template-columns: 1fr; padding: 50px 15px; } }

/* ========================================================
   FANSHOP
   ======================================================== */
.fanshop-info { background: var(--bg-body, #f8fafc); border: 1px solid var(--border-color, #e2e8f0); border-radius: 8px; padding: 25px; text-align: center; max-width: 800px; margin: 40px auto; color: var(--text-main); font-size: 15px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px; }
.product-card { background: var(--c-white); border: 1px solid var(--border-color, #e2e8f0); border-radius: 8px; overflow: hidden; text-align: center; transition: border-color 0.3s ease; }
/* Pevné karty bez posunu, jen rámeček při najetí */
.product-card:hover { border-color: var(--c-accent); }
.product-img-wrap { background: var(--bg-body, #f1f5f9); padding: 30px; height: 250px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border-color, #e2e8f0); }
.product-img-placeholder { width: 100px; height: 100px; background: #cbd5e1; border-radius: 50%; opacity: 0.5; }
.product-body { padding: 25px 20px; }
.product-title { font-family: var(--f-heading); font-size: 20px; color: var(--c-primary); text-transform: uppercase; margin-bottom: 10px; }
.product-price { font-size: 22px; font-weight: bold; color: var(--text-heading); margin-bottom: 15px; }
.product-btn { display: inline-block; background: var(--c-primary); color: var(--c-white); text-decoration: none; padding: 8px 20px; font-size: 14px; text-transform: uppercase; font-family: var(--f-heading); border-radius: 4px; transition: background 0.3s; }
.product-btn:hover { background: #334155; }
/* ========================================================
   E-SHOP DETAIL PRODUKTU (FANSHOP PRO)
   ======================================================== */
.eshop-container { max-width: 1200px; margin: 40px auto 80px auto; padding: 0 20px; }
.eshop-breadcrumbs { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.eshop-breadcrumbs a { color: var(--text-heading); text-decoration: none; font-weight: bold; }
.eshop-breadcrumbs a:hover { color: var(--c-primary); text-decoration: underline; }

.eshop-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 40px; }

/* --- FOTKA: BOX, IKONA LUPY A KINO REŽIM --- */
.eshop-image-box { position: relative; background: #fff; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; height: 500px; display: flex; align-items: center; justify-content: center; cursor: zoom-in; }
.eshop-zoom-icon { position: absolute; top: 15px; right: 15px; background: var(--c-white); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 5; pointer-events: none; color: var(--text-heading); transition: transform 0.2s; }
.eshop-image-box:hover .eshop-zoom-icon { transform: scale(1.1); }

.eshop-image-wrapper { width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-repeat: no-repeat; background-position: center; background-size: contain; }
.eshop-image-wrapper img { width: 100%; height: 100%; object-fit: contain; padding: 40px; transition: opacity 0.1s; }

/* --- LIGHTBOX (VYSKAKOVACÍ OKNO) --- */
.eshop-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.98); z-index: 999999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.eshop-lightbox.active { opacity: 1; pointer-events: auto; }
.eshop-lightbox img { max-width: 90vw; max-height: 90vh; background: #fff; padding: 40px; object-fit: contain; border-radius: 8px; transform: scale(0.95); transition: transform 0.3s ease; }
.eshop-lightbox.active img { transform: scale(1); }
.eshop-lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); z-index: 1000000; }
.eshop-lightbox-close:hover { color: var(--c-accent); }

/* --- ZBYTEK E-SHOPU --- */
.eshop-info-box { display: flex; flex-direction: column; justify-content: flex-start; padding-top: 10px; }
.eshop-brand { font-size: 11px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.eshop-title { font-family: var(--f-heading); font-size: clamp(28px, 4vw, 38px); color: var(--text-heading); text-transform: uppercase; margin-bottom: 20px; line-height: 1.1; }
.eshop-price { font-family: var(--f-heading); font-size: 36px; font-weight: bold; color: var(--text-heading); margin-bottom: 15px; }
.eshop-stock { color: #10b981; font-weight: 600; font-size: 13px; margin-bottom: 30px; display: flex; align-items: center; gap: 8px; }
.eshop-stock::before { content: ""; display: inline-block; width: 8px; height: 8px; background: #10b981; border-radius: 50%; }

.eshop-variants-title { font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; color: var(--text-heading); letter-spacing: 1px; }
.eshop-variants { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.eshop-variant-btn { border: 1px solid var(--border-color); background: var(--c-white); padding: 12px 20px; font-weight: 700; cursor: pointer; transition: all 0.2s; border-radius: 4px; color: var(--text-main); font-size: 14px; min-width: 60px; text-align: center; }
.eshop-variant-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.eshop-variant-btn.selected { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }

.eshop-buy-row { display: flex; gap: 15px; margin-bottom: 40px; }
.eshop-buy-btn { flex: 1; background: var(--c-primary); color: var(--c-white); border: none; padding: 20px; font-family: var(--f-heading); font-size: 16px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background 0.3s; border-radius: 4px; display: flex; justify-content: center; align-items: center; gap: 12px; text-decoration: none; }
.eshop-buy-btn:hover { background: #1a1a19; color: var(--c-accent); }
.eshop-buy-btn svg { width: 20px; height: 20px; }

.eshop-features { display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 25px 0; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.eshop-feature { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--text-heading); text-transform: uppercase; letter-spacing: 0.5px; }
.eshop-feature svg { width: 28px; height: 28px; color: var(--c-accent); flex-shrink: 0; }

.eshop-bottom-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-bottom: 80px; }
.eshop-desc h2, .eshop-faq h2, .eshop-related h2 { font-family: var(--f-heading); text-transform: uppercase; font-size: 22px; margin-bottom: 25px; color: var(--text-heading); }
.eshop-desc-content { font-size: 15px; line-height: 1.8; color: var(--text-main); }
.eshop-desc-content p { margin-bottom: 15px; }
.eshop-desc-content ul { padding-left: 20px; margin-bottom: 15px; }

/* FAQ Roletky */
.eshop-faq details { background: var(--c-white); border: 1px solid var(--border-color); margin-bottom: 12px; border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s; }
.eshop-faq details:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.eshop-faq summary { padding: 18px 20px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text-heading); font-size: 14px; }
.eshop-faq summary::-webkit-details-marker { display: none; }
.eshop-faq summary::after { content: "+"; font-size: 22px; color: var(--c-accent); transition: transform 0.3s; font-weight: normal; }
.eshop-faq details[open] summary::after { content: "−"; transform: rotate(180deg); color: var(--c-primary); }
.eshop-faq .faq-content { padding: 0 20px 20px 20px; font-size: 14px; line-height: 1.6; color: var(--text-muted); border-top: 1px solid var(--bg-body, #f1f5f9); margin-top: 5px; padding-top: 15px; }

/* Mohlo by se vam libit */
.eshop-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }

@media (max-width: 992px) {
    .eshop-bottom-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .eshop-top-grid { grid-template-columns: 1fr; gap: 30px; }
    .eshop-features { flex-direction: column; align-items: flex-start; gap: 15px; }
    .eshop-image-box { height: 350px; }
}
.sr-fanshop { background: var(--c-accent); color: var(--c-primary); font-weight: bold; }

/* ========================================================
   KLUB STYLY PRO ČLÁNKY (CITACE, HASHTAGY)
   ======================================================== */
.coach-quote {
    background-color: #fdfae5;
    border-left: 5px solid var(--c-accent);
    padding: 25px 35px 25px 45px;
    margin: 40px 0;
    font-style: italic;
    font-weight: bold;
    color: #1a1a1a;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}
.coach-quote::before {
    content: "“";
    font-size: 80px;
    color: var(--c-accent);
    position: absolute;
    left: 5px;
    top: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}
.article-subtitle {
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: var(--f-heading);
    font-size: 28px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--c-accent);
    display: inline-block;
    padding-bottom: 5px;
    color: var(--c-primary);
    text-align: left;
}
.article-hashtags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.article-hashtags span {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .coach-quote { font-size: 16px; padding: 20px 20px 20px 35px; }
}