: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,') 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: #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; } .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; } } .chemistry-bg { background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%); } .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); }