        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a1a;
            --primary-accent: #ffcc00;
            --secondary-accent: #990000;
            --text-light: #f0f0f0;
            --text-muted: #aaaaaa;
            --bg-card: #1a1a2e;
            --border-color: #333355;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffdd44;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000022, var(--primary-dark));
            border-bottom: 3px solid var(--primary-accent);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--primary-accent);
            text-shadow: 3px 3px 0 var(--secondary-accent);
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--text-light);
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-accent);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--primary-accent);
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 26, 46, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: var(--text-muted);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-accent);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .meta-info i {
            margin-right: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-accent);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.5rem;
            color: #ffdd44;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
        .tracklist, .interview-qa {
            background-color: rgba(0,0,0,0.3);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .track {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .track:last-child {
            border-bottom: none;
        }
        .track-number {
            font-weight: bold;
            color: var(--primary-accent);
            min-width: 30px;
        }
        .track-title {
            flex-grow: 1;
            padding: 0 1rem;
        }
        .track-duration {
            color: var(--text-muted);
        }
        .quote {
            font-size: 1.2rem;
            font-style: italic;
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-accent);
            opacity: 0.5;
            position: absolute;
        }
        .quote::before {
            top: 0;
            left: 10px;
        }
        .quote::after {
            bottom: -20px;
            right: 10px;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-wrapper img {
            border-radius: 8px;
            border: 3px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .internal-link {
            color: #4d9fff;
            font-weight: 600;
        }
        .internal-link:hover {
            text-decoration: underline;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: var(--primary-accent);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            background-color: rgba(0,0,0,0.5);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-accent), #ffaa00);
            color: var(--primary-dark);
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ffdd44, #ffcc00);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin: 1rem 0;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--primary-accent);
        }
        .fun-facts ul {
            list-style: none;
            padding-left: 0;
        }
        .fun-facts li {
            padding: 0.7rem 0;
            border-bottom: 1px dotted var(--border-color);
            display: flex;
            align-items: flex-start;
        }
        .fun-facts li:before {
            content: '🎵';
            margin-right: 0.8rem;
        }
        .footer-links-section {
            background-color: #111122;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            border-left: 3px solid var(--secondary-accent);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            border-left-color: var(--primary-accent);
            transform: translateX(5px);
        }
        .site-footer {
            background-color: #000011;
            padding: 2rem 0;
            text-align: center;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-muted);
        }
        .social-links a:hover {
            color: var(--primary-accent);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            article, .sidebar-widget {
                padding: 1.5rem;
            }
            .main-content {
                gap: 2rem;
            }
        }
