 :root {
            --primary-green: #00ff88;
            --dark-green: #00cc66;
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --bg-card: #2a2a2a;
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --text-accent: #00ff88;
            --border-color: #333333;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 4px;
        }

        /* Header */
        .header {
            backdrop-filter: blur(20px);
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid var(--border-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a2f1a 50%, #0a0a0a 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2300ff88" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300ff88" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }

        /* Bento UI Cards */
        .bento-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .bento-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-green);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        /* Character Cards */
        .character-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .character-card:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
        }

        .character-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--bg-primary);
            margin: 0 auto 1rem;
        }

        /* Season Grid */
        .season-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Facts Section */
        .fact-item {
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
            border-left: 4px solid var(--primary-green);
            padding: 1.5rem;
            border-radius: 0 12px 12px 0;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .fact-item:hover {
            transform: translateX(8px);
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.1) 100%);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            aspect-ratio: 16/9;
            background: var(--bg-card);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-green);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 136, 0.1));
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        /* Navigation */
        .nav-link {
            position: relative;
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-green);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--bg-primary);
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 10px 22px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: var(--primary-green);
            color: var(--bg-primary);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 20px;
            max-width: 90%;
            max-height: 90%;
            overflow-y: auto;
            border: 1px solid var(--border-color);
        }

        /* Search */
        .search-container {
            position: relative;
            max-width: 400px;
        }

        .search-input {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 12px 16px 12px 48px;
            color: var(--text-primary);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 80vh;
            }
            
            .bento-card {
                padding: 1.5rem;
            }
            
            .character-avatar {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        /* Print styles for PDF export */
        @media print {
            * {
                -webkit-print-color-adjust: exact !important;
                color-adjust: exact !important;
            }
            
            body {
                background: white !important;
                color: black !important;
            }
            
            .header {
                position: static !important;
                background: white !important;
                border-bottom: 1px solid #ccc !important;
            }
            
            .hero {
                background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%) !important;
            }
            
            .bento-card, .character-card, .fact-item {
                background: #f9f9f9 !important;
                border: 1px solid #ddd !important;
                break-inside: avoid;
            }
        }

    /*seasons */
   
        .breaking-bad-green {
            background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
        }
        
        .breaking-bad-accent {
            color: #7fb069;
        }
        
        .episode-card {
            background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        
        .episode-card:hover {
            border-color: #7fb069;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(127, 176, 105, 0.1);
        }
        
        .character-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        
        .character-card:hover {
            border-color: #7fb069;
            transform: scale(1.02);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 2rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: #7fb069;
            border-radius: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1.2rem;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, #7fb069, transparent);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .hero-bg {
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9)), 
                        url('https://cdn1.genspark.ai/user-upload-image/22_generated/772e3cca-8e77-460d-a588-83c321414647') center/cover;
        }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #7fb069, transparent);
            margin: 3rem 0;
        }

        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(20, 60, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
        }
        .card-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
        }
        .text-gradient {
            background: linear-gradient(45deg, #10b981, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .episode-card {
            background: linear-gradient(145deg, #1f2937, #111827);
            border-left: 4px solid #10b981;
        }
        .character-card {
            background: linear-gradient(145deg, #374151, #1f2937);
        }
        .moment-card {
            background: linear-gradient(145deg, #065f46, #064e3b);
        }
.bb-gradient { background: linear-gradient(135deg, #0f3460, #16213e, #0e6b2e); }
        .bb-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); }
        .bb-text-primary { color: #4ade80; }
        .bb-text-secondary { color: #a3a3a3; }
        .episode-card:hover { transform: translateY(-2px); transition: all 0.3s ease; }
        .character-card { background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.05)); }
        .moment-card { background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05)); }
        .theme-card { background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.05)); }

         .breaking-bad-green {
            color: #7cb342;
        }
        
        .breaking-bad-bg {
            background: linear-gradient(135deg, #2e7d2e 0%, #1a4a1a 100%);
        }
        
        .episode-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(124, 179, 66, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .episode-card:hover {
            border-color: rgba(124, 179, 66, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 179, 66, 0.1);
        }
        
        .section-bg {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 179, 66, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #7cb342;
            border-radius: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 11px;
            top: 20px;
            width: 2px;
            height: calc(100% - 12px);
            background: linear-gradient(180deg, rgba(124, 179, 66, 0.5) 0%, transparent 100%);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .quote-box {
            background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
            border-left: 4px solid #7cb342;
        }

        .breaking-bad-green {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        }
        .glass-effect {
            background: rgba(15, 20, 25, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        .episode-card {
            transition: all 0.3s ease;
        }
        .episode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
        }
        .character-card {
            background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
            border: 2px solid rgba(34, 197, 94, 0.3);
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1.5rem;
            bottom: -1rem;
            width: 2px;
            background: linear-gradient(to bottom, #22c55e, transparent);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .quote-box {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
            border-left: 4px solid #22c55e;
        }
        .hero-section {
            background: url('https://cdn1.genspark.ai/user-upload-image/22_generated/8212085b-d43e-43a6-af05-1f4f43f291ef') center/cover;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 10;
        }
        .breaking-bad-green {
            color: white;
        }
        
        .breaking-bad-bg {
            background: linear-gradient(135deg, #2e7d2e 0%, #1a4a1a 100%);
        }
        
        .episode-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(124, 179, 66, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .episode-card:hover {
            border-color: rgba(124, 179, 66, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 179, 66, 0.1);
        }
        
        .section-bg {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 179, 66, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #7cb342;
            border-radius: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 11px;
            top: 20px;
            width: 2px;
            height: calc(100% - 12px);
            background: linear-gradient(180deg, rgba(124, 179, 66, 0.5) 0%, transparent 100%);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .quote-box {
            background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
            border-left: 4px solid #7cb342;
        }

         .breaking-bad-green {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        }
        .glass-effect {
            background: rgba(15, 20, 25, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        .episode-card {
            transition: all 0.3s ease;
        }
        .episode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
        }
        .character-card {
            background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
            border: 2px solid rgba(34, 197, 94, 0.3);
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1.5rem;
            bottom: -1rem;
            width: 2px;
            background: linear-gradient(to bottom, #22c55e, transparent);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .quote-box {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
            border-left: 4px solid #22c55e;
        }
        .hero-section {
            background: url('https://cdn1.genspark.ai/user-upload-image/22_generated/8212085b-d43e-43a6-af05-1f4f43f291ef') center/cover;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 10;
        }
         .gradient-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }
        
        .chemical-bg {
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }
        
        .episode-card {
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 197, 94, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }
        
        .section-card {
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(71, 85, 105, 0.3);
        }
        
        .highlight-green {
            color: #22c55e;
            text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
        }
        
        .highlight-yellow {
            color: #eab308;
            text-shadow: 0 0 10px rgba(234, 179, 8, 0.3);
        }
        
        .nav-link {
            position: relative;
            overflow: hidden;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .nav-link:hover:before {
            left: 100%;
        }
        
        .molecular-pattern {
            background-image: 
                radial-gradient(circle at 2px 2px, rgba(34, 197, 94, 0.15) 1px, transparent 0);
            background-size: 20px 20px;
        }
        
        .quote-style {
            border-left: 4px solid #22c55e;
            background: rgba(34, 197, 94, 0.05);
            position: relative;
        }
        
        .quote-style:before {
            content: '"';
            font-size: 3rem;
            color: #22c55e;
            position: absolute;
            top: -10px;
            left: 15px;
            opacity: 0.3;
        }
        
        .stats-card {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        
        .character-tag {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            color: #000;
            font-weight: 600;
        }
        
        .impact-meter {
            background: linear-gradient(90deg, #dc2626, #ea580c, #eab308, #22c55e);
            height: 8px;
            border-radius: 4px;
        }

        .hero-gradient {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #daa520 50%, #228b22 75%, #4682b4 100%);
            background-size: 400% 400%;
            animation: gradientShift 8s ease-in-out infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .episode-badge {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .heisenberg-quote {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            border-left: 4px solid #f7931e;
            font-style: italic;
            position: relative;
        }
        
        .heisenberg-quote::before {
            content: '"';
            font-size: 4rem;
            color: #f7931e;
            position: absolute;
            top: -10px;
            left: 15px;
            opacity: 0.3;
        }
        
        .chemistry-element {
            background: linear-gradient(45deg, #228b22, #32cd32);
            color: white;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
        }
        
        .tuco-highlight {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .key-moment {
            background: rgba(247, 147, 30, 0.1);
            border: 1px solid rgba(247, 147, 30, 0.3);
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 20px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background: #f7931e;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(247, 147, 30, 0.5);
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 20px;
            width: 2px;
            height: calc(100% + 10px);
            background: linear-gradient(180deg, #f7931e, transparent);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .chemical-formula {
            background: #1a202c;
            border: 1px solid #4a5568;
            padding: 8px 12px;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            color: #90cdf4;
        }
        
        @media (max-width: 768px) {
            .hero-gradient h1 {
                font-size: 2rem;
            }
        }
        
        .episode-card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.9));
            border: 1px solid rgba(34, 197, 94, 0.3);
            backdrop-filter: blur(10px);
        }
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .glow-green {
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
        }
        .glow-red {
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
        }
        .scene-marker {
            background: linear-gradient(90deg, #ef4444, #dc2626);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .danger-marker {
            background: linear-gradient(90deg, #dc2626, #991b1b);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .character-card {
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(50, 50, 50, 0.9));
            border-left: 4px solid #ef4444;
            transition: all 0.3s ease;
        }
        .character-card:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
        }

        .episode-hero {
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000" width="1200" height="600"/><g fill="%2300ff88" opacity="0.1"><circle cx="200" cy="150" r="3"/><circle cx="400" cy="250" r="2"/><circle cx="600" cy="180" r="4"/><circle cx="800" cy="320" r="3"/><circle cx="1000" cy="220" r="2"/></g></svg>');
            background-size: cover;
            background-position: center;
        }

        .highlight-text {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .quote-style {
            border-left: 4px solid var(--primary-green);
            background: rgba(0, 255, 136, 0.05);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 16px;
            height: 16px;
            background: var(--primary-green);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        }

        .music-wave {
            background: linear-gradient(90deg, 
                var(--primary-green) 0%, 
                transparent 20%, 
                var(--primary-green) 40%, 
                transparent 60%, 
                var(--primary-green) 80%, 
                transparent 100%);
            height: 2px;
            animation: musicWave 2s ease-in-out infinite;
        }

        @keyframes musicWave {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .character-card {
            background: linear-gradient(135deg, var(--bg-card) 0%, #333 100%);
            border: 1px solid var(--border-color);
        }

        .rating-stars {
            background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .narco-corrido {
            background: linear-gradient(135deg, #8B5A2B 0%, #CD853F 50%, #D2691E 100%);
            color: white;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .narco-corrido::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="white" opacity="0.1"><path d="M20,20 Q50,5 80,20 Q50,35 20,20"/><path d="M10,50 Q50,35 90,50 Q50,65 10,50"/><path d="M20,80 Q50,65 80,80 Q50,95 20,80"/></g></svg>');
            background-size: 200px 100px;
        }

         :root {
            --primary-green: #00ff88;
            --dark-green: #00cc66;
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --bg-card: #2a2a2a;
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --text-accent: #00ff88;
            --border-color: #333333;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .episode-info {
            display: inline-flex;
            align-items: center;
            gap: 2rem;
            background: var(--bg-card);
            padding: 1rem 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }

        .episode-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .episode-details {
            text-align: left;
        }

        .episode-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .episode-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Content Section */
        .content {
            padding: 80px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .main-content {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid var(--border-color);
        }

        .sidebar {
            position: sticky;
            top: 120px;
        }

        .sidebar-card {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }

        .sidebar-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .sidebar-card li:last-child {
            border-bottom: none;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--primary-green);
            padding-bottom: 0.5rem;
        }

        .plot-section, .analysis-section, .trivia-section {
            margin-bottom: 3rem;
        }

        .plot-section p, .analysis-section p, .trivia-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .highlight {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 102, 0.1));
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-green);
            margin: 2rem 0;
        }

        .character-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .character-card {
            background: var(--bg-secondary);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .character-card h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        /* Navigation */
        .episode-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .nav-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var(--primary-green);
            color: var(--bg-primary);
            transform: translateY(-2px);
        }

        .nav-btn i {
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            text-align: center;
        }

        .footer p {
            color: var(--text-secondary);
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sidebar {
                position: static;
            }

            .main-content {
                padding: 2rem;
            }

            .episode-info {
                flex-direction: column;
                text-align: center;
            }

            .episode-navigation {
                flex-direction: column;
                gap: 1rem;
            }
        }

        :root {
            --primary-green: #00ff88;
            --dark-green: #00cc66;
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --bg-card: #2a2a2a;
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --text-accent: #00ff88;
            --border-color: #333333;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .episode-info {
            display: inline-flex;
            align-items: center;
            gap: 2rem;
            background: var(--bg-card);
            padding: 1rem 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }

        .episode-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .episode-details {
            text-align: left;
        }

        .episode-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .episode-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Content Section */
        .content {
            padding: 80px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .main-content {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid var(--border-color);
        }

        .sidebar {
            position: sticky;
            top: 120px;
        }

        .sidebar-card {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }

        .sidebar-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .sidebar-card li:last-child {
            border-bottom: none;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--primary-green);
            padding-bottom: 0.5rem;
        }

        .plot-section, .analysis-section, .trivia-section {
            margin-bottom: 3rem;
        }

        .plot-section p, .analysis-section p, .trivia-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .highlight {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 102, 0.1));
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-green);
            margin: 2rem 0;
        }

        .character-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .character-card {
            background: var(--bg-secondary);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .character-card h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        /* Navigation */
        .episode-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .nav-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var(--primary-green);
            color: var(--bg-primary);
            transform: translateY(-2px);
        }

        .nav-btn i {
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            text-align: center;
        }

        .footer p {
            color: var(--text-secondary);
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sidebar {
                position: static;
            }

            .main-content {
                padding: 2rem;
            }

            .episode-info {
                flex-direction: column;
                text-align: center;
            }

            .episode-navigation {
                flex-direction: column;
                gap: 1rem;
            }
        }
        .bb-title {
            font-family: 'Bebas Neue', cursive;
            text-shadow: 3px 3px 0px rgba(0,0,0,0.7);
        }
        
        .gradient-text {
            background: linear-gradient(45deg, #10b981, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .episode-card {
            background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .character-card {
            transition: all 0.3s ease;
            background: linear-gradient(135deg, rgba(75,85,99,0.8), rgba(55,65,81,0.8));
        }
        
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
        
        .synopsis-text {
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .key-moment {
            background: linear-gradient(90deg, rgba(16,185,129,0.1), transparent);
            border-left: 4px solid #10b981;
        }
        
        .danger-moment {
            background: linear-gradient(90deg, rgba(239,68,68,0.1), transparent);
            border-left: 4px solid #ef4444;
        }
        
        .iconic-moment {
            background: linear-gradient(90deg, rgba(245,158,11,0.1), transparent);
            border-left: 4px solid #f59e0b;
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6);
            transform: scaleX(0);
            transform-origin: left;
            z-index: 1000;
            transition: transform 0.1s ease;
        }
        
        /* Мобильное меню - кнопка гамбургер */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Стили для nav-link */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

/* Адаптивное меню для мобильных устройств */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.desktop-menu {
    display: flex;
    align-items: center;
    space-x: 1.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(75, 85, 99, 0.2);
}

.mobile-menu a:hover {
    background: rgba(34, 197, 94, 0.1);  /* breaking-bad-accent с прозрачностью */
    color: #22c55e;  /* breaking-bad-accent */
    padding-left: 1.5rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav .container {
        position: relative;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .desktop-menu {
        display: flex;
    }
}

/* Стили для навигационных ссылок */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #22c55e;  /* breaking-bad-accent */
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

/* Анимация для плавного появления мобильного меню */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    animation: slideDown 0.3s ease-out;
}