* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a2a3a;
            --primary-accent: #c99d66;
            --secondary-accent: #8b4513;
            --text-light: #f5f5f5;
            --text-gray: #cccccc;
            --bg-dark: #0f1721;
            --bg-card: #1e2a38;
            --border-color: #2d3e50;
            --success-color: #4CAF50;
            --warning-color: #ff9800;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-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;
        }
        a:hover {
            color: #e6b780;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-dark);
            border-bottom: 2px solid var(--secondary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--text-light);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 5px;
            position: relative;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-accent);
            transition: width 0.3s ease;
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            padding: 30px 0;
            min-height: 80vh;
        }
        .article-header {
            margin-bottom: 40px;
            border-left: 5px solid var(--primary-accent);
            padding-left: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-top: 10px;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        article h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--primary-accent);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 8px;
        }
        article h3 {
            font-size: 1.4rem;
            margin: 25px 0 12px;
            color: var(--text-light);
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary-accent);
            font-weight: 700;
        }
        article em {
            color: var(--text-gray);
        }
        .highlight-box {
            background-color: rgba(201, 157, 102, 0.1);
            border-left: 4px solid var(--primary-accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            border: 3px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        figcaption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .lyrics-section {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            font-family: 'Courier New', monospace;
            line-height: 1.8;
        }
        .emoji {
            font-size: 1.2rem;
            margin: 0 5px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-accent);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            margin-bottom: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 5px 0 0 5px;
            color: var(--text-light);
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: var(--primary-dark);
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #e6b780;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--border-color);
            margin: 10px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--warning-color);
        }
        .rating-widget input,
        .rating-widget select,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .rating-widget button,
        .comment-form button {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background-color: #a0522d;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-link {
            background-color: var(--bg-card);
            padding: 15px;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            background-color: var(--primary-dark);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            color: var(--text-light);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--primary-accent);
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
