* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #c00a0a;
            --secondary-color: #1a1a1a;
            --accent-color: #f0b50c;
            --text-light: #f5f5f5;
            --text-dark: #222;
            --bg-light: #f8f8f8;
            --bg-dark: #0f0f0f;
            --card-bg: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .top-bar {
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 0.5rem 2rem;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .utility-nav a {
            color: #aaa;
            margin-left: 1rem;
            text-decoration: none;
            transition: var(--transition);
        }
        .utility-nav a:hover {
            color: var(--accent-color);
        }
        header {
            background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.98)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 1.5rem 2rem;
            border-bottom: 5px solid var(--primary-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 3px 3px 0 #000;
            transition: var(--transition);
        }
        .logo a:hover {
            color: var(--accent-color);
            text-shadow: 3px 3px 0 var(--primary-color);
        }
        .logo span {
            color: var(--accent-color);
            font-size: 1.2rem;
            vertical-align: super;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            padding: 0.3rem;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.7rem 1rem;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            cursor: pointer;
            border-radius: 30px;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a00808;
        }
        .main-nav-container {
            background-color: var(--bg-dark);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        }
        .main-nav {
            display: flex;
            justify-content: center;
            list-style: none;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            padding: 1.2rem 1.5rem;
            display: block;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-color);
            background-color: rgba(192, 10, 10, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #eaeaea;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        main {
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 2.5rem;
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .article-header h1 {
            color: var(--secondary-color);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            width: 100%;
            margin: 2.5rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background: #f9f9f9;
            font-size: 0.9rem;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ddd;
        }
        .article-content h3 {
            color: var(--secondary-color);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .key-fact-box {
            background: linear-gradient(135deg, #fff5f5 0%, #f0f8ff 100%);
            border-left: 5px solid var(--primary-color);
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .key-fact-box h3 {
            color: var(--primary-color);
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .tracklist {
            background: var(--bg-dark);
            color: var(--text-light);
            border-radius: 8px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .tracklist ol {
            padding-left: 1.5rem;
            column-count: 2;
            column-gap: 3rem;
        }
        .tracklist li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
            padding: 0.5rem;
            border-bottom: 1px dotted #444;
        }
        .tracklist li:hover {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary-color);
            text-align: center;
            padding: 2.5rem;
            border-top: 2px solid var(--accent-color);
            border-bottom: 2px solid var(--accent-color);
            margin: 3rem 0;
            position: relative;
        }
        .quote::before,
        .quote::after {
            content: '"';
            font-size: 4rem;
            color: rgba(192, 10, 10, 0.2);
            position: absolute;
        }
        .quote::before {
            top: 0.5rem;
            left: 1rem;
        }
        .quote::after {
            bottom: 0.5rem;
            right: 1rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-color);
            transform: scale(1.1);
        }
        .rating-widget input,
        .rating-widget textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
        }
        .rating-widget button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background: #a00808;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--secondary-color);
            display: flex;
            justify-content: space-between;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #777;
        }
        .footer-links {
            background-color: var(--secondary-color);
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            line-height: 1.6;
            display: block;
            font-size: 0.95rem;
        }
        .web-link a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 2.5rem 2rem 1.5rem;
            text-align: center;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-nav a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-nav a:hover {
            color: var(--accent-color);
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
        }
        @media (max-width: 1100px) {
            .container {
                grid-template-columns: 1fr;
            }
            .links-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .top-bar, .search-box {
                display: none;
            }
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            .logo a {
                font-size: 2.2rem;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--bg-dark);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 2rem;
                top: 1rem;
            }
            .breadcrumb {
                padding: 1rem;
                font-size: 0.8rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .tracklist ol {
                column-count: 1;
            }
            .links-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-nav {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .container, header, .breadcrumb, .footer-links, footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            main {
                padding: 1.5rem;
            }
            .article-header h1 {
                font-size: 1.7rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .article-content h3 {
                font-size: 1.3rem;
            }
            .links-container {
                grid-template-columns: 1fr;
            }
            .quote {
                padding: 1.5rem;
                font-size: 1.1rem;
            }
        }
