/* 
   kickall - Glavni Stilovi (Iteracija 2.4)
   Tema: Cyberpunk Dark Neon (Violet & Green)
   Boje: #8B5CF6 (Ljubičasta), #53FC18 (Neon zelena)
*/

:root {
    --color-violet: #8B5CF6;
    --color-violet-glow: rgba(139, 92, 246, 0.5);
    --color-violet-dark: #6D28D9;
    --color-green: #53FC18;
    --color-green-glow: rgba(83, 252, 24, 0.5);
    --color-green-dark: #3FBA0E;
    
    --color-bg-dark: #06040A;
    --color-bg-panel: #0E0A1D;
    --color-bg-card: #130E26;
    --color-bg-input: #0A0614;
    
    --color-border: rgba(139, 92, 246, 0.15);
    --color-border-hover: rgba(83, 252, 24, 0.35);
    
    --color-text: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-text-dark: #06040A;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-violet: 0 0 25px rgba(139, 92, 246, 0.3);
    --shadow-green: 0 0 25px rgba(83, 252, 24, 0.3);
    --shadow-glass: 0 8px 32px 0 rgba(4, 3, 8, 0.5);
}

/* Resetovanja */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cyberpunk Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-violet) transparent;
}

/* WebKit pregledači (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-violet), var(--color-green));
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green);
}

/* Zasebne klase za širinu i kontejnere */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Pozadinski svetlosni efekti */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.22;
    mix-blend-mode: screen;
    animation: floatBlob 18s infinite alternate ease-in-out;
}

.blob-violet {
    top: -10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-violet) 0%, transparent 70%);
}

.blob-green {
    bottom: -10%;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-green) 0%, transparent 70%);
    animation-delay: -6s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 50px) scale(1.15); }
}

/* Tipografija i Opšti Elementi */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Dugmad */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(83, 252, 24, 0.2);
}

.btn-primary:hover {
    background-color: #6eff35;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(83, 252, 24, 0.45);
}

.btn-secondary {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--color-text);
    border-color: rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: var(--color-violet);
    color: var(--color-text);
    border-color: var(--color-violet);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.45);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 24px;
}

.inline-flex {
    display: inline-flex;
}

/* Bedževi i Mali Detalji */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    color: var(--color-violet);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes pulseBorder {
    0%, 100% { border-color: rgba(139, 92, 246, 0.2); }
    50% { border-color: var(--color-violet); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigacija / Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 4, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kick-logo-svg {
    height: 24px;
    width: auto;
    display: block;
}

.logo-all {
    color: var(--color-text);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-violet), var(--color-green));
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    background-color: var(--color-violet);
    color: var(--color-text);
    box-shadow: var(--shadow-violet);
}

/* Lokalne jezičke klase */
body.lang-sr .lang-en { display: none !important; }
body.lang-en .lang-sr { display: none !important; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

/* Hero Sekcija */
.hero-section {
    min-height: 100vh;
    padding: 120px 0 40px 0;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: none;
}

/* Dynamic Hero Visual Cards */
.hero-glass-card {
    background: rgba(14, 10, 29, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.hero-glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(83, 252, 24, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(83, 252, 24, 0.15);
}

/* Colored Dots for Tabs */
.dot-red { background-color: #EF4444 !important; box-shadow: 0 0 8px rgba(239, 68, 68, 0.6) !important; }
.dot-yellow { background-color: #F59E0B !important; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6) !important; }
.dot-green { background-color: #53FC18 !important; box-shadow: 0 0 8px rgba(83, 252, 24, 0.6) !important; }

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Vizuelni Deo - Dashboard Mockup */
.hero-visual {
    perspective: 1000px;
}

.dashboard-preview-card {
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease, border-color 0.3s ease;
}

.dashboard-preview-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
    border-color: rgba(83, 252, 24, 0.4);
    box-shadow: 0 15px 40px rgba(83, 252, 24, 0.1);
}

.card-header {
    background-color: rgba(6, 4, 10, 0.6);
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.window-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-left: 8px;
}

.card-body {
    padding: 24px;
}

/* NOVO: Dashboard vizuelni raspored u herou */
.dashboard-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-body);
}

.db-row {
    display: flex;
    gap: 16px;
}

.db-col {
    flex: 1;
    background-color: rgba(6, 4, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.db-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.db-mini-chart {
    background-color: rgba(6, 4, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 16px;
}

.mini-chart-header {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.mini-chart-bars {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.mini-chart-bars .bar {
    flex: 1;
    background-color: rgba(139, 92, 246, 0.2);
    border-radius: 3px;
    transition: height 0.5s ease;
}

.mini-chart-bars .bar.active {
    background: linear-gradient(to top, var(--color-green), #6eff35);
    box-shadow: 0 0 10px var(--color-green-glow);
}

.db-alert-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(83, 252, 24, 0.05);
    border: 1px solid rgba(83, 252, 24, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
}

.db-alert-icon {
    font-size: 1.5rem;
}

.db-alert-content {
    display: flex;
    flex-direction: column;
}

.db-alert-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-green);
    letter-spacing: 0.05em;
}

.db-alert-desc {
    font-size: 0.9rem;
    font-weight: 600;
}

.db-mini-chat {
    background-color: rgba(6, 4, 10, 0.7);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: monospace;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-chat-msg {
    line-height: 1.4;
}

.db-chat-msg.bot {
    color: var(--color-violet);
    padding-left: 10px;
    border-left: 2px solid var(--color-violet);
}

.chat-user {
    color: var(--color-green);
    font-weight: bold;
}

.bot-tag {
    background-color: var(--color-violet);
    color: var(--color-text);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.7rem;
    margin-right: 4px;
}

/* Boje terminala */
.text-green {
    color: var(--color-green);
    text-shadow: 0 0 5px rgba(83, 252, 24, 0.2);
}

.text-orange {
    color: #F59E0B;
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.2);
}

.text-violet {
    color: var(--color-violet);
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.2);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Ekosistem Sekcija (Karakteristike) */
section {
    padding: 100px 0;
    position: relative;
    border: none !important;
    background: transparent !important;
}

.ekosistem-section {
    padding: 100px 0;
    position: relative;
    border: none !important;
    background: transparent !important;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Features grid 2x2 raspored */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.05);
}

.feature-card:hover#card-kickot { border-color: var(--color-violet); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15); }
.feature-card:hover#card-kickaj { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1); }
.feature-card:hover#card-kickov { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1); }
.feature-card:hover#card-kickan { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1); }

/* Badges za status modula */
.feature-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.badge-active {
    background-color: rgba(83, 252, 24, 0.1);
    color: var(--color-green);
    border: 1px solid rgba(83, 252, 24, 0.25);
    box-shadow: 0 0 10px rgba(83, 252, 24, 0.1);
}

.badge-soon {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.icon-violet {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--color-violet);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-green {
    background-color: rgba(83, 252, 24, 0.1);
    color: var(--color-green);
    border: 1px solid rgba(83, 252, 24, 0.2);
}

.icon-green-violet {
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--color-violet);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-violet-green {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(83, 252, 24, 0.1));
    color: var(--color-green);
    border: 1px solid rgba(83, 252, 24, 0.2);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-list li {
    font-size: 0.88rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark {
    color: var(--color-green);
    font-weight: bold;
}

.card-action-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-green);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.card-action-link:hover {
    color: #6eff35;
    text-shadow: 0 0 8px rgba(83, 252, 24, 0.3);
}

#card-kickot .card-action-link {
    color: var(--color-violet);
}
#card-kickot .card-action-link:hover {
    color: #a78bfa;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

/* Interaktivni Playground Sekcija */
.playground-section {
    padding: 100px 0;
    position: relative;
}

.glow-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(83, 252, 24, 0.15));
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.playground-card {
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.playground-tabs {
    display: flex;
    background-color: rgba(6, 4, 10, 0.5);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 16px;
    gap: 8px;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: var(--color-text);
    background-color: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.tab-badge-active {
    font-size: 0.65rem;
    padding: 2px 6px;
    background-color: rgba(83, 252, 24, 0.15);
    color: var(--color-green);
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-radius: 4px;
    font-weight: 800;
}

.tab-badge-soon {
    font-size: 0.65rem;
    padding: 2px 6px;
    background-color: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 4px;
    font-weight: 800;
}

.tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-violet { background-color: var(--color-violet); box-shadow: 0 0 6px var(--color-violet); }
.dot-green { background-color: var(--color-green); box-shadow: 0 0 6px var(--color-green); }
.dot-violet-green {
    background: linear-gradient(to right, var(--color-violet), var(--color-green));
    box-shadow: 0 0 6px var(--color-violet);
}
.dot-green-violet {
    background: linear-gradient(to right, var(--color-green), var(--color-violet));
    box-shadow: 0 0 6px var(--color-green);
}

.playground-content-wrapper {
    padding: 40px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

/* PLAYGROUND: KICKBOT */
.kickbot-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.info-status {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.kickbot-info h3, #kickaj-header {
    font-size: 2rem;
    margin-bottom: 16px;
}

.kickbot-info p, #kickaj-info {
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.quick-commands {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cmd-badge {
    align-self: flex-start;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-violet);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cmd-badge:hover {
    border-color: var(--color-violet);
    background-color: rgba(139, 92, 246, 0.08);
    transform: translateX(4px);
}

/* Chat Mockup */
.chat-mockup {
    background-color: #080512;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 380px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}

.chat-header {
    background-color: rgba(6, 4, 10, 0.7);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-live-badge {
    font-size: 0.75rem;
    font-weight: bold;
    color: #EF4444;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

.chat-live-badge .pulse-dot {
    background-color: #EF4444;
    box-shadow: 0 0 6px #EF4444;
}

.chat-viewers {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.chat-message {
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    animation: msgIn 0.3s ease-out forwards;
}

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

.msg-time {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

.msg-user {
    font-weight: 700;
    color: var(--color-green);
}

.msg-user.moderator {
    color: #10B981;
}

.msg-user.vip {
    color: #F59E0B;
}

.msg-text {
    word-break: break-word;
}

.chat-message.system {
    background-color: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--color-violet);
    font-style: italic;
}

.chat-message.bot-response {
    background-color: rgba(83, 252, 24, 0.04);
    border-left: 3px solid var(--color-green);
    padding: 6px 12px;
    margin-left: 10px;
}

.chat-message.bot-response .msg-user {
    color: var(--color-violet);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-message.bot-response .msg-user::after {
    content: 'BOT';
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    background-color: var(--color-violet);
    color: var(--color-text);
    border-radius: 4px;
}

.chat-input-area {
    padding: 16px;
    background-color: rgba(6, 4, 10, 0.5);
    display: flex;
    gap: 12px;
}

.chat-input-area input {
    flex-grow: 1;
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--color-violet);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.chat-send-btn {
    background-color: var(--color-violet);
    border: none;
    color: var(--color-text);
    font-weight: 600;
    padding: 0 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.chat-send-btn:hover {
    background-color: var(--color-violet-dark);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

/* PLAYGROUND U OPŠTEM */
.content-relative {
    position: relative;
}

/* Blur overlay na samim karticama 4 stuba */
.feature-card .coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 6, 22, 0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.coming-soon-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-inner {
    text-align: center;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.overlay-tag-soon {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #F59E0B;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.overlay-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.overlay-inner p {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.4;
    max-width: 280px;
}

/* PLAYGROUND: KICKAJ */
.kickaj-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Giveaway form i input stilovi (Cyberpunk) */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-violet);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.form-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Giveaway Visualizer */
.kickaj-visualizer {
    background-color: #080512;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
}

.visualizer-box {
    width: 100%;
    text-align: center;
}

.giveaway-active-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.prize-display {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.drum-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 70px;
    margin: 0 auto;
    background-color: rgba(6, 4, 10, 0.8);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.drum-selector-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--color-green);
    box-shadow: 0 0 10px var(--color-green);
    z-index: 10;
}

/* ISPRAVLJENO: drum-roller horizontalno širenje i sprečavanje wrapping-a */
.drum-roller {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    align-items: center;
    width: max-content;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: transform 0.1s linear;
}

.drum-item {
    flex-shrink: 0;
    width: 160px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.drum-item.highlighted {
    color: var(--color-green);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(83, 252, 24, 0.3);
}

.winner-announcement {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 4, 10, 0.95);
    z-index: 20;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.winner-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-green);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.winner-name {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    text-shadow: 0 0 30px var(--color-green-glow);
}

.winner-subtext {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.winner-subtext span {
    color: var(--color-text);
    font-weight: 600;
}

/* PLAYGROUND: KICKKOV (OVERLAYS) */
.kickov-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.kickov-controls h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.kickov-controls p {
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.alert-triggers {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-alert-trigger {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 16px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-alert-trigger::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.btn-alert-trigger:hover {
    border-color: var(--color-violet);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
    background-color: rgba(139, 92, 246, 0.05);
}

.btn-alert-trigger:hover::after {
    transform: translateX(5px);
}

.kickov-screen {
    background-color: #000;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stream-screen-mockup {
    width: 100%;
    height: 100%;
    position: relative;
}

.stream-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0e0a1f 0%, #170d33 50%, #080612 100%);
    position: relative;
}

.game-ui-mock {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    background-color: rgba(6, 4, 10, 0.6);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.webcam-box-mock {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 100px;
    height: 75px;
    background-color: rgba(6, 4, 10, 0.8);
    border: 2px solid var(--color-violet);
    box-shadow: 0 0 10px var(--color-violet-glow);
    border-radius: 4px;
}

.stream-alert-area {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 15;
}

.live-alert-card {
    background: rgba(8, 5, 18, 0.85);
    border: 2px solid var(--color-violet);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 25px var(--color-violet-glow), inset 0 0 10px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(8px);
    width: 280px;
    animation: alertSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.live-alert-card.alert-sub {
    border-color: var(--color-green);
    box-shadow: 0 0 25px var(--color-green-glow), inset 0 0 10px rgba(83, 252, 24, 0.2);
}

.alert-icon-anim {
    font-size: 2rem;
    animation: bounce 1s infinite alternate;
}

.alert-title-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.alert-message-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
}

.alert-message-text span {
    color: var(--color-green);
    font-weight: 700;
}

.alert-sub .alert-message-text span {
    color: var(--color-violet);
}

/* PLAYGROUND: KICKAN */
.kickan-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.kickan-sidebar h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.kickan-sidebar p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.stats-period-selector {
    display: flex;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 28px;
}

.period-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--color-text-muted);
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.period-btn:hover {
    color: var(--color-text);
}

.period-btn.active {
    color: var(--color-text-dark);
    background-color: var(--color-green);
}

.mini-metrics {
    display: flex;
    gap: 16px;
}

.mini-metric-card {
    flex: 1;
    background-color: rgba(6, 4, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.metric-value {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Grafik */
.kickan-chart-container {
    background-color: #080512;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    height: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.chart-update {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.chart-body {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.graph-svg {
    width: 100%;
    height: 180px;
    overflow: visible;
}

.graph-path-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.graph-path-area {
    opacity: 0;
    animation: fadeArea 1.5s ease-out 1s forwards;
}

.graph-dot {
    opacity: 0;
    animation: popDot 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.graph-dot:nth-child(1) { animation-delay: 0.5s; }
.graph-dot:nth-child(2) { animation-delay: 1.2s; }
.graph-dot:nth-child(3) { animation-delay: 2s; }

.dot-green-glow {
    fill: var(--color-green);
    stroke: var(--color-bg-dark);
    stroke-width: 2px;
    filter: drop-shadow(0 0 8px var(--color-green));
}

@keyframes drawPath {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

@keyframes fadeArea {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.chart-footer-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

/* SEKCIJA: Podrška */
.support-section {
    padding: 100px 0;
    position: relative;
}

.support-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.s-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.s-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.s-feature h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.s-feature p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.support-status-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-glass);
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--color-green);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.status-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-green);
    animation: pulseDot 1.5s infinite;
}

/* NOVO: Stilizacija Email Copy Panela */
.support-email-box {
    background-color: rgba(6, 4, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.email-copy-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 8px 12px;
    gap: 10px;
}

.email-text {
    font-family: monospace;
    font-size: 0.92rem;
    color: var(--color-text);
    user-select: all;
    word-break: break-all;
}

.btn-copy-email {
    background-color: var(--color-violet);
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.btn-copy-email:hover {
    background-color: var(--color-violet-dark);
    box-shadow: var(--shadow-violet);
}

.btn-copy-email.copied {
    background-color: var(--color-green);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-green);
}

.status-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.status-metric {
    background-color: rgba(6, 4, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.status-metric .metric-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
}

.status-metric .metric-name {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.support-log {
    background-color: rgba(6, 4, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
    font-family: monospace;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.log-line {
    line-height: 1.4;
    word-break: break-all;
}

.log-time {
    color: var(--color-text-muted);
}

.log-tag {
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    margin-right: 4px;
}

.log-tag.log-vip {
    background-color: var(--color-green);
    color: var(--color-text-dark);
}

.log-tag.log-agent {
    background-color: var(--color-violet);
    color: var(--color-text);
}

.log-tag.log-resolved {
    border: 1px solid var(--color-green);
    color: var(--color-green);
}

.log-msg {
    color: #E2E8F0;
}

/* SEKCIJA: Cenovnik */
.pricing-section {
    padding: 100px 0;
    border: none;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--color-green);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.1);
    transform: scale(1.03);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 15px 40px rgba(83, 252, 24, 0.2);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-green);
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.p-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.p-title {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.popular .p-title {
    color: var(--color-green);
}

.p-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.p-currency {
    font-size: 1.8rem;
    margin-top: 4px;
    font-weight: 600;
}

.p-period {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

.p-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.p-card-body {
    flex-grow: 1;
    margin-bottom: 32px;
}

/* Levo poravnanje za elemente cenovnika */
.p-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
}

.p-features-list li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.p-features-list li > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.p-check {
    color: var(--color-green);
    font-weight: bold;
    flex-shrink: 0;
}

.p-cross {
    color: #EF4444;
    font-weight: bold;
    flex-shrink: 0;
}

.p-disabled {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.p-tag-active {
    font-size: 0.65rem;
    font-weight: 800;
    background-color: rgba(83, 252, 24, 0.15);
    color: var(--color-green);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    flex-shrink: 0;
}

.p-tag-soon {
    font-size: 0.65rem;
    font-weight: 800;
    background-color: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    flex-shrink: 0;
}

.p-card-footer {
    margin-top: auto;
}

/* SEKCIJA: Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: transparent;
    border: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(83, 252, 24, 0.25);
    transform: translateY(-5px);
}

.t-rating {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.t-text {
    font-size: 0.98rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.t-avatar.bg-violet {
    background-color: var(--color-violet);
    color: var(--color-text);
}

.t-avatar.bg-green {
    background-color: var(--color-green);
    color: var(--color-text-dark);
}

.t-avatar.bg-violet-green {
    background: linear-gradient(135deg, var(--color-violet), var(--color-green));
    color: var(--color-text);
}

.t-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.t-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Statistika Sekcija (Seamless flow) */
.statistika-section {
    padding: 80px 0;
    background: transparent;
    border: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
    text-shadow: 0 0 15px rgba(83, 252, 24, 0.15);
}

.stat-label {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

/* CTA Sekcija */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(19, 14, 38, 0.9) 0%, rgba(14, 10, 29, 0.9) 100%);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Bljeskanje belog okvira (Uklonjeno radi tečnog rada) */
.flash-active {
    display: none;
}

/* Footer */
.footer {
    background: transparent !important;
    background-color: transparent !important;
    padding: 80px 0 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    margin-top: 16px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-contact-info {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-contact-info a {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}

.footer-links-group {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 140px;
}

.footer-column h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.footer-column a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.footer-bottom-left {
    color: var(--color-text-muted);
}

.footer-bottom-center a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom-center a:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-right a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-bottom-right a:hover {
    color: var(--color-violet);
}

.dot-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* Responzivnost */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 50px auto 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 40px auto 0 auto;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .dashboard-preview-card {
        transform: none;
    }
    
    .kickbot-grid, .kickaj-layout, .kickov-layout, .kickan-layout, .support-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kickbot-info, .kickaj-setup, .kickov-controls, .kickan-sidebar, .support-content {
        text-align: center;
    }
    
    .support-content .section-title.text-left {
        text-align: center;
    }
    
    .cmd-badge {
        align-self: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .s-feature {
        text-align: left;
    }
    
    .support-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 110;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg-panel);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-normal);
        z-index: 105;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .playground-content-wrapper {
        padding: 24px;
    }
    
    .cta-card {
        padding: 50px 24px;
    }
    
    .cta-card h2 {
        font-size: 2.2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-group {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .playground-tabs {
        padding: 4px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .prize-display {
        font-size: 1.6rem;
    }
    
    .winner-name {
        font-size: 2rem;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 340px;
    }
}

/* User Menu & Dropdown for KickAll Header */
.user-menu {
    position: relative;
    display: none;
}
.user-menu.visible {
    display: block;
}
.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    transition: var(--transition-normal);
    height: 42px;
}
.user-menu-trigger:hover,
.user-menu.open .user-menu-trigger {
    background: rgba(83, 252, 24, 0.05);
    border-color: var(--color-green-glow, rgba(83, 252, 24, 0.5));
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.15);
}
.user-menu-trigger:hover .user-name,
.user-menu.open .user-menu-trigger .user-name {
    color: var(--color-green);
}
.user-avatar {
    width: 28px;
    height: 28px;
    background-color: var(--color-violet);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}
.user-menu-trigger:hover .user-avatar {
    transform: scale(1.08);
}
.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    transition: color var(--transition-fast);
}
.chevron-icon {
    color: var(--color-text-muted);
    transition: transform var(--transition-fast), color var(--transition-fast);
}
.user-menu-trigger:hover .chevron-icon {
    color: var(--color-green);
}
.user-menu.open .chevron-icon {
    transform: rotate(180deg);
}
.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(14, 10, 29, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 16px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
    z-index: 120;
    display: none;
    animation: dropdownIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.user-menu.open .user-dropdown {
    display: block;
}
@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown-item {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    color: var(--color-text-muted);
    padding: 10px 14px 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, padding-left 0.2s, background-color 0.2s, color 0.2s;
    text-decoration: none;
}
.dropdown-item:hover {
    color: var(--color-text);
    background-color: rgba(83, 252, 24, 0.04);
    border-left-color: var(--color-green);
    padding-left: 18px;
}
.dropdown-item.danger {
    color: #FCA5A5;
}
.dropdown-item.danger:hover {
    background-color: rgba(239, 68, 68, 0.05);
    border-left-color: #EF4444;
}
.dropdown-icon {
    opacity: 0.7;
    transition: opacity 0.2s;
}
.dropdown-item:hover .dropdown-icon {
    opacity: 1;
}

/* Module Selector Grid on Landing Hero */
.module-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 1000px;
    margin-top: 20px;
}

.module-card {
    background: rgba(14, 10, 29, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-height: 180px;
}

.module-card.card-active {
    border-color: rgba(83, 252, 24, 0.15);
}

.module-card.card-active:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(83, 252, 24, 0.4);
    box-shadow: 0 15px 30px rgba(83, 252, 24, 0.12);
}

.module-card.card-soon {
    border-color: rgba(139, 92, 246, 0.15);
}

.module-card.card-soon:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.1);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.module-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.module-badge.badge-active {
    background: rgba(83, 252, 24, 0.1);
    color: var(--color-green);
    border: 1px solid rgba(83, 252, 24, 0.2);
}

.module-badge.badge-soon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-violet);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.module-icon {
    font-size: 1.4rem;
}

.module-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}

.module-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

.module-link-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.module-link-action.disabled {
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* Responsiveness for module grid */
@media (max-width: 991px) {
    .module-selector-grid {
        gap: 16px;
    }
    .module-card {
        padding: 20px;
        min-height: 160px;
    }
}
@media (max-width: 576px) {
    .module-selector-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ══════════════ AUTH MODAL ══════════════ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(6, 4, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: rgba(14, 10, 29, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.05);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-backdrop.open .auth-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text-muted);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    transform: scale(1.05);
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.auth-form-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.auth-modal-desc {
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.auth-modal-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 16px;
}

.auth-modal-footnote a {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.auth-modal-footnote a:hover {
    color: #47e212;
}

.btn-kick-login {
    background: linear-gradient(135deg, var(--color-green), #3fba0e);
    color: #000;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(83, 252, 24, 0.2);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}

.btn-kick-login:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 252, 24, 0.4);
}

.btn-kick-login:active {
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   Awwwards Landing Page Enhancements & Animations
   ───────────────────────────────────────────────────────────── */

/* Lenis Smooth Scroll Fixes */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* Cursor Spotlight Glow Effect */
body::before {
    content: '';
    position: fixed;
    top: var(--mouse-y, 50vh);
    left: var(--mouse-x, 50vw);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(83, 252, 24, 0.03) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Live Stats Bar (Seamless without background bars) */
.hero-live-stats-bar {
    padding: 40px 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    position: relative;
    z-index: 2;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bar-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bar-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(83, 252, 24, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bar-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bar-stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.bar-stat-lbl {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Dynamic Hero Visual Cards */
.hero-glass-card {
    background: rgba(14, 10, 29, 0.75);
    border: 1px solid rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-glass-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(83, 252, 24, 0.4);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.card-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.telemetry-metric {
    text-align: center;
    padding: 20px 0;
}

.metric-num-glow {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
    filter: drop-shadow(0 0 15px rgba(83, 252, 24, 0.3));
}

.metric-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.telemetry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.t-cell {
    background: rgba(6, 4, 10, 0.5);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.t-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.t-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-user-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(6, 4, 10, 0.6);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 20px;
}

.hero-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--color-green);
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.4);
}

.hero-user-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.hero-user-status {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Streamer Showcase */
.showcase-section {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.showcase-card {
    background: rgba(19, 14, 38, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(83, 252, 24, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(83, 252, 24, 0.15);
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.showcase-avatar-wrapper {
    position: relative;
}

.showcase-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: cover;
    border: 2px solid var(--color-violet);
}

.showcase-live-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.showcase-live-badge.pulse {
    background: rgba(83, 252, 24, 0.2);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.showcase-live-badge.offline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.showcase-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.showcase-viewers {
    font-size: 0.82rem;
    color: var(--color-green);
    display: flex;
    align-items: center;
    gap: 4px;
}

.showcase-quote {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 20px 0;
    font-style: italic;
}

.showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.showcase-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-violet);
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
}

.showcase-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.showcase-link:hover {
    color: var(--color-green);
}

/* Technical Performance Showcase (Seamless flow) */
.performanse-section {
    padding: 100px 0;
    background: transparent;
}

.performanse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.perf-card {
    background: rgba(19, 14, 38, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    padding: 28px 20px;
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(83, 252, 24, 0.3);
    background: rgba(19, 14, 38, 0.8);
}

.perf-icon {
    margin-bottom: 20px;
}

.perf-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.perf-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Dynamic FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-controls {
    max-width: 760px;
    margin: 40px auto 0 auto;
}

.faq-search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: rgba(19, 14, 38, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-input:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.2);
}

.faq-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-pill:hover, .faq-pill.active {
    background: var(--color-violet);
    color: #fff;
    border-color: var(--color-violet);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(19, 14, 38, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: var(--color-green);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--color-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

/* Glassmorphism CTA */
.glass-cta {
    background: linear-gradient(135deg, rgba(19, 14, 38, 0.8) 0%, rgba(14, 10, 29, 0.9) 100%);
    border: 1px solid rgba(83, 252, 24, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 28px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid var(--color-green);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.cta-kick-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(83, 252, 24, 0.35);
}

/* Playground Theme Selector */
.playground-theme-selector {
    margin: 20px 0;
}

.theme-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.theme-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.theme-pill {
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-pill:hover, .theme-pill.active {
    background: rgba(83, 252, 24, 0.15);
    color: var(--color-green);
    border-color: var(--color-green);
}

/* Responsive Breakpoints for New Components */
@media (max-width: 1024px) {
    .stats-bar-grid, .showcase-grid, .performanse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-bar-grid, .showcase-grid, .performanse-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(14, 10, 29, 0.85);
    border: 1px solid var(--color-green);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(83, 252, 24, 0.2);
    backdrop-filter: blur(12px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    background: var(--color-green);
    color: #000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(83, 252, 24, 0.4);
}

