/**
 * ============================================
 * JLCASINO - 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%;
}

/* Respect users who prefer reduced motion — disable smooth anchor scrolling */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* 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;
}

/* Pozadí stránky vlastní core/skin.css. Tady bývaly fialovo-azurové záře po
   neonovém vzhledu; kreslily se pod obsah a praly se s tím, co přišlo po nich. */



/* ============================================
   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: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--kt-green-h, #53fc18);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(0, 0, 0, 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);
}

/* Odkaz při hoveru zesvětlá, nezezelená. Tohle pravidlo barvilo zeleně
   každý odkaz na webu včetně jmen streamerů v patičce; zelená má být
   výhradně výplň primárního tlačítka. */
a:hover {
    color: var(--kt-ink);
}

/* ============================================
   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(25, 27, 31, 0.55) 0%,
        rgba(11, 14, 15, 0.6) 50%,
        rgba(25, 27, 31, 0.55) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--go-rgb), 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(0, 0, 0, 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(var(--go-rgb), 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(var(--go-rgb), 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(0, 0, 0, 0.5),
        0 0 80px -20px rgba(var(--go-rgb), 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(var(--go-rgb), 0.4) 20%,
        var(--alpha-purple-35) 50%,
        rgba(var(--go-rgb), 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(var(--go-rgb), 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(25, 27, 31, 0.55) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(25, 27, 31, 0.55) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--go-rgb), 0.12);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 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(var(--go-rgb), 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;
}

/* ============================================
   INTERAKCE
   ============================================
   Karta se při najetí nezvedá a nesvítí. Stav nese hrana (pravidlo 2),
   ne stín a ne posun — mřížka karet musí při projetí myší stát na místě.
   Totéž tlačítko: mění se výplň a obrys, nic jiného. */
.card,
.bonus-card,
.streamer-card,
.win-card,
.stat-card,
.btn {
    transition: border-color 0.18s linear, background-color 0.18s linear, color 0.18s linear;
}

/* Ohnisko je bílá linka. Zelený prstenec byl na zeleném tlačítku
   neviditelný, tedy tam, kde ho člověk na klávesnici potřebuje nejvíc. */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}


/* ============================================
   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: 0;
    background: linear-gradient(135deg, 
        var(--alpha-purple-15), 
        rgba(var(--go-rgb), 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(var(--go-rgb), 0.2) 50%, 
        var(--alpha-purple-30) 80%, 
        transparent);
    border: none;
    margin: 0;
}

/* ============================================
   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: 0;
    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: 0;
}

.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(--kick-green); }

.platform-card.kick { border-color: rgba(var(--go-rgb), 0.15); }
.platform-card.kick::before { background: rgba(var(--go-rgb), 0.06); }
.platform-card.kick:hover {
    border-color: rgba(var(--go-rgb), 0.4);
    box-shadow: var(--lift);
}
.platform-card.kick .platform-cta { color: var(--go); }

.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: var(--live); }

.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: 0;
    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: 0;
}

.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: 0;
    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;
    }
}
