:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --accent: #00ff88;
    --accent-alt: #ff4444;
    --text-light: #ffffff;
    --text-dim: #cccccc;
    --glass: rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(0, 255, 136, 0.5);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Google Ads Styles */
.ad-banner-top {
    width: 100%;
    max-width: 970px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

.ad-banner-top .adsbygoogle {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-container {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-card {
    background: var(--glass) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ad-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.ad-in-content {
    margin: 40px 0;
    padding: 20px;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.native-ad-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.native-ad-section h3 {
    color: var(--accent);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

.partner-ads {
    max-width: 800px;
    margin: 0 auto;
}

/* Ad Placeholder Styling */
.adsbygoogle:empty {
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.02) 25%, 
        transparent 25%,
        transparent 75%, 
        rgba(255, 255, 255, 0.02) 75%
    ),
    linear-gradient(45deg, 
        rgba(255, 255, 255, 0.02) 25%, 
        transparent 25%,
        transparent 75%, 
        rgba(255, 255, 255, 0.02) 75%
    );
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
}

.adsbygoogle:empty::after {
    content: "Místo pro reklamu";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-dim);
    font-size: 0.9rem;
    opacity: 0.5;
}

[data-theme="light"] {
    --primary: #ffffff;
    --secondary: #f0f0f0;
    --accent: #00cc66;
    --text-light: #000000;
    --text-dim: #666666;
    --glass: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', 'Roboto', sans-serif;
    background: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transition: all 0.1s ease;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    transition: all 0.15s ease;
}

/* Particle System */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 80px;
    right: 15px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.switch-track {
    width: 50px;
    height: 24px;
    background: var(--secondary);
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--accent);
}

.switch-thumb {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: var(--glow);
}

.theme-switcher.active .switch-thumb {
    transform: translateX(24px);
}

.theme-label {
    font-size: 12px;
    font-weight: bold;
    color: var(--accent);
    letter-spacing: 1px;
}

/* Main Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 15px 0;
}

.navigation .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-menu:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-avatar {
    width: 30px;
    height: 30px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #000;
    font-weight: bold;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    min-width: 200px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff88;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
}

/* Futuristic Navigation */
.navbar-future {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--accent);
    z-index: 999;
    padding: 15px 0;
}

.nav-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    position: relative;
}

.logo-hub {
    font-size: 16px;
    color: var(--text-dim);
    transform: translateY(-5px);
}

.logo-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.nav-center {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-item {
    position: relative;
    cursor: pointer;
}

.nav-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-text {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.nav-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: var(--glow);
}

.nav-item:hover .nav-underline {
    width: 100%;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--accent);
    background: transparent;
    border-radius: 50%;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--glow);
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: var(--accent-alt);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: var(--accent);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { opacity: 0; transform: translate(0); }
    10% { opacity: 1; transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { opacity: 0; transform: translate(0); }
    5% { opacity: 1; transform: translate(2px, 2px); }
}

/* 3D Hero Section */
.hero-3d {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-layer {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    background-size: cover;
    background-position: center;
}

.layer-1 {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    animation: float 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 70% 80%, rgba(255, 68, 68, 0.1) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content-3d {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    perspective: 400px;
}

.title-line {
    display: block;
    margin: 10px 0;
}

.title-word {
    display: inline-block;
    margin: 0 20px;
    position: relative;
    transform-style: preserve-3d;
    animation: word-float 3s ease-in-out infinite;
}

.title-word.accent {
    color: var(--accent);
    text-shadow: 
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 40px var(--accent);
    animation-delay: 0.5s;
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateX(90deg) translateZ(50px);
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

@keyframes word-float {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(10deg); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.8;
    border-right: 2px solid var(--accent);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: typing 3s steps(25) 1s forwards;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: var(--shadow-deep);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.cta-button {
    position: relative;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 
        var(--glow),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--accent), transparent);
    animation: button-glow 3s linear infinite;
    opacity: 0;
}

.cta-button:hover .cta-glow {
    opacity: 0.3;
}

@keyframes button-glow {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--accent);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 8px;
    background: var(--accent);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: wheel-scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes wheel-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Container */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Features Section */
.features-grid {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.section-title-3d {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    perspective: 400px;
}

.title-3d-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    transform: rotateX(10deg);
    text-shadow: 
        0 0 20px var(--accent),
        0 5px 10px rgba(0, 0, 0, 0.5);
}

.title-3d-shadow {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) rotateX(-10deg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    contain: layout;
    padding: 0 20px;
}

.feature-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .card-3d-wrapper {
    transform: rotateY(5deg) rotateX(5deg) translateZ(10px);
}

.card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    z-index: -1;
}

.card-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.card-desc {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-stats {
    margin-bottom: 20px;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--accent);
}

.card-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.card-btn:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--glow);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.card-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), transparent, var(--accent-alt), transparent, var(--accent));
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glow-rotate 3s linear infinite;
}

.feature-card:hover .card-glow {
    opacity: 0.5;
}

@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Activity Feed */
.activity-feed {
    padding: 60px 0;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-title {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-alt);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-alt);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

.feed-ticker {
    overflow: hidden;
    background: var(--glass);
    border-radius: 10px;
    padding: 20px;
}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    white-space: nowrap;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.ticker-item i {
    color: var(--accent);
    margin-right: 8px;
}

/* Player Dashboard */
.player-dashboard {
    padding: 80px 0;
    background: var(--secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.progress-card {
    padding: 40px;
}

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

.level-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.xp-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 6px;
    margin-bottom: 30px;
    overflow: hidden;
}

.xp-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-radius: 6px;
    transition: width 0.8s ease;
}

.xp-glow {
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    animation: xp-shine 2s ease-in-out infinite;
}

@keyframes xp-shine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.xp-text {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: bold;
}

.achievements {
    display: flex;
    gap: 15px;
}

.achievement {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.achievement.unlocked {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    box-shadow: var(--glow);
}

.achievement.locked {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

/* Floating Action Button */
.fab-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--glow);
    transition: all 0.3s ease;
}

.fab-main:hover {
    transform: scale(1.1) rotate(45deg);
}

.fab-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu:hover .fab-options {
    opacity: 1;
    transform: translateY(0);
}

.fab-option {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.fab-option:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.fab-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: var(--primary);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-option:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.sound-toggle:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--glow);
}

/* Pulse Animation */
.pulse-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

/* Additional Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--primary);
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-cat {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.blog-cat:hover,
.blog-cat.active {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--glow);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
    border-color: var(--accent);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image,
.blog-image-small {
    height: 250px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    position: relative;
    overflow: hidden;
}

.blog-image-small {
    height: 150px;
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-alt);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.blog-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--accent);
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 15px;
}

.blog-cta {
    text-align: center;
}

/* Merch Section */
.merch-section {
    padding: 80px 0;
    background: var(--secondary);
    position: relative;
}

.merch-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.merch-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.banner-badge {
    display: inline-block;
    background: white;
    color: var(--accent);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.merch-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-deep);
    border-color: var(--accent);
}

.merch-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 3;
}

.merch-badge.bestseller {
    background: var(--accent);
    color: var(--primary);
}

.merch-badge.new {
    background: #4CAF50;
    color: white;
}

.merch-badge.limited {
    background: var(--accent-alt);
    color: white;
}

.merch-image {
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.merch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.merch-card:hover .merch-overlay {
    opacity: 1;
}

.quick-view {
    padding: 12px 25px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view:hover {
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.size-indicator {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.size-tag {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
}

.merch-info {
    padding: 20px;
}

.merch-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.merch-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
}

.merch-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.merch-rating span {
    margin-left: 10px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.merch-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.price-sale {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent);
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--glow);
}

/* Shopping Cart Widget */
.cart-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.cart-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--glow);
    position: relative;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-alt);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cart-widget:hover .cart-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-dropdown h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.cart-dropdown p {
    color: var(--text-dim);
}

/* AI Expert Section */
.ai-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.ai-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.ai-avatar {
    position: relative;
    width: 200px;
    height: 200px;
}

.ai-face {
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
}

.ai-eyes {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.ai-eye {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 3s infinite;
}

.ai-mouth {
    width: 30px;
    height: 15px;
    border: 3px solid var(--primary);
    border-top: none;
    border-radius: 0 0 30px 30px;
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.ai-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
}

.wave1 {
    width: 140px;
    height: 140px;
    animation: pulse-wave 2s infinite;
}

.wave2 {
    width: 170px;
    height: 170px;
    animation: pulse-wave 2s infinite 0.5s;
}

.wave3 {
    width: 200px;
    height: 200px;
    animation: pulse-wave 2s infinite 1s;
}

@keyframes pulse-wave {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

.ai-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

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

.ai-stat {
    text-align: center;
}

.ai-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.ai-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 5px;
}

/* Chat Interface */
.ai-chat-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

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

.chat-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #4CAF50;
}

.chat-options {
    display: flex;
    gap: 10px;
}

.chat-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.chat-messages {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
}

.message {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    flex: 1;
    line-height: 1.6;
}

.message-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.user-message .message-content {
    background: var(--accent);
    color: var(--primary);
    margin-left: auto;
    max-width: 70%;
}

.quick-questions {
    padding: 0 20px;
    margin-bottom: 20px;
}

.quick-questions h4 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.quick-btn {
    padding: 12px 15px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 25px;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.chat-input-container {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    display: flex;
    gap: 15px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 1rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--accent);
}

.send-btn {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow);
}

/* Teams Section */
.teams-section {
    padding: 80px 0;
    background: var(--primary);
}

.teams-banner {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-bottom: 60px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-deep);
}

.team-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--glass), rgba(0, 255, 136, 0.1));
}

.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.team-badge.elite {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.team-badge.veteran {
    background: var(--accent);
    color: var(--primary);
}

.team-badge.rookie {
    background: #4CAF50;
    color: white;
}

.team-logo {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: var(--glow);
}

.team-logo.small {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.team-name {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.team-stat .stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
}

.team-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.team-mini-stats {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-speciality {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-tag {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.team-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Creative Tools */
.creative-tools {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.creative-tools h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.creative-tools p {
    margin-bottom: 40px;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tool-card h4 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.tool-card p {
    margin-bottom: 20px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.tool-btn {
    padding: 10px 25px;
    background: var(--accent);
    border: none;
    border-radius: 25px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .nav-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .theme-switcher {
        top: 70px;
        right: 10px;
        padding: 6px 10px;
    }
    
    .theme-label {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        height: 350px;
    }
    
    .card-content {
        padding: 30px 25px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container-fluid {
        padding: 0 15px;
    }
    
    .title-3d-text, .title-3d-shadow {
        font-size: 2.5rem;
    }
    
    .fab-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .fab-options {
        bottom: 65px;
    }
    
    .fab-option {
        width: 40px;
        height: 40px;
    }
    
    .sound-toggle {
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }
    
    body {
        cursor: auto;
    }
    
    .cursor-dot, .cursor-outline {
        display: none;
    }
    
    /* Vypnout komplexní animace na mobilu */
    .tilt-card {
        transform: none !important;
    }
    
    .stat-card:hover {
        transform: translateY(-2px) rotateX(2deg);
    }
    
    .feature-card:hover .card-3d-wrapper {
        transform: rotateY(2deg) rotateX(2deg) translateZ(5px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-word {
        margin: 0 10px;
    }
    
    .hero-content-3d {
        padding: 0 10px;
    }
    
    .nav-grid {
        padding: 0 10px;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    .features-container {
        padding: 0 5px;
    }
    
    .feature-card {
        height: 320px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .progress-card {
        padding: 25px;
    }
    
    /* Úplně vypnout 3D efekty na malých obrazovkách */
    .feature-card:hover .card-3d-wrapper,
    .stat-card:hover {
        transform: none !important;
    }
    
    /* Blog responsive */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .blog-categories {
        gap: 10px;
    }
    
    .blog-cat {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Merch responsive */
    .merch-banner {
        padding: 40px 20px;
    }
    
    .banner-content h3 {
        font-size: 1.8rem;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-widget {
        bottom: 85px;
        right: 15px;
    }
    
    .cart-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cart-dropdown {
        width: 250px;
        bottom: 60px;
        right: -50px;
    }
}