@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

/* Základní reset a box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a; /* Tmavá, téměř černá pro pozadí a text */
    --secondary-color: #1bb2c3; /* Světle modrá/tyrkysová pro akcenty */
    --text-color: #f0f0f0; /* Světlý text na tmavém pozadí */
    --light-gray: #cccccc;
    --dark-gray: #333333;
    --font-family-heading: 'Montserrat', sans-serif; /* Moderní font pro nadpisy */
    --font-family-body: 'Open Sans', sans-serif; /* Čitelný font pro text */
    --spacing-unit: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden; /* Zamezí horizontálnímu scrollu */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--light-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--text-color);
    margin-bottom: var(--spacing-unit);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

/* Tlačítka */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Header */
.main-header {
    background-color: rgba(10, 10, 10, 0.9);
    padding: var(--spacing-unit) 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: bold;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.85)), url('assets/hero-bg.jpg') center/cover no-repeat;
}

#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.reasons-to-kickbox {
    margin-top: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
}

.reasons-to-kickbox h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.reasons-to-kickbox ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.reasons-to-kickbox ul li {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reasons-to-kickbox ul li .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Obecné styly pro sekce */
main section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

main section:nth-child(even) {
    background-color: var(--dark-gray);
}

main section h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

main section p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--dark-gray);
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav ul li a {
    color: var(--light-gray);
}

.footer-nav ul li a:hover {
    color: var(--secondary-color);
}

/* --- Hlavička podstránek --- */
.hero-section-subpage {
    padding: 10rem 0 5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(27, 178, 195, 0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Unikátní pozadí pro jednotlivé podstránky s tmavým přechodem */
.hero-about {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(27, 178, 195, 0.2) 100%), url('assets/hero-o-projektu.jpg');
}
.hero-parents {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(27, 178, 195, 0.2) 100%), url('assets/hero-pro-rodice.jpg');
}
.hero-map {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(27, 178, 195, 0.2) 100%), url('assets/hero-kluby-mapa.jpg');
}
.hero-ambassadors {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(27, 178, 195, 0.2) 100%), url('assets/hero-ambasadori-novinky.jpg');
}
.hero-clubs {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(27, 178, 195, 0.2) 100%), url('assets/hero-pro-kluby.jpg');
}
.hero-contact {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(19, 181, 234, 0.15) 100%), url('assets/hero-bg.jpg');
}
.hero-about-kickbox {
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(27, 178, 195, 0.2) 100%), url('assets/hero-bg.jpg');
}

.hero-section-subpage h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-section-subpage p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Sekce a Gridy --- */
.content-section {
    padding: 6rem 0;
}

/* Ambasadoři & Novinky */
.ambassador-grid, .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.ambassador-card, .news-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-item {
    align-items: flex-start;
    text-align: left;
}

.ambassador-card::before, .news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.ambassador-card:hover::before, .news-item:hover::before {
    transform: scaleX(1);
}

.ambassador-card:hover, .news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(27, 178, 195, 0.1);
    border-color: rgba(27, 178, 195, 0.3);
}

.ambassador-img, .news-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.ambassador-card:hover .ambassador-img, .news-item:hover .news-img {
    transform: scale(1.02);
}

.ambassador-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-date {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.news-date::before {
    content: '📅';
}

.ambassador-card p, .news-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Pilíře & Výhody */
.pillars-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pillar-item, .benefit-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.pillar-item:hover, .benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(27, 178, 195, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pillar-item h3, .benefit-item h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.pillar-item h3 .icon, .benefit-item h3 .icon {
    font-size: 1.8rem;
}

/* Bezpečnostní prvky */
.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(27, 178, 195, 0.2);
    transform: translateY(-5px);
}

.feature-item h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Ovládací prvky mapy */
.map-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

#club-search {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--text-color);
    font-family: var(--font-family-body);
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    outline: none;
    transition: all 0.3s ease;
}

#club-search:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(27, 178, 195, 0.2);
}

/* Seznam ke stažení */
.download-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.download-list li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Vlastní špendlíky na mapě a popup okna (Leaflet) --- */
.custom-marker-icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.marker-pin {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    background: var(--secondary-color);
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -10px 0 0 -10px;
    box-shadow: 0 0 10px rgba(27, 178, 195, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.marker-pin::after {
    content: '';
    width: 8px;
    height: 8px;
    margin: 5px 0 0 5px;
    background: var(--primary-color);
    position: absolute;
    border-radius: 50%;
}

.marker-pulse {
    background: rgba(27, 178, 195, 0.4);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    animation: pulsate 1.8s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

/* Tmavý vzhled vyskakovacího okna mapy (Leaflet Dark Popup) */
.leaflet-popup-content-wrapper {
    background: #151515 !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(27, 178, 195, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-radius: 12px !important;
    padding: 0.5rem;
}

.leaflet-popup-tip {
    background: #151515 !important;
    border: 1px solid rgba(27, 178, 195, 0.3);
}

.leaflet-popup-content {
    margin: 12px 18px 12px 12px !important;
    line-height: 1.5;
}

.leaflet-popup-content h3 {
    font-family: var(--font-family-heading);
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.3rem;
}

.leaflet-popup-content p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem !important;
    color: var(--light-gray);
}

.leaflet-popup-content a.btn-popup {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.leaflet-popup-content a.btn-popup:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--light-gray) !important;
    font-size: 1.2rem !important;
    padding: 6px 12px 0 0 !important;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: var(--secondary-color) !important;
}

/* Leaflet Popup Layout */
.popup-container {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 320px;
    padding: 2px;
}

.popup-logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.popup-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.popup-info {
    flex-grow: 1;
}

/* --- B2B Stahování (download-grid) --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(27, 178, 195, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.file-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(27, 178, 195, 0.1);
    border: 1px solid rgba(27, 178, 195, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.file-icon {
    font-size: 2.5rem;
}

.file-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    line-height: 1;
}

.download-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-family: var(--font-family-heading);
}

.download-card p {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.download-card .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
}

/* --- Sociální sítě v hlavičce --- */
.header-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 1.5rem;
}

.header-socials a {
    color: var(--light-gray);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-socials a:hover {
    color: var(--secondary-color);
}

.social-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.header-socials a:hover .social-icon {
    transform: scale(1.15);
}

/* --- Sociální sítě v patičce --- */
.footer-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-socials a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 178, 195, 0.3);
}

/* --- Sekce partnerů --- */
.section-partners {
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo {
    height: 65px;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(1) brightness(2.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.partner-cta {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(27, 178, 195, 0.25);
    border-radius: 16px;
    padding: 3rem;
    max-width: 750px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.partner-cta:hover {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.02);
}

.partner-cta h3 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-family: var(--font-family-heading);
    font-size: 1.4rem;
}

.partner-cta p {
    color: var(--light-gray);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.partner-cta .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-transform: uppercase;
}

/* --- Kvíz sekce --- */
.section-quiz {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.quiz-intro-text {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.quiz-box {
    max-width: 650px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.quiz-progress-bar .progress {
    height: 100%;
    width: 0%;
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(27, 178, 195, 0.5);
    transition: width 0.4s ease;
}

.quiz-question {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-family: var(--font-family-heading);
    text-align: left;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    font-family: var(--font-family-body);
    line-height: 1.4;
}

.quiz-option-btn:hover {
    background-color: rgba(27, 178, 195, 0.08);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Výsledková karta */
.quiz-result-card {
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.result-badge {
    display: inline-block;
    background-color: rgba(27, 178, 195, 0.1);
    border: 1px solid rgba(27, 178, 195, 0.3);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.result-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.result-desc {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-actions .btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.d-none {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Kontakty - pyramidová struktura --- */
.contact-level {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-level:hover {
    border-color: rgba(27, 178, 195, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--font-family-heading);
}

.grid-subtitle {
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

/* Level 1: ČAK */
.level-one {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cak-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.8rem;
    border-radius: 10px;
    text-transform: uppercase;
}

.level-one h2 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.cak-intro {
    font-size: 1.05rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1.2rem;
}

.cak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cak-info-col p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--light-gray);
}

.cak-info-col p strong {
    color: var(--text-color);
}

.cak-info-col a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cak-socials-col .social-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cak-socials-col .social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-social {
    text-align: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* Level separators */
.level-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.5rem 0;
}

.separator-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.separator-arrow {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: -5px;
    text-shadow: 0 0 8px var(--secondary-color);
}

/* Level 2: Vedení */
.level-two-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border: none;
    background: none;
}

.level-two-grid:hover {
    background: none;
}

.member-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.member-card:hover {
    border-color: rgba(27, 178, 195, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}

.member-role {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.member-card h4 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--font-family-heading);
}

.member-desc {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 45px;
}

.member-contacts p {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.member-contacts a {
    color: var(--secondary-color);
}

.placeholder-card {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.85;
}

/* Level 3: Garanti */
.level-three-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    border: none;
    background: none;
}

.level-three-grid:hover {
    background: none;
}

.guarantor-card {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.guarantor-card:hover {
    border-color: rgba(27, 178, 195, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.style-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #fff;
}

/* Barvy odznaků disciplín */
.pointfighting { background-color: #e63946; }
.lightcontact { background-color: #457b9d; }
.kicklight { background-color: #2a9d8f; }
.fullcontact { background-color: #9b5de5; }
.lowkick { background-color: #f15bb5; }
.k1 { background-color: #f77f00; }

.guarantor-card h4 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-family: var(--font-family-heading);
}

.guarantor-status {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.guarantor-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.guarantor-card a {
    color: var(--secondary-color);
}

/* --- Porovnání disciplín (Tatami vs Ring) --- */
.compare-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(27, 178, 195, 0.2);
}

.compare-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tatami-header {
    background: linear-gradient(135deg, rgba(69, 123, 157, 0.2) 0%, transparent 100%);
}

.ring-header {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, transparent 100%);
}

.compare-header h3 {
    margin: 0;
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
}

.compare-header .badge {
    background-color: rgba(69, 123, 157, 0.15);
    border: 1px solid rgba(69, 123, 157, 0.4);
    color: #88b0ca;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.compare-header .full-badge {
    background-color: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: #e63946;
}

.compare-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.compare-body .intro-desc {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 70px;
}

.compare-body ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compare-body ul li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.compare-body ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.disciplines-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Glow efekty pro garanty na hover */
.guarantor-card {
    transition: all 0.3s ease;
}

.guarantor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.guarantor-card:has(.pointfighting):hover { border-color: #e63946; box-shadow: 0 0 15px rgba(230, 57, 70, 0.25); }
.guarantor-card:has(.lightcontact):hover { border-color: #457b9d; box-shadow: 0 0 15px rgba(69, 123, 157, 0.25); }
.guarantor-card:has(.kicklight):hover { border-color: #2a9d8f; box-shadow: 0 0 15px rgba(42, 157, 143, 0.25); }
.guarantor-card:has(.fullcontact):hover { border-color: #9b5de5; box-shadow: 0 0 15px rgba(155, 93, 229, 0.25); }
.guarantor-card:has(.lowkick):hover { border-color: #f15bb5; box-shadow: 0 0 15px rgba(241, 91, 181, 0.25); }
.guarantor-card:has(.k1):hover { border-color: #f77f00; box-shadow: 0 0 15px rgba(247, 127, 0, 0.25); }

/* Avatar a uspořádání vedení */
.member-header-layout {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.member-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--font-family-heading);
    font-weight: bold;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(27, 178, 195, 0.3);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-avatar {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-gray);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    font-size: 1.8rem;
    box-shadow: none;
}

.member-title-layout {
    flex-grow: 1;
    text-align: left;
}

.member-title-layout h4 {
    margin: 0 0 0.4rem 0 !important;
}

.member-title-layout .member-desc {
    margin: 0 !important;
    min-height: auto;
}

.member-contacts p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

/* --- Kontaktní formulář --- */
.contact-form-section {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    outline: none;
    font-family: var(--font-family-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(27, 178, 195, 0.15);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.form-consent label {
    font-size: 0.85rem;
    color: var(--light-gray);
    cursor: pointer;
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 30px !important;
}

.form-status-msg {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.status-success {
    background-color: rgba(42, 157, 143, 0.15);
    border: 1px solid rgba(42, 157, 143, 0.3);
    color: #52b788;
}

/* --- Video Lightbox Modal --- */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 10000;
    background-color: #0b0c10;
    border: 1px solid rgba(27, 178, 195, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10100;
    transition: color 0.3s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 3.5rem; /* Odstup pro křížek */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Odkazy pro spuštění videa v textu */
.video-trigger {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--secondary-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.video-trigger:hover {
    color: var(--secondary-color);
    border-bottom-style: solid;
}

.play-icon {
    font-size: 0.75rem;
    color: var(--secondary-color);
    background-color: rgba(27, 178, 195, 0.1);
    border: 1px solid rgba(27, 178, 195, 0.3);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-left: 2px; /* Vycentrování trojúhelníčku */
    transition: all 0.3s ease;
}

.video-trigger:hover .play-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.15);
}

/* --- Regiony Akordeony (kluby-mapa.html) --- */
.region-accordion {
    list-style: none;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.region-accordion:hover {
    border-color: rgba(27, 178, 195, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
}

.region-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    color: var(--text-color);
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: all 0.3s ease;
}

.region-header:hover {
    color: var(--secondary-color);
}

.region-header.active {
    background-color: rgba(27, 178, 195, 0.05);
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--light-gray);
}

.region-header.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.region-content {
    display: none;
    background-color: rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease;
}

.region-content.open {
    display: block;
}

/* --- ČAK logo v hlavičce a sociální sítě --- */
.cak-header-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cak-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.member-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.member-socials a {
    color: var(--light-gray);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-socials a:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.member-socials .social-icon {
    width: 18px;
    height: 18px;
}

.member-socials-placeholder {
    opacity: 0.3;
}

.social-link-placeholder {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
}

.member-footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
    margin-top: 1.5rem;
}

.member-contacts-info p {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.member-contacts-info p:last-child {
    margin-bottom: 0;
}

.member-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 0 !important;
}

/* Garanti sociální sítě */
.guarantor-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.guarantor-card:hover .guarantor-socials {
    opacity: 0.8;
}

.guarantor-socials .social-link-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.guarantor-socials .social-icon {
    width: 14px;
    height: 14px;
}

.captcha-group input {
    max-width: 250px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- FAQ Sekce (pro-rodice.html) --- */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-container {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(27, 178, 195, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text-color);
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question.active {
    color: var(--secondary-color);
    background-color: rgba(27, 178, 195, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 0.8rem;
    color: var(--light-gray);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question.active .faq-icon {
    color: var(--secondary-color);
}

.faq-answer {
    display: none;
    padding: 1.25rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    color: var(--light-gray);
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

.faq-answer.open {
    display: block;
}

/* --- Spinner Loader (Novinky) --- */
.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(27, 178, 195, 0.15);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Article Lightbox --- */
.article-lightbox-content {
    max-width: 800px !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0 !important;
    display: block;
}

.article-detail-body {
    padding: 0;
}

.article-detail-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-detail-meta {
    padding: 2rem 2.5rem 0.5rem 2.5rem;
}

.article-detail-body h1 {
    padding: 0 2.5rem 1.5rem 2.5rem;
    margin: 0;
    font-family: var(--font-family-heading);
    font-size: 2rem;
    line-height: 1.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    color: var(--text-color);
}

.article-detail-text {
    padding: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray);
    text-align: left;
}

.article-detail-text p {
    margin-bottom: 1.5rem;
}

.article-detail-text p:last-child {
    margin-bottom: 0;
}

.article-detail-text h2, .article-detail-text h3 {
    font-family: var(--font-family-heading);
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Responzivní design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-header .container {
        justify-content: space-between;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        padding-bottom: var(--spacing-unit);
    }

    .main-nav.active ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav.active ul li {
        margin: 0.5rem 0;
    }

    .hero-section {
        padding-top: 120px; /* Dostatečný prostor pod fixní hlavičkou */
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .reasons-to-kickbox ul {
        flex-direction: column;
    }

    .cak-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .level-two-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 3rem;
    }

    .disciplines-compare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    main section {
        padding: 4rem 0;
    }

    .reasons-to-kickbox ul li {
        font-size: 1rem;
    }

    .main-footer .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .quiz-box {
        padding: 2.5rem 1.5rem;
    }

    .quiz-question {
        font-size: 1.25rem;
    }

    .quiz-option-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .level-one {
        padding: 2rem 1.5rem;
    }

    .cak-header-layout {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cak-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section {
        padding: 2.5rem 1.5rem;
    }

    .compare-body {
        padding: 1.5rem;
    }

    .compare-header {
        padding: 1.5rem;
    }

    .member-header-layout {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .member-title-layout {
        text-align: center;
    }

    .member-footer-layout {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        text-align: center;
    }

    .member-contacts-info p {
        justify-content: center;
    }

    .article-detail-img {
        height: 220px;
    }
    .article-detail-meta {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    }
    .article-detail-body h1 {
        padding: 0 1.5rem 1rem 1.5rem;
        font-size: 1.5rem;
    }
    .article-detail-text {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .main-header .logo {
        font-size: 1.5rem;
    }

    .nav-toggle {
        font-size: 1.5rem;
    }

    .reasons-to-kickbox h3 {
        font-size: 1.5rem;
    }
}

/* --- ONLINE GENERÁTOR LETÁKŮ --- */
.generator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.generator-controls {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.control-label {
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.format-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.format-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.format-btn.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.template-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.template-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-align: center;
}

.template-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.template-option:hover .template-thumb {
    transform: scale(1.03);
    border-color: rgba(27, 178, 195, 0.5);
}

.template-option.active .template-thumb {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(27, 178, 195, 0.4);
}

.template-option span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--light-gray);
    line-height: 1.2;
    transition: color 0.3s;
}

.template-option.active span {
    color: var(--secondary-color);
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
}

.input-row input {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 0.8rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-row input:focus {
    border-color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(27, 178, 195, 0.15);
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.action-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

/* Náhledová oblast */
.generator-preview-wrapper {
    position: relative;
}

.generator-preview-sticky {
    position: sticky;
    top: 100px;
}

.live-preview-container {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

.poster-preview {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: width 0.4s ease, height 0.4s ease;
}

/* Poměry stran */
.poster-preview.aspect-a3 {
    width: 380px;
    height: 537px;
}

.poster-preview.aspect-9-16 {
    width: 310px;
    height: 551px;
}

.poster-preview.aspect-4-5 {
    width: 380px;
    height: 475px;
}

/* Stíny a přechody */
.overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- Náborový plakát styly --- */
.poster-recruitment-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.poster-header {
    padding: 2.2rem 1.5rem 0 1.5rem;
    text-align: center;
}

.poster-badge {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 3px;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.poster-main-title {
    font-family: var(--font-family-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 3px 6px rgba(0,0,0,0.9);
    letter-spacing: 1px;
}

.poster-sub-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1.5px;
    margin-top: 0.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.poster-info-card {
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(27, 178, 195, 0.25);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 0 1.5rem 2.8rem 1.5rem; /* Necháváme dostatek prostoru nad logy v patičce */
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.preview-club-name {
    font-family: var(--font-family-heading);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(27, 178, 195, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.preview-details-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.detail-item {
    display: flex;
    font-size: 0.8rem;
    line-height: 1.35;
}

.detail-label {
    font-weight: bold;
    color: var(--secondary-color);
    width: 60px;
    flex-shrink: 0;
}

.detail-value {
    color: #fff;
    font-weight: 500;
}

.preview-footer-line {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: #eee;
}

.preview-contact-col {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-weight: 500;
    text-align: left;
}

.preview-phone, .preview-email {
    line-height: 1.2;
}

.preview-web {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Logos patička */
.poster-logos-wrapper {
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 3;
}

.poster-logo-img {
    height: 18px;
    width: auto;
    display: block;
}

.cak-association-text {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Informační leták styly --- */
.poster-info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.2rem 1.5rem 2.8rem 1.5rem;
}

.info-header {
    font-family: var(--font-family-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.info-sub-header {
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.info-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    margin-bottom: 1.2rem;
}

.pillar {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(4px);
    border-left: 3px solid var(--secondary-color);
    padding: 0.6rem 0.8rem;
    border-radius: 0 8px 8px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pillar-title {
    font-size: 0.72rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.15rem;
    letter-spacing: 0.5px;
}

.pillar-text {
    font-size: 0.62rem;
    color: #e0e0e0;
    line-height: 1.3;
}

.info-club-card {
    background-color: rgba(10, 10, 10, 0.85);
    border: 1.5px solid var(--secondary-color);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
}

.info-club-title {
    font-size: 0.68rem;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.info-club-name-val {
    font-family: var(--font-family-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.15rem;
}

.info-club-details-line {
    font-size: 0.68rem;
    color: #ddd;
    margin-bottom: 0.15rem;
    font-weight: 500;
}

.info-club-contact-line {
    font-size: 0.62rem;
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- Styly pro různé formáty náhledu --- */

/* IG Story (9:16) */
.poster-preview.aspect-9-16 .poster-main-title {
    font-size: 2.2rem;
}
.poster-preview.aspect-9-16 .poster-header {
    padding: 2rem 1.2rem 0 1.2rem;
}
.poster-preview.aspect-9-16 .poster-info-card {
    margin: 0 1.2rem 2.8rem 1.2rem;
    padding: 0.9rem;
}
.poster-preview.aspect-9-16 .preview-club-name {
    font-size: 1.1rem;
}
.poster-preview.aspect-9-16 .detail-item {
    font-size: 0.72rem;
}
.poster-preview.aspect-9-16 .preview-footer-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 0.68rem;
}

/* IG Post (4:5) */
.poster-preview.aspect-4-5 .poster-main-title {
    font-size: 2.3rem;
}
.poster-preview.aspect-4-5 .poster-header {
    padding: 1.5rem 1.2rem 0 1.2rem;
}
.poster-preview.aspect-4-5 .poster-info-card {
    margin: 0 1.2rem 2.6rem 1.2rem;
    padding: 0.9rem;
}
.poster-preview.aspect-4-5 .preview-club-name {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}
.poster-preview.aspect-4-5 .preview-details-grid {
    gap: 0.25rem;
    margin-bottom: 0.4rem;
}
.poster-preview.aspect-4-5 .detail-item {
    font-size: 0.72rem;
}
.poster-preview.aspect-4-5 .preview-footer-line {
    font-size: 0.68rem;
    padding-top: 0.4rem;
}

/* --- Responzivní přizpůsobení --- */
@media (max-width: 992px) {
    .generator-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .generator-preview-sticky {
        position: static;
    }
    
    .live-preview-container {
        min-height: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .generator-controls {
        padding: 1.2rem;
        gap: 1.5rem;
    }
    
    .template-selector {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .live-preview-container {
        padding: 1rem;
        min-height: auto;
    }
    
    .poster-preview {
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
        transform: none;
    }

    /* Scale down poster fonts and spacing on mobile */
    .poster-preview .poster-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 0.2rem;
    }

    .poster-preview .poster-main-title {
        font-size: 2.1rem;
    }

    .poster-preview .poster-sub-title {
        font-size: 0.75rem;
    }

    .poster-preview .poster-info-card {
        padding: 0.8rem;
        margin: 0 0.8rem 1.8rem 0.8rem;
        border-radius: 8px;
    }

    .poster-preview .preview-club-name {
        font-size: 0.92rem;
        padding-bottom: 0.3rem;
        margin-bottom: 0.4rem;
    }

    .poster-preview .preview-details-grid {
        gap: 0.2rem;
        margin-bottom: 0.4rem;
    }

    .poster-preview .detail-item {
        font-size: 0.65rem;
    }

    .poster-preview .detail-label {
        width: 45px;
    }

    .poster-preview .preview-footer-line {
        font-size: 0.58rem;
        padding-top: 0.3rem;
    }

    .poster-preview .poster-logos-wrapper {
        padding: 0 0.8rem;
        bottom: 0.5rem;
    }

    .poster-preview .poster-logo-img {
        height: 12px;
    }

    .poster-preview .cak-association-text {
        font-size: 9px;
    }
}

/* --- AMBASADOŘI - DETAIL A PODSTRÁNKY --- */
.detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.detail-avatar-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.detail-portrait {
    width: 100%;
    display: block;
    object-fit: cover;
    height: auto;
}

.detail-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.detail-card h3 {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.detail-stats-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-stats-table th, .detail-stats-table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}

.detail-stats-table th {
    font-weight: 600;
    color: var(--text-color);
    width: 35%;
}

.detail-stats-table td {
    color: var(--light-gray);
}

.detail-stats-table tr:last-child th, .detail-stats-table tr:last-child td {
    border-bottom: none;
}

.detail-socials-box {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
}

.detail-socials-box .social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.detail-socials-box .social-link:hover {
    background-color: var(--secondary-color);
    color: #050b14;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.detail-main {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
}

.detail-block h2 {
    font-family: var(--font-family-heading);
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.detail-block h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.detail-list {
    list-style: none;
    padding-left: 0;
}

.detail-list li {
    font-size: 1.05rem;
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detail-list li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.interview-container {
    margin-top: 2rem;
}

.interview-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.interview-q {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-family: var(--font-family-heading);
}

.interview-a {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray);
}

#ambassadors-search:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 10px rgba(27, 178, 195, 0.2);
}

.filter-btn.active {
    background-color: var(--secondary-color) !important;
    color: #050b14 !important;
    border-color: var(--secondary-color) !important;
}

/* Responzivní detail */
@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .detail-avatar-container {
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }
    
    .detail-main {
        padding: 2rem 1.5rem;
    }
}
/* --- Videokarty disciplín na podstránce O kickboxu --- */
.discipline-item-row {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.discipline-item-row:hover {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(27, 178, 195, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.discipline-item-row:hover .play-overlay {
    background-color: rgba(27, 178, 195, 0.2) !important;
    color: var(--text-color) !important;
}

.discipline-item-row:hover .play-overlay span {
    transform: scale(1.2);
}

.discipline-video-thumb .play-overlay span {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* --- TISKOVÉ STYLY PRO PDF EXPORT --- */
@media print {
    /* Skryjeme celý web kromě samotného plakátu */
    body * {
        visibility: hidden;
    }
    
    .generator-preview-wrapper,
    .generator-preview-wrapper *,
    #poster-preview,
    #poster-preview * {
        visibility: visible;
    }
    
    /* Vynutíme tisk pozadí a barev */
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: #000 !important;
    }

    /* Nastavení samotného tiskového boxu */
    .generator-preview-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: none !important;
    }
    
    .live-preview-container {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    #poster-preview {
        position: absolute;
        left: 0;
        top: 0;
        width: 100vw !important;
        height: 100vh !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
    }
    
    /* Skryjeme scrollbary a navigace */
    @page {
        size: auto;
        margin: 0;
    }
}
