:root {
            --primary-dark: #0a0a12;
            --primary-red: #c00a1e;
            --primary-gold: #d4af37;
            --accent-blue: #1e90ff;
            --accent-purple: #8a2be2;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0c0;
            --bg-card: #161622;
            --border-color: #333344;
            --shadow-glow: 0 0 15px rgba(192, 10, 30, 0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(30, 144, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(192, 10, 30, 0.05) 0%, transparent 20%);
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #111122, var(--primary-dark));
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-secondary);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        .main-nav a:hover {
            color: var(--text-primary);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-blue);
        }
        .search-module {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            background: #222233;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, var(--primary-red), #a00816);
            border: none;
            border-radius: 0 5px 5px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #d00c22, var(--primary-red));
        }
        .article-header {
            text-align: center;
            padding: 3rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--text-primary), var(--accent-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .article-content {
            padding: 3rem 0;
        }
        .content-section {
            margin-bottom: 3rem;
            background: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(192, 10, 30, 0.1);
        }
        h2 {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--primary-red);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-blue);
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--accent-purple);
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(192, 10, 30, 0.1);
            border-left: 4px solid var(--primary-red);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .track-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .track-card {
            background: #1a1a2a;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .track-card:hover {
            border-color: var(--primary-red);
            box-shadow: var(--shadow-glow);
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            border-radius: 12px;
            border: 2px solid var(--border-color);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .interactive-module {
            background: linear-gradient(135deg, #1a1a2a, #222233);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--accent-blue);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            background: #222233;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--primary-gold);
            text-shadow: 0 0 10px gold;
        }
        .submit-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            border: none;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.3s ease;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .site-footer {
            background: #0c0c18;
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                border-top: 1px solid var(--border-color);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-header h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .track-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.9rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 5px;
                border-right: 1px solid var(--border-color);
                margin-bottom: 0.5rem;
            }
            .search-btn {
                border-radius: 5px;
            }
        }
