/**
 * ============================================
 * RESPINNERSTV - Base Styles
 * ============================================
 * Reset, základní styly, typografie, utility
 * NEO CYBERPUNK EDITION
 * ============================================
 */

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
}

/* Scale down layout for 1080p monitors (≤1920px) — designed for 2K */
@media (max-width: 1920px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 1440px) {
    html {
        font-size: 14.5px;
    }
}

/* Restore full size for 2K+ */
@media (min-width: 2200px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Cyberpunk body enhancements */
body.cyber-body {
    background-color: var(--bg-dark);
    background-attachment: fixed;
}

body.cyber-body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 80% at 50% -20%, var(--alpha-purple-15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse 60% 60% at 0% 100%, var(--alpha-purple-12) 0%, transparent 40%),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(199, 21, 133, 0.08) 0%, transparent 50%);
}

body.cyber-body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle 400px at 30% 20%, var(--alpha-purple-10) 0%, transparent 70%),
        radial-gradient(circle 300px at 70% 70%, var(--alpha-cyan-8) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}



/* ============================================
   SCROLLBAR - NEON STYLE
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-secondary-light));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(13, 11, 26, 0.8);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}

/* ============================================
   FOCUS
   ============================================ */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   LINKS
   ============================================ */
a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

/* ============================================
   IMAGES
   ============================================ */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

img {
    object-fit: cover;
}

/* ============================================
   LISTS
   ============================================ */
ul, ol {
    list-style: none;
}

/* ============================================
   BUTTONS & INPUTS
   ============================================ */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--line-height-tight);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Font variety helpers */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-accent  { font-family: var(--font-accent); }
.font-body    { font-family: var(--font-body); }

h1 {
    font-size: clamp(2.5rem, 8vw, var(--font-size-6xl));
}

h2 {
    font-size: clamp(2rem, 5vw, var(--font-size-4xl));
}

h3 {
    font-size: clamp(1.5rem, 4vw, var(--font-size-2xl));
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 700;
}

/* ============================================
   TEXT GRADIENTS
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.container-wide {
    max-width: var(--container-wide);
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Unified section background - removed, now using section-inner cards */
section:not(.hero-section) {
    background: transparent;
    padding: var(--space-12) 0;
}

/* Section inner card - creates floating glass card effect */
section:not(.hero-section) > .container,
section:not(.hero-section) > .container-wide {
    background: linear-gradient(
        145deg,
        rgba(22, 18, 50, 0.55) 0%,
        rgba(14, 11, 32, 0.6) 50%,
        rgba(22, 18, 50, 0.55) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(145, 100, 255, 0.12);
    border-radius: var(--border-radius-lg);
    padding: var(--space-12) var(--space-8);
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 
        0 25px 60px -15px rgba(6, 4, 16, 0.5),
        0 0 80px -20px var(--alpha-purple-12),
        inset 0 1px 0 var(--alpha-white-6);
    overflow: hidden;
}

/* Ensure all children of containers take full width */
section:not(.hero-section) > .container > *,
section:not(.hero-section) > .container-wide > * {
    width: 100%;
}

/* Top glowing edge for section cards */
section:not(.hero-section) > .container::before,
section:not(.hero-section) > .container-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--alpha-purple-40) 20%,
        rgba(0, 212, 255, 0.4) 50%,
        var(--alpha-purple-40) 80%,
        transparent 100%
    );
}

/* Side glow effects */
section:not(.hero-section) > .container::after,
section:not(.hero-section) > .container-wide::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: -1px;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--alpha-purple-30) 30%,
        rgba(0, 212, 255, 0.3) 70%,
        transparent 100%
    );
    filter: blur(1px);
}

/* Alternating accent for every other section */
section:not(.hero-section):nth-of-type(even) > .container,
section:not(.hero-section):nth-of-type(even) > .container-wide {
    box-shadow: 
        0 25px 60px -15px rgba(6, 4, 16, 0.5),
        0 0 80px -20px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 var(--alpha-white-6);
}

section:not(.hero-section):nth-of-type(even) > .container::before,
section:not(.hero-section):nth-of-type(even) > .container-wide::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.4) 20%,
        var(--alpha-purple-35) 50%,
        rgba(0, 212, 255, 0.4) 80%,
        transparent 100%
    );
}

/* Space between section cards */
section:not(.hero-section) + section:not(.hero-section) {
    margin-top: var(--space-8);
}

/* Margin for container to show background on sides */
section:not(.hero-section) > .container,
section:not(.hero-section) > .container-wide {
    margin-left: var(--space-6);
    margin-right: var(--space-6);
    max-width: calc(var(--container-width) - var(--space-12));
}

section:not(.hero-section) > .container-wide {
    max-width: calc(var(--container-wide) - var(--space-12));
}

/* Right side glow */
section:not(.hero-section) > .container .section-glow-right,
section:not(.hero-section) > .container-wide .section-glow-right {
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: -1px;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--alpha-purple-30) 30%,
        rgba(0, 212, 255, 0.3) 70%,
        transparent 100%
    );
    filter: blur(1px);
    pointer-events: none;
}

.main-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--nav-height);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    background: rgba(var(--color-primary-rgb), 0.1);
    border: 1px solid rgba(var(--color-primary-rgb), 0.3);
    border-radius: var(--border-radius-full);
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-12);
    padding: var(--space-6);
    animation: sectionCtaAppear 0.6s ease-out;
}

@keyframes sectionCtaAppear {
    from {
        opacity: 0.6;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-cta p {
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

/* ============================================
   GLOBAL ICON ANIMATIONS
   ============================================ */

/* Float animation for decorative icons */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(6deg); }
    75% { transform: rotate(-6deg); }
}

/* Section title icons bounce */
.section-title .title-icon,
.section-header .section-tag .badge-icon,
.section-tag span:first-child {
    display: inline-block;
    animation: iconFloat 2.5s ease-in-out infinite;
}

/* Feature / value card icons pulse */
.feature-icon,
.value-icon,
.benefit-icon,
.stat-emoji {
    display: inline-block;
    animation: iconPulse 3s ease-in-out infinite;
}

/* Platform / social icons have subtle float */
.platform-logo,
.cta-reel {
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

/* Stagger icon animations so they don't all pulse together */
.feature-card:nth-child(2) .feature-icon,
.value-card:nth-child(2) .value-icon,
.benefit-card:nth-child(2) .benefit-icon,
.platform-card:nth-child(2) .platform-icon { animation-delay: 0.3s; }

.feature-card:nth-child(3) .feature-icon,
.value-card:nth-child(3) .value-icon,
.benefit-card:nth-child(3) .benefit-icon,
.platform-card:nth-child(3) .platform-icon { animation-delay: 0.6s; }

.feature-card:nth-child(4) .feature-icon,
.value-card:nth-child(4) .value-icon,
.benefit-card:nth-child(4) .benefit-icon,
.platform-card:nth-child(4) .platform-icon { animation-delay: 0.9s; }

.feature-card:nth-child(5) .feature-icon,
.benefit-card:nth-child(5) .benefit-icon,
.platform-card:nth-child(5) .platform-icon { animation-delay: 1.2s; }

.feature-card:nth-child(6) .feature-icon,
.benefit-card:nth-child(6) .benefit-icon,
.platform-card:nth-child(6) .platform-icon { animation-delay: 1.5s; }

/* Badge icons spin subtly */
.hero-badge .badge-icon,
.hero-badge-new .badge-icon {
    display: inline-block;
    animation: iconSpin 3s ease-in-out infinite;
}

/* Button icons float */
.btn .btn-icon {
    display: inline-block;
    animation: iconFloat 2s ease-in-out infinite;
}

/* Buttons moved to components/buttons.css */
/* Cards moved to components/cards.css */

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-particles);
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display */
.hidden { display: none !important; }
.visible { display: block !important; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Flex Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* Spacing - Margins */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

/* Width */
.w-full { width: 100%; }
.max-w-full { max-width: 100%; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--color-accent); }

/* ============================================
   UNIFIED 3D BACKGROUNDS
   ============================================ */

/* Main page background - handled by body.cyber-body::before animation */

/* Section with 3D depth effect */
section {
    position: relative;
    z-index: 1;
}

/* 3D Card/Content wrapper background */
.page-content-wrapper,
.section-content-wrapper,
.content-3d {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(22, 18, 50, 0.55) 0%,
        rgba(12, 10, 28, 0.6) 50%,
        rgba(22, 18, 50, 0.55) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(145, 100, 255, 0.12);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(6, 4, 16, 0.6),
        0 0 0 1px var(--alpha-white-4) inset;
}

/* Glowing edge effect */
.page-content-wrapper::before,
.section-content-wrapper::before,
.content-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--alpha-purple-50) 25%,
        rgba(0, 212, 255, 0.5) 50%,
        var(--alpha-purple-50) 75%,
        transparent 100%
    );
}

/* Animated background grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--alpha-purple-4) 1px, transparent 1px),
        linear-gradient(90deg, var(--alpha-purple-4) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Floating orbs background - Static for performance */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
}

.bg-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: -100px;
    left: -100px;
}

.bg-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

/* ============================================
   INTERACTIVITY & HOVER EFFECTS
   ============================================ */

/* Smooth hover lift for interactive cards */
.card,
.bonus-card,
.streamer-card,
.win-card,
.stat-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.card:hover,
.bonus-card:hover,
.streamer-card:hover,
.win-card:hover,
.stat-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 15px 30px rgba(6, 4, 16, 0.35),
        0 0 20px var(--alpha-purple-10);
}

/* Magnetic button effect */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* Interactive link underline — removed per user request */

/* Focus glow for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--alpha-purple-50), 0 0 20px var(--alpha-purple-30);
}


/* ============================================
   RESPONSIVE - BASE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    section {
        padding: var(--section-padding-tablet) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-12);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: var(--section-padding-mobile) 0;
    }
    
    /* Reduce section card margins on mobile */
    section:not(.hero-section) > .container,
    section:not(.hero-section) > .container-wide {
        margin-left: var(--space-3);
        margin-right: var(--space-3);
        padding: var(--space-8) var(--space-4);
        border-radius: var(--border-radius);
    }
    
    section:not(.hero-section) + section:not(.hero-section) {
        margin-top: var(--space-4);
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .section-header {
        margin-bottom: var(--space-10);
    }
    
    .btn {
        padding: var(--space-4) var(--space-6);
    }
    
    .btn-lg {
        padding: var(--space-4) var(--space-8);
        font-size: var(--font-size-base);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    /* Even smaller margins on small mobile */
    section:not(.hero-section) > .container,
    section:not(.hero-section) > .container-wide {
        margin-left: var(--space-2);
        margin-right: var(--space-2);
        padding: var(--space-6) var(--space-3);
        border-radius: var(--border-radius-sm);
    }
}

/* Smooth glassmorphic hover glow */
.glass-glow {
    position: relative;
}

.glass-glow::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        var(--alpha-purple-15), 
        rgba(0, 212, 255, 0.1), 
        var(--alpha-purple-15));
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: opacity var(--transition-slow);
}

.glass-glow:hover::after {
    opacity: 1;
}

/* Section divider - subtle gradient line between sections */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--alpha-purple-30) 20%, 
        rgba(0, 212, 255, 0.2) 50%, 
        var(--alpha-purple-30) 80%, 
        transparent);
    border: none;
    margin: 0;
}

/* ============================================
   SCHEDULE / CALENDAR - Týden + Měsíc
   Použit na index.php i stream.php
   ============================================ */
.schedule-section {
    padding: 100px 0;
    background: var(--alpha-black-20);
    position: relative;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--twitch-purple), transparent);
}

/* ---- WEEK STRIP (default view) ---- */
.cal-week-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.cal-week-strip .cal-cell {
    background: rgba(12, 12, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--alpha-purple-15);
    border-radius: 14px;
    padding: 16px 12px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.cal-week-strip .cal-cell:hover {
    transform: translateY(-4px);
    background: rgba(15, 15, 25, 0.9);
    box-shadow: 0 10px 30px var(--alpha-black-20);
}

.cal-week-strip .cal-empty {
    background: rgba(8, 8, 12, 0.4);
    border-color: var(--alpha-white-5);
}

.cal-dayname {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.cal-today-badge {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 700;
    color: #0a0a0f;
    background: var(--neon-cyan);
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cal-off-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
    margin-top: auto;
}

.cal-week-strip .cal-today {
    border-color: var(--alpha-cyan-40);
    background: var(--alpha-cyan-5);
    box-shadow: 0 0 25px var(--alpha-cyan-10);
}

.cal-week-strip .cal-special {
    border-color: rgba(168, 85, 247, 0.3);
}

.cal-week-strip .cal-streams {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-top: auto;
}

.cal-week-strip .cal-stream {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 6px;
    background: var(--alpha-purple-10);
    border-radius: 8px;
    border-left: none;
    border-bottom: 2px solid var(--alpha-purple-30);
}

.cal-week-strip .cal-stream-special {
    background: rgba(168, 85, 247, 0.15);
    border-bottom-color: #a855f7;
}

/* ---- TOGGLE BUTTON ---- */
.cal-toggle-wrap {
    text-align: center;
    margin-top: 24px;
}

.cal-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--alpha-purple-8);
    border: 1px solid var(--alpha-purple-30);
    border-radius: 30px;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    letter-spacing: 0.03em;
}

.cal-toggle-btn:hover {
    background: var(--alpha-purple-15);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--alpha-cyan-15);
    transform: translateY(-2px);
}

.cal-toggle-icon {
    font-size: 0.7rem;
    transition: transform var(--transition-normal);
}

/* ---- FULL MONTH (hidden by default) ---- */
.cal-month-wrap {
    display: none;
    margin-top: 24px;
}

.cal-month-wrap.cal-month-open {
    display: block;
    animation: calMonthReveal 0.4s ease-out;
}

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

/* Calendar grid: 7 columns */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: var(--alpha-purple-8);
    border: 1px solid var(--alpha-purple-20);
    border-radius: 16px;
    overflow: hidden;
}

/* Day-of-week headers */
.cal-head {
    padding: 14px 8px;
    text-align: center;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--alpha-purple-15);
}

/* Calendar cells (month view) */
.cal-grid .cal-cell {
    background: rgba(10, 10, 15, 0.85);
    padding: 10px 8px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    transition: background var(--transition-normal);
}

.cal-grid .cal-cell:hover {
    background: rgba(15, 15, 25, 0.95);
}

.cal-grid .cal-empty {
    background: rgba(8, 8, 12, 0.6);
}

/* Day number */
.cal-num {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.cal-has-stream .cal-num {
    color: var(--text-primary);
}

/* Today */
.cal-today .cal-num {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--alpha-cyan-50);
}

.cal-grid .cal-today {
    background: var(--alpha-cyan-8);
    box-shadow: inset 0 0 0 2px var(--alpha-cyan-40);
}

/* Past days */
.cal-past {
    opacity: 0.5;
}

/* Special event days */
.cal-special {
    background: var(--alpha-purple-8);
}

.cal-special .cal-num {
    color: #a855f7;
}

/* Off / volno days */
.cal-off .cal-num {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Stream entries inside cells */
.cal-streams {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cal-stream {
    display: flex;
    flex-direction: column;
    padding: 4px 6px;
    background: var(--alpha-purple-10);
    border-radius: 6px;
    border-left: 2px solid var(--alpha-purple-40);
}

.cal-stream-special {
    background: rgba(168, 85, 247, 0.15);
    border-left-color: #a855f7;
}

.cal-loc {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.65rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.cal-who {
    font-size: 0.6rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Legend */
.cal-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cal-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.cal-legend-stream  { background: var(--alpha-purple-50); }
.cal-legend-special { background: #a855f7; }
.cal-legend-today   { background: var(--neon-cyan); }
.cal-legend-off     { background: var(--alpha-white-15); }

.schedule-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.schedule-note a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

/* Week strip responsive */
@media (max-width: 900px) {
    .cal-week-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .cal-week-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .cal-week-strip .cal-cell { min-height: 90px; padding: 12px 8px; }
    .cal-dayname { font-size: 0.6rem; }
}

@media (max-width: 420px) {
    .cal-week-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .cal-week-strip .cal-cell { min-height: 80px; padding: 10px 6px; }
}

/* Month grid responsive */
@media (max-width: 900px) {
    .cal-grid .cal-cell {
        min-height: 80px;
        padding: 8px 6px;
    }
    .cal-num { font-size: 0.95rem; }
    .cal-loc { font-size: 0.6rem; }
    .cal-who { font-size: 0.55rem; }
    .cal-head { font-size: 0.7rem; padding: 10px 4px; }
}

@media (max-width: 640px) {
    .cal-grid .cal-cell {
        min-height: 60px;
        padding: 6px 4px;
    }
    .cal-num { font-size: 0.85rem; }
    .cal-stream { padding: 3px 4px; }
    .cal-loc { font-size: 0.55rem; }
    .cal-who { font-size: 0.5rem; }
    .cal-head { font-size: 0.6rem; padding: 8px 2px; letter-spacing: 1px; }
    .cal-legend { gap: 12px; }
    .cal-legend-item { font-size: 0.7rem; }
}

@media (max-width: 420px) {
    .cal-grid .cal-cell { min-height: 48px; padding: 4px 3px; }
    .cal-num { font-size: 0.75rem; margin-bottom: 2px; }
    .cal-stream { padding: 2px 3px; border-left-width: 1px; }
    .cal-loc { font-size: 0.5rem; }
    .cal-who { display: none; }
}

/* ============================================
   PLATFORM CARDS - Sdílený styl
   ============================================ */
.platform-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 32px;
    background: var(--alpha-white-3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--alpha-white-8);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
}

.platform-card:hover::before { opacity: 1; }

.platform-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo svg {
    width: 42px;
    height: 42px;
}

.platform-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.platform-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.platform-handle {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.platform-cta {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: color var(--transition-normal);
}

.cta-arrow {
    display: inline-block;
    transition: transform var(--transition-normal);
}

.platform-card:hover .cta-arrow {
    transform: translateX(4px);
}

/* Platform colors */
.platform-card.twitch { border-color: var(--alpha-purple-15); }
.platform-card.twitch::before { background: var(--alpha-purple-6); }
.platform-card.twitch:hover {
    border-color: var(--alpha-purple-40);
    box-shadow: 0 8px 32px var(--alpha-purple-15);
}
.platform-card.twitch .platform-cta { color: var(--twitch-purple); }

.platform-card.kick { border-color: rgba(83, 252, 24, 0.15); }
.platform-card.kick::before { background: rgba(83, 252, 24, 0.06); }
.platform-card.kick:hover {
    border-color: rgba(83, 252, 24, 0.4);
    box-shadow: 0 8px 32px rgba(83, 252, 24, 0.15);
}
.platform-card.kick .platform-cta { color: #53fc18; }

.platform-card.youtube { border-color: rgba(255, 0, 0, 0.15); }
.platform-card.youtube::before { background: rgba(255, 0, 0, 0.06); }
.platform-card.youtube:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.15);
}
.platform-card.youtube .platform-cta { color: #ff4444; }

.platform-card.discord { border-color: rgba(88, 101, 242, 0.15); }
.platform-card.discord::before { background: rgba(88, 101, 242, 0.06); }
.platform-card.discord:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.15);
}
.platform-card.discord .platform-cta { color: #5865f2; }

.platform-card.instagram { border-color: rgba(228, 64, 95, 0.15); }
.platform-card.instagram::before { background: rgba(228, 64, 95, 0.06); }
.platform-card.instagram:hover {
    border-color: rgba(228, 64, 95, 0.4);
    box-shadow: 0 8px 32px rgba(228, 64, 95, 0.15);
}
.platform-card.instagram .platform-cta { color: #e4405f; }

.platform-card.facebook { border-color: rgba(24, 119, 242, 0.15); }
.platform-card.facebook::before { background: rgba(24, 119, 242, 0.06); }
.platform-card.facebook:hover {
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 8px 32px rgba(24, 119, 242, 0.15);
}
.platform-card.facebook .platform-cta { color: #1877f2; }

/* Platform cards responsive */
@media (max-width: 768px) {
    .platform-cards {
        flex-direction: column;
        align-items: center;
    }
    .platform-card {
        min-width: 0;
        width: 100%;
        max-width: 400px;
    }
}

/* Streamer modal moved to components/modals.css */

/* ============================================
   KOMPAKTNÍ PAGE HEADER (bez hero)
   ============================================ */
.page-header-compact {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--alpha-purple-8) 0%, transparent 100%);
    border-bottom: 1px solid var(--alpha-purple-15);
}

.compact-header-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.compact-header-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.compact-header-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.2;
}

.compact-header-text h1 .text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compact-header-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    line-height: 1.5;
}

.bonuses-stats-inline {
    display: flex;
    gap: 20px;
    margin-left: auto;
    flex-shrink: 0;
}

.bonus-stat-inline {
    text-align: center;
    padding: 8px 16px;
    background: var(--alpha-purple-10);
    border: 1px solid var(--alpha-purple-20);
    border-radius: 12px;
}

.bonus-stat-inline .bonus-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.bonus-stat-inline .bonus-stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .page-header-compact {
        padding: 100px 0 24px;
    }
    
    .compact-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .compact-header-logo {
        width: 48px;
        height: 48px;
    }
    
    .bonuses-stats-inline {
        margin-left: 0;
    }
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */
.seo-content-section {
    padding-bottom: 40px;
}

.seo-content {
    background: var(--alpha-white-2);
    border: 1px solid var(--alpha-purple-8);
    border-radius: 16px;
    padding: 32px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.seo-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.seo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 8px;
}

.seo-content p {
    margin-bottom: 12px;
}

.seo-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content a:hover {
    color: var(--accent-secondary);
}

.seo-content strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .seo-content {
        padding: 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   1080p MONITOR FIX — reduce hardcoded px sizes
   ============================================ */
@media (max-width: 1920px) {
    .schedule-section {
        padding: 56px 0;
    }

    .page-header-compact {
        padding: 72px 0 24px;
    }
}
