/* 
   kickall - Glavni Stilovi (Iteracija 2.4)
   Tema: Cyberpunk Dark Neon (Violet & Green)
   Boje: #8B5CF6 (Ljubičasta), #53FC18 (Neon zelena)
*/
/* Landing page specific styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-y: auto;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce complex animations on mobile */
    .blob {
        animation-duration: 12s !important;
        opacity: 0.12 !important;
    }
    
    /* Disable GPU-intensive effects on low-end devices */
    .glow-bg {
        will-change: transform;
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    /* Optimize rendering for mobile */
    .card, .feature-card, .pricing-card, .hero-glass-card {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Reduce shadow complexity */
    .card, .feature-card, .pricing-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Optimize image rendering */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Reduce font rendering complexity */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Slow connection optimizations */
.slow-connection {
    /* Disable animations on slow connections */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Reduce image quality */
    img {
        filter: blur(0.5px);
    }
    
    /* Disable complex effects */
    .glow-bg, .blob {
        display: none;
    }
}

/* Low battery optimizations */
.low-battery {
    /* Reduce animations */
    *, *::before, *::after {
        animation-duration: 2s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Disable background effects */
    .glow-bg {
        opacity: 0.5;
    }
    
    .blob {
        animation: none !important;
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 8px 0;
    }
    
    .nav-menu {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .blob {
        display: none;
    }
}

/* 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: 1420px;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
}


/* Mobile menu close button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile menu actions */
.mobile-menu-actions {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

/* Pozadinski svetlosni efekti */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-bg);
    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); }
}

#heroBadge {
    margin-bottom: 20px;
}

/* Navigacija / Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    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: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

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

.logo-img {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-menu-close,
    .mobile-menu-actions {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1150px) {
    .nav-menu {
        gap: 16px;
    }
    .nav-link {
        font-size: 0.88rem;
    }
    .nav-actions {
        gap: 10px;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.88rem;
    }
}

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

.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: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: var(--color-green);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(83, 252, 24, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(83, 252, 24, 0.3);
}

/* 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: #6D28D9;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.4);
}

.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: 95vh;
    padding: 120px 0 40px 0;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: none;
    touch-action: pan-y;
}

/* 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: var(--transition-normal);
    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%;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .hero-visual {
        display: block;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* 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 var(--transition-normal), border-color var(--transition-fast);
}

.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 var(--transition-normal);
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.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 {
    display: none !important;
}

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

.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: #a78bfa;
}
#card-kickot .card-action-link:hover {
    color: #c4b5fd;
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.4);
}

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

.glow-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.35), rgba(83, 252, 24, 0.35));
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.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 var(--transition-normal), box-shadow var(--transition-normal);
}

.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;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 480px) {
    .playground-tabs {
        padding: 8px 12px;
    }
    
    .tab-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

.tab-btn {
    background: none;
    border: 1px solid transparent;
    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;
    outline: none;
}

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

.tab-btn:focus {
    outline: none;
}

.tab-btn:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

.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-violet);
    color: #E0E7FF;
    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.15);
    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.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 8px 12px;
    border-radius: 8px;
    color: #C4B5FD;
    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-dark);
    font-weight: 700;
    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: var(--z-coming-soon);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: opacity var(--transition-normal);
}

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

/* 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: var(--z-overlay);
    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: var(--z-overlay);
}

.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;
    transform-origin: center;
    transform-box: fill-box;
}

.graph-dot:nth-child(1) { animation-delay: 0.4s; }
.graph-dot:nth-child(2) { animation-delay: 0.8s; }
.graph-dot:nth-child(3) { animation-delay: 1.2s; }
.graph-dot:nth-child(4) { animation-delay: 1.6s; }
.graph-dot:nth-child(5) { animation-delay: 2.0s; }

.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-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    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-dark);
    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: #06040A;
    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-dark);
}

.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 rgba(139, 92, 246, 0.25);
    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.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

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

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

.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.6;
}

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

.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-tag-vip {
    font-size: 0.65rem;
    font-weight: 800;
    background-color: rgba(167, 139, 250, 0.25);
    color: #C4B5FD;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    flex-shrink: 0;
}

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

.pricing-annual-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--color-text-primary);
}

.pricing-annual-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-annual-note strong {
    color: var(--color-green);
}

/* Pricing Toggle */
.pricing-toggle {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.toggle-container {
    display: flex;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 4px;
    position: relative;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.toggle-btn.active {
    background: var(--color-violet);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.toggle-btn:hover:not(.active) {
    color: var(--color-text-primary);
}

.discount-badge {
    position: absolute;
    top: -8px;
    right: -4px;
    background: var(--color-green);
    color: var(--color-bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(83, 252, 24, 0.4);
    animation: none;
    white-space: nowrap;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

.btn-price {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-left: 4px;
}

.p-price-monthly {
    margin-bottom: 16px;
    display: none;
}

.p-price-monthly.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strike-price {
    color: var(--color-text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 400;
}

.save-info {
    color: var(--color-green);
    font-size: 0.85rem;
    font-weight: 600;
}

/* 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;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    color: var(--text-dark);
}

.t-avatar[style*="background-image"] {
    background-color: transparent !important;
}

.t-avatar-custom {
    background-position: center center !important;
    background-size: cover !important;
}

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

.t-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    background-color: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-radius: 10px;
    color: var(--color-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.t-channel-btn:hover {
    background-color: rgba(83, 252, 24, 0.2);
    border-color: var(--color-green);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

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

/* Mobile Menu for all devices below 992px */
@media (max-width: 991px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background-color: var(--color-bg-panel);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        padding: 100px 25px;
        gap: 16px;
        transition: var(--transition-normal);
        z-index: var(--z-dropdown);
        align-items: center;
    }

    .nav-link {
        font-size: 0.9rem;
        text-align: center;
    }

    .mobile-menu-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    body.nav-menu-open {
        overflow: hidden;
    }

    html.nav-menu-open {
        overflow: hidden;
    }

    .nav-actions {
        display: none;
    }
}

/* User Menu & Dropdown for KickAll Header */
.user-menu {
    position: relative;
    display: none;
}

.user-menu.visible {
    display: flex;
    align-items: center;
}

/* Okidač menija sa premium glass efektom */
.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 4px 16px 4px 6px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.user-menu-trigger:hover,
.user-menu.open .user-menu-trigger {
    background: rgba(83, 252, 24, 0.07);
    border-color: rgba(83, 252, 24, 0.4);
    box-shadow: 0 0 25px rgba(83, 252, 24, 0.18), inset 0 0 10px rgba(83, 252, 24, 0.05);
}

/* Avatar sa gradijentom i laganom rotacijom */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-violet, #8b5cf6), #6366f1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
    align-self: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.user-menu-trigger:hover .user-avatar {
    transform: scale(1.08) rotate(-4deg);
}

/* Ime korisnika */
.user-name {
    font-family: var(--font-body, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text, #ffffff);
    letter-spacing: 0;
    line-height: 1.2;
    align-self: center;
    padding-left: 5px;
    transition: color 0.25s ease;
}

/* Mobile menu span styling */
.mobile-menu-actions span {
    padding-top: 3px;
    padding-left: 5px;
}

.user-menu-trigger:hover .user-name,
.user-menu.open .user-menu-trigger .user-name {
    color: var(--color-green, #53fc18);
}

/* Strelica sa elastičnom rotacijom */
.chevron-icon {
    color: var(--color-text-muted, rgba(255, 255, 255, 0.5));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
}

.user-menu-trigger:hover .chevron-icon {
    color: var(--color-green, #53fc18);
}

.user-menu.open .chevron-icon {
    transform: rotate(180deg);
}

/* Premium padajući meni */
.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 210px;
    padding: 8px;
    background: rgba(14, 10, 29, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: var(--z-dropdown);
    
    /* Perfekcija animacije otvaranja */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.94);
    transform-origin: top right;
    transition: 
        opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.25s;
    pointer-events: none;
}

.user-menu.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Stavke u meniju sa kliznim efektom */
.dropdown-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: var(--color-text, rgba(255, 255, 255, 0.85));
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    padding-left: 18px;
}

.dropdown-item:active {
    transform: scale(0.98);
}

.dropdown-icon {
    color: var(--color-text-muted, rgba(255, 255, 255, 0.4));
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* Dashboard icon - no color change on hover */
.dropdown-item:not(.danger):hover .dropdown-icon {
    color: var(--color-text-muted, rgba(255, 255, 255, 0.4));
    opacity: 0.6;
}

/* Opasna akcija */
.dropdown-item.danger {
    color: #ff5555;
}

.dropdown-item.danger .dropdown-icon {
    color: #ff5555;
    opacity: 1;
}

.dropdown-item.danger:hover {
    background: rgba(255, 85, 85, 0.12);
    color: #ff6b6b;
}

.dropdown-item.danger:hover .dropdown-icon {
    color: #ff6b6b;
}

/* 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: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.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 var(--transition-normal);
}

.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), var(--color-green-dark));
    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 var(--transition-fast);
}

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

.btn-kick-login.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-kick-login.loading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-kick-login.loading span::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ─────────────────────────────────────────────────────────────
   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 - Disabled for 120 FPS performance */
body::before {
    display: none !important;
}

/* 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: var(--z-content);
}

.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 var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.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.85);
    border: 1px solid rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(20px);
    -webkit-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.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.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 var(--transition-normal);
}

.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 var(--transition-fast), box-shadow var(--transition-fast);
}

.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.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #E2E8F0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-pill:hover, .faq-pill.active {
    background: #6D28D9;
    color: #ffffff;
    border-color: #7C3AED;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

.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 var(--transition-normal);
}

.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 var(--transition-normal);
    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 var(--transition-normal);
    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 var(--transition-fast);
}

.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: 991px) {
    .stats-bar-grid, .showcase-grid, .performanse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-header-wrapper {
        text-align: center;
    }
    
    .support-content .section-desc {
        text-align: center;
    }
    
    /* Disable premium scroll on mobile/tablet */
    * {
        scrollbar-width: auto;
        scrollbar-color: auto;
    }
    
    ::-webkit-scrollbar {
        width: auto;
        height: auto;
    }
    
    ::-webkit-scrollbar-track {
        background: auto;
    }
    
    ::-webkit-scrollbar-thumb {
        background: auto;
        border-radius: auto;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: auto;
    }
    
    /* Disable background animations but keep static glow */
    .blob {
        animation: none;
    }
    
    /* Show mobile menu close button and actions */
    .mobile-menu-close {
        display: block;
    }
    
    .mobile-menu-actions {
        display: flex;
    }
    
    .feature-card::before {
        display: none;
    }
    
    .feature-card:hover {
        transform: none;
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .feature-card:hover#card-kickot {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .feature-card:hover#card-kickaj {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .feature-card:hover#card-kickov {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .feature-card:hover#card-kickan {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    /* Disable other hover effects */
    .hero-glass-card:hover {
        transform: none;
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .dashboard-preview-card:hover {
        transform: none;
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .playground-card:hover {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn-secondary:hover {
        transform: none;
        box-shadow: none;
    }
    
    .card-action-link:hover {
        text-shadow: none;
    }
    
    /* Disable focus and active effects */
    *:focus {
        outline: none;
        box-shadow: none;
    }
    
    *:active {
        transform: none;
        box-shadow: none;
    }
    
    .tab-btn:focus-visible {
        outline: none;
    }
    
    .chat-input-area input:focus {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    .form-input:focus {
        border-color: var(--color-border);
        box-shadow: none;
    }
    
    /* Disable tap highlight color on mobile */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        max-width: 100%;
    }
    
    /* Re-enable text selection for inputs */
    input, textarea {
        -webkit-user-select: text;
        user-select: text;
    }
    
    /* Fix horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .glow-bg {
        width: 100vw;
        max-width: 100vw;
    }
}

@media (max-width: 640px) {
    .stats-bar-grid, .showcase-grid, .performanse-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix horizontal overflow on small mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* 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: var(--z-modal);
    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);
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE OPTIMIZATIONS
   Preserving PC/Desktop version while optimizing for all other devices
   ═══════════════════════════════════════════════════════════════════════════ */

/* Extra Large Screens (1440px+) - Ultra-wide displays */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
        max-width: 650px;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .features-grid {
        gap: 50px;
    }
    
    .feature-card {
        padding: 45px;
        min-height: 420px;
    }
    
    .pricing-grid {
        gap: 40px;
    }
    
    .stats-bar-grid {
        gap: 25px;
    }
    
    .performanse-grid {
        gap: 25px;
    }
    
    .hero-section {
        min-height: 100vh;
    }
}

/* Laptops & Medium Screens (992px - 1240px) */
@media (min-width: 992px) and (max-width: 1240px) {
    .container {
        max-width: 1160px;
        padding: 0 24px;
    }
    
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 90px 0 30px 0;
        display: flex;
        align-items: center;
    }
    
    .hero-visual {
        display: block !important;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-container {
        display: grid !important;
        grid-template-columns: 1.12fr 0.88fr !important;
        gap: clamp(20px, 2.5vw, 36px) !important;
        align-items: center;
        text-align: left !important;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 3.2vw, 3.2rem);
        line-height: 1.12;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 1.1vw, 1.08rem);
        line-height: 1.55;
        margin-bottom: 22px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-actions {
        justify-content: flex-start !important;
        gap: 12px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px;
        min-height: 350px;
    }
    
    .pricing-grid {
        gap: 25px;
    }
    
    .pricing-card {
        padding: 35px;
    }
}

/* Tablets (768px - 991px) - Enhanced tablet experience */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 110px 0 60px 0;
    }
    
    .hero-visual {
        display: block !important;
        max-width: 500px;
        margin: 16px auto 0 auto;
        width: 100%;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px;
        text-align: center;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 4.8vw, 3rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 28px;
        min-height: 320px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .playground-content-wrapper {
        padding: 30px;
    }
    
    .kickbot-grid, .kickaj-layout, .kickov-layout, .kickan-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 350px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
        margin: 40px auto 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
        margin: 40px auto 0 auto;
    }
    
    .support-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .performanse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-controls {
        max-width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links-group {
        gap: 30px;
    }
}

/* Small Tablets & Large Mobile (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-section {
        padding: 100px 0 60px 0;
        min-height: 100vh;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 16px;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 28px;
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 32px;
        min-height: auto;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .feature-list {
        gap: 12px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bar-stat-card {
        padding: 20px;
    }
    
    .bar-stat-val {
        font-size: 1.6rem;
    }
    
    .bar-stat-lbl {
        font-size: 0.85rem;
    }
    
    .playground-content-wrapper {
        padding: 24px;
    }
    
    .playground-tabs {
        padding: 8px;
        overflow-x: auto;
    }
    
    .tab-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .kickbot-grid, .kickaj-layout, .kickov-layout, .kickan-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kickbot-info, .kickaj-setup, .kickov-controls, .kickan-sidebar {
        text-align: center;
    }
    
    .kickbot-info h3, .kickov-controls h3, .kickan-sidebar h3 {
        font-size: 1.8rem;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 350px;
    }
    
    .chat-messages {
        padding: 16px;
    }
    
    .prize-display {
        font-size: 2rem;
    }
    
    .winner-name {
        font-size: 2.4rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 450px;
        margin: 50px auto 0 auto;
    }
    
    .pricing-card {
        padding: 32px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .p-price {
        font-size: 3.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 50px auto 0 auto;
    }
    
    .testimonial-card {
        padding: 32px;
    }
    
    .support-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-header-wrapper {
        text-align: center;
    }
    
    .support-content .section-desc {
        text-align: center;
    }
    
    .support-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .support-status-card {
        padding: 28px;
    }
    
    .performanse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .perf-card {
        padding: 24px 20px;
    }
    
    .perf-title {
        font-size: 1.1rem;
    }
    
    .perf-desc {
        font-size: 0.9rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-controls {
        max-width: 100%;
    }
    
    .faq-search-input {
        padding: 16px 20px 16px 48px;
        font-size: 0.95rem;
    }
    
    .faq-pill {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 18px 24px;
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 60px 32px;
    }
    
    .cta-card h2 {
        font-size: 2.2rem;
    }
    
    .cta-card p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-group {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Extra fix for very small screens below 728px */
@media (max-width: 728px) {
    .playground-section {
        padding: 60px 0;
    }
    
    .playground-content-wrapper {
        padding: 16px;
    }
    
    .playground-tabs {
        padding: 4px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        width: 100%;
    }
    
    .playground-tabs::-webkit-scrollbar {
        height: 3px;
    }
    
    .playground-tabs::-webkit-scrollbar-thumb {
        background: var(--color-violet);
        border-radius: 2px;
    }
    
    .tab-btn {
        padding: 5px 8px;
        font-size: 0.65rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: 60px;
        gap: 3px;
    }
    
    .tab-dot {
        width: 4px;
        height: 4px;
    }
    
    .tab-badge-active, .tab-badge-soon {
        font-size: 0.45rem;
        padding: 1px 2px;
        margin-left: 2px;
    }
    
    .kickbot-grid, .kickaj-layout, .kickov-layout, .kickan-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kickbot-info, .kickaj-setup, .kickov-controls, .kickan-sidebar {
        text-align: center;
    }
    
    .kickbot-info h3, .kickov-controls h3, .kickan-sidebar h3 {
        font-size: 1.4rem;
    }
    
    .kickbot-info p, .kickov-controls p, .kickan-sidebar p {
        font-size: 0.85rem;
    }
    
    .quick-commands {
        flex-direction: column;
        gap: 8px;
    }
    
    .cmd-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 280px;
    }
    
    .chat-header {
        padding: 10px 12px;
    }
    
    .chat-messages {
        padding: 10px;
    }
    
    .chat-message {
        font-size: 0.8rem;
    }
    
    .chat-input-area {
        padding: 10px;
    }
    
    .chat-input-area input {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .chat-send-btn {
        padding: 0 14px;
        font-size: 0.8rem;
    }
    
    .prize-display {
        font-size: 1.5rem;
    }
    
    .winner-name {
        font-size: 1.8rem;
    }
    
    .drum-container {
        max-width: 220px;
        height: 50px;
    }
    
    .drum-item {
        width: 110px;
        font-size: 0.9rem;
    }
    
    .theme-pills {
        gap: 6px;
    }
    
    .theme-pill {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .alert-triggers {
        gap: 8px;
    }
    
    .btn-alert-trigger {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .stats-period-selector {
        margin-bottom: 16px;
    }
    
    .period-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .mini-metrics {
        gap: 10px;
    }
    
    .mini-metric-card {
        padding: 10px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .support-email-box {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .email-label {
        text-align: left;
    }
    
    .email-copy-wrapper {
        justify-content: space-between;
        width: 100%;
    }
}

/* Large Mobile (375px - 480px) */
@media (min-width: 375px) and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 18px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .nav-container {
        height: 65px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .hero-section {
        padding: 90px 0 50px 0;
        min-height: 100vh;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 28px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        gap: 14px;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 28px;
        min-height: auto;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .feature-list {
        gap: 10px;
    }
    
    .feature-list li {
        font-size: 0.85rem;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bar-stat-card {
        padding: 18px;
    }
    
    .bar-stat-icon {
        width: 44px;
        height: 44px;
    }
    
    .bar-stat-val {
        font-size: 1.4rem;
    }
    
    .bar-stat-lbl {
        font-size: 0.8rem;
    }
    
    .playground-content-wrapper {
        padding: 20px;
    }
    
    .playground-tabs {
        padding: 6px;
        overflow-x: auto;
    }
    
    .tab-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .tab-badge-active, .tab-badge-soon {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .kickbot-grid, .kickaj-layout, .kickov-layout, .kickan-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .kickbot-info, .kickaj-setup, .kickov-controls, .kickan-sidebar {
        text-align: center;
    }
    
    .kickbot-info h3, .kickov-controls h3, .kickan-sidebar h3 {
        font-size: 1.6rem;
    }
    
    .kickbot-info p, .kickov-controls p, .kickan-sidebar p {
        font-size: 0.95rem;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 320px;
    }
    
    .chat-header {
        padding: 14px 16px;
    }
    
    .chat-messages {
        padding: 14px;
    }
    
    .chat-message {
        font-size: 0.85rem;
    }
    
    .chat-input-area {
        padding: 14px;
    }
    
    .chat-input-area input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .chat-send-btn {
        padding: 0 20px;
        font-size: 0.9rem;
    }
    
    .cmd-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .prize-display {
        font-size: 1.8rem;
    }
    
    .winner-name {
        font-size: 2rem;
    }
    
    .drum-container {
        max-width: 260px;
        height: 60px;
    }
    
    .drum-item {
        width: 130px;
        font-size: 1rem;
    }
    
    .theme-pills {
        gap: 8px;
    }
    
    .theme-pill {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .alert-triggers {
        gap: 12px;
    }
    
    .btn-alert-trigger {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .stats-period-selector {
        margin-bottom: 24px;
    }
    
    .period-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .mini-metrics {
        gap: 14px;
    }
    
    .mini-metric-card {
        padding: 14px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 380px;
        margin: 40px auto 0 auto;
    }
    
    .pricing-card {
        padding: 28px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .p-price {
        font-size: 3rem;
    }
    
    .p-features-list {
        gap: 16px;
    }
    
    .p-features-list li {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 40px auto 0 auto;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    .t-text {
        font-size: 0.95rem;
    }
    
    .support-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .support-header-wrapper {
        text-align: center;
    }
    
    .support-content .section-desc {
        text-align: center;
    }
    
    .support-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .support-status-card {
        padding: 24px;
    }
    
    .status-metrics {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .support-log {
        padding: 14px;
        font-size: 0.8rem;
    }
    
    .performanse-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .perf-card {
        padding: 22px 18px;
    }
    
    .perf-title {
        font-size: 1rem;
    }
    
    .perf-desc {
        font-size: 0.85rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-controls {
        margin: 35px auto 0 auto;
    }
    
    .faq-search-input {
        padding: 14px 18px 14px 44px;
        font-size: 0.9rem;
    }
    
    .faq-pill {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 50px 24px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        gap: 14px;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .footer {
        padding: 60px 0 30px 0;
    }
    
    .footer-container {
        gap: 32px;
    }
    
    .footer-links-group {
        gap: 32px;
    }
    
    .footer-bottom-container {
        gap: 16px;
    }
    
    .back-to-top-btn {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    
    .support-email-box {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .email-label {
        text-align: left;
    }
    
    .email-copy-wrapper {
        justify-content: space-between;
        width: 100%;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .hero-section {
        padding: 80px 0 40px 0;
        min-height: 100vh;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
        min-height: auto;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .feature-list {
        gap: 8px;
    }
    
    .feature-list li {
        font-size: 0.8rem;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .bar-stat-card {
        padding: 16px;
    }
    
    .bar-stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .bar-stat-val {
        font-size: 1.3rem;
    }
    
    .bar-stat-lbl {
        font-size: 0.75rem;
    }
    
    .playground-content-wrapper {
        padding: 18px;
    }
    
    .playground-tabs {
        padding: 5px;
        overflow-x: auto;
    }
    
    .tab-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .tab-badge-active, .tab-badge-soon {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    .kickbot-grid, .kickaj-layout, .kickov-layout, .kickan-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .kickbot-info, .kickaj-setup, .kickov-controls, .kickan-sidebar {
        text-align: center;
    }
    
    .kickbot-info h3, .kickov-controls h3, .kickan-sidebar h3 {
        font-size: 1.4rem;
    }
    
    .kickbot-info p, .kickov-controls p, .kickan-sidebar p {
        font-size: 0.9rem;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 300px;
    }
    
    .chat-header {
        padding: 12px 14px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .chat-message {
        font-size: 0.8rem;
    }
    
    .chat-input-area {
        padding: 12px;
    }
    
    .chat-input-area input {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .chat-send-btn {
        padding: 0 18px;
        font-size: 0.85rem;
    }
    
    .cmd-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .prize-display {
        font-size: 1.6rem;
    }
    
    .winner-name {
        font-size: 1.8rem;
    }
    
    .drum-container {
        max-width: 240px;
        height: 55px;
    }
    
    .drum-item {
        width: 120px;
        font-size: 0.9rem;
    }
    
    .theme-pills {
        gap: 6px;
    }
    
    .theme-pill {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .alert-triggers {
        gap: 10px;
    }
    
    .btn-alert-trigger {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .stats-period-selector {
        margin-bottom: 20px;
    }
    
    .period-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .mini-metrics {
        gap: 12px;
    }
    
    .mini-metric-card {
        padding: 12px;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 340px;
        margin: 35px auto 0 auto;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .p-price {
        font-size: 2.8rem;
    }
    
    .p-features-list {
        gap: 14px;
    }
    
    .p-features-list li {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 360px;
        margin: 35px auto 0 auto;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .t-text {
        font-size: 0.9rem;
    }
    
    .support-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .support-header-wrapper {
        text-align: center;
    }
    
    .support-content .section-desc {
        text-align: center;
    }
    
    .support-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .support-status-card {
        padding: 20px;
    }
    
    .status-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .support-log {
        padding: 12px;
        font-size: 0.75rem;
    }
    
    .performanse-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .perf-card {
        padding: 20px 16px;
    }
    
    .perf-title {
        font-size: 0.95rem;
    }
    
    .perf-desc {
        font-size: 0.8rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .faq-controls {
        margin: 30px auto 0 auto;
    }
    
    .faq-search-input {
        padding: 12px 16px 12px 40px;
        font-size: 0.85rem;
    }
    
    .faq-pill {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .faq-question {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
    
    .cta-card {
        padding: 45px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .cta-card p {
        font-size: 0.95rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .footer {
        padding: 50px 0 25px 0;
    }
    
    .footer-container {
        gap: 28px;
    }
    
    .footer-links-group {
        gap: 28px;
    }
    
    .footer-bottom-container {
        gap: 14px;
    }
    
    .back-to-top-btn {
        width: 44px;
        height: 44px;
        bottom: 15px;
        right: 15px;
    }
    
    .support-email-box {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .email-label {
        text-align: left;
    }
    
    .email-copy-wrapper {
        justify-content: space-between;
        width: 100%;
    }
}

/* Landscape Orientation Optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 30px 0;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .btn-large {
        width: auto;
    }
    
    .hero-glass-card {
        padding: 20px;
    }
    
    .metric-num-glow {
        font-size: 2rem;
    }
    
    .chat-mockup, .kickaj-visualizer, .kickov-screen, .kickan-chart-container {
        height: 280px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 24px;
        min-height: 280px;
    }
    
    .nav-menu {
        padding: 80px 25px;
        width: 300px;
    }
}

/* Advanced Touch Interaction Optimizations for Mobile */
@media (hover: none) and (pointer: coarse) {
    /* Ensure all interactive elements meet minimum touch target size */
    .btn, .tab-btn, .faq-pill, .cmd-badge, .theme-pill, .btn-alert-trigger, .period-btn,
    .mobile-toggle, .nav-menu button, .user-menu-trigger, .back-to-top-btn,
    .spin-btn, .copy-btn, .close-btn, .lang-btn, .nav-link, .dropdown-item {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }
    
    /* Enhanced touch feedback */
    .btn, .tab-btn, .mobile-toggle, .nav-link, .dropdown-item {
        position: relative;
        overflow: hidden;
    }
    
    .btn::after, .tab-btn::after, .mobile-toggle::after, .nav-link::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s;
    }
    
    .btn:active::after, .tab-btn:active::after, .mobile-toggle:active::after, .nav-link:active::after {
        width: 200px;
        height: 200px;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover, .pricing-card:hover, .testimonial-card:hover, .bar-stat-card:hover,
    .perf-card:hover, .showcase-card:hover, .module-card:hover {
        transform: none;
        box-shadow: var(--shadow-glass);
    }
    
    /* Add active state feedback */
    .feature-card:active, .pricing-card:active, .testimonial-card:active, .bar-stat-card:active,
    .perf-card:active, .showcase-card:active, .module-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .btn-primary:active, .btn-secondary:active, .btn-outline:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Improved mobile menu touch targets */
    .mobile-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
    }
    
    .mobile-menu-close {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
    }
    
    /* Chat and input elements */
    .chat-send-btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    input[type="text"], input[type="email"], input[type="password"], textarea, select {
        min-height: 48px;
        font-size: 16px; /* Prevent iOS zoom */
        touch-action: manipulation;
    }
    
    /* Back to top button */
    .back-to-top-btn {
        min-width: 56px;
        min-height: 56px;
    }
    
    /* Language switcher */
    .lang-switcher {
        gap: 8px;
    }
    
    .lang-btn {
        min-width: 44px;
        min-height: 44px;
        font-size: 14px;
    }
    
    /* User menu */
    .user-menu-trigger {
        min-height: 48px;
        padding: 8px 12px;
    }
    
    .user-avatar {
        min-width: 40px;
        min-height: 40px;
    }
    
    /* Navigation links spacing */
    .nav-link {
        padding: 12px 0;
        margin: 2px 0;
        font-size: 0.9rem;
    }
    
    /* Dropdown items */
    .dropdown-item {
        padding: 16px 20px;
        margin: 4px 0;
    }
    
    /* Prevent text selection on interactive elements */
    .btn, .nav-link, .mobile-toggle, .user-menu-trigger, .lang-btn {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improved scrollbar for mobile */
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    
    /* Prevent pull-to-refresh on sensitive areas */
    .no-pull-refresh {
        overscroll-behavior: contain;
    }
}

/* Fluid Typography Scaling - REMOVED due to conflicts */

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .hero-glass-card, .feature-card, .pricing-card, .testimonial-card {
        border-width: 0.5px;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .blob {
        animation: none;
    }
    
    .lenis {
        scroll-behavior: auto !important;
    }
}

/* Dark Mode System Preference (already dark, but ensures consistency) */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-dark: #06040A;
        --color-bg-panel: #0E0A1D;
        --color-bg-card: #130E26;
    }
}

/* Print Styles */
@media print {
    .header, .mobile-toggle, .nav-menu, .nav-actions, .back-to-top-btn,
    .hero-visual, .playground-section, .cta-section, .footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-title, .section-title {
        color: black;
    }
    
    .hero-description, .section-subtitle {
        color: #333;
    }
    
    .feature-card, .pricing-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: white;
    }
}

