        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background-color: #0a0a14;
            background-image: radial-gradient(circle at 15% 50%, rgba(30, 30, 60, 0.7) 0%, transparent 55%), radial-gradient(circle at 85% 30%, rgba(20, 20, 50, 0.5) 0%, transparent 55%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif; color: #f0f0f0; margin-bottom: 1rem; font-weight: 400; letter-spacing: 0.5px; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #d4af37; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); border-bottom: 3px solid #1a5fb4; padding-bottom: 0.5rem; margin-top: 1rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #1a5fb4; padding-top: 1.5rem; border-top: 1px dashed #33334d; margin-top: 2rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #c64600; }
        h4 { font-size: 1.4rem; color: #d4af37; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #1a8cff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #d4af37; text-shadow: 0 0 8px rgba(212, 175, 55, 0.7); }
        strong { color: #f0f0f0; font-weight: 700; }
        em { color: #b3b3cc; font-style: italic; }
        ul, ol { padding-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        blockquote {
            border-left: 4px solid #1a5fb4;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #b3b3cc;
            background: rgba(20, 25, 40, 0.5);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(to bottom, #000014 0%, #0a0a1e 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #1a5fb4;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 0 #1a5fb4, 4px 4px 0 rgba(0, 0, 0, 0.8);
            transition: all 0.3s;
        }
        .my-logo:hover {
            text-shadow: 2px 2px 0 #c64600, 4px 4px 0 rgba(0, 0, 0, 0.8), 0 0 15px #d4af37;
            transform: translateY(-2px);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #b3b3cc;
            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: #d4af37;
            transition: width 0.3s;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(15, 15, 30, 0.8);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #8ab4f8; }
        .breadcrumb span { color: #b3b3cc; }
        .utility-box {
            background: linear-gradient(145deg, #15152a, #0f0f1f);
            border: 1px solid #33334d;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .utility-box h3 { margin-top: 0; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            background: rgba(30, 30, 50, 0.7);
            border: 1px solid #44446d;
            border-radius: 5px;
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1a8cff;
            box-shadow: 0 0 8px rgba(26, 140, 255, 0.5);
        }
        button, .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to right, #1a5fb4, #2d7ad6);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #c64600, #e55c00);
            box-shadow: 0 0 12px rgba(230, 92, 0, 0.6);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .star-rating .star { transition: color 0.2s; }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffcc00; }
        .main-content {
            background: rgba(15, 15, 30, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 5px 25px rgba(0, 0, 0, 0.7);
            border: 1px solid #252545;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid #33334d;
            color: #8ab4f8;
            font-size: 0.95rem;
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
            border: 3px solid #1a5fb4;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            padding: 0.8rem;
            background: rgba(20, 20, 40, 0.9);
            font-style: italic;
            color: #b3b3cc;
        }
        .internal-links-panel {
            background: rgba(26, 26, 46, 0.9);
            border-left: 5px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .internal-links-panel h4 { margin-top: 0; }
        .internal-links-panel ul { list-style: none; padding-left: 0; }
        .internal-links-panel li { padding: 0.5rem 0; border-bottom: 1px dashed #33334d; }
        .internal-links-panel li:last-child { border-bottom: none; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(15, 15, 30, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #252545;
        }
        .tracklist ol { list-style: decimal inside; }
        .tracklist li { padding: 0.5rem; border-bottom: 1px dashed #33334d; }
        .site-footer {
            background: linear-gradient(to top, #000014, #0a0a1e);
            border-top: 2px solid #1a5fb4;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        friend-link {
            display: block;
            background: rgba(20, 25, 40, 0.6);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        friend-link h3 { color: #d4af37; margin-top: 0; }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            padding-left: 0;
        }
        .friend-links a {
            background: rgba(40, 40, 70, 0.7);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: inline-block;
            border: 1px solid #44446d;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #33334d;
            color: #8ab4f8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            .main-nav.active { max-height: 300px; margin-top: 1rem; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { border-bottom: 1px solid #33334d; }
            .main-nav a { display: block; padding: 0.8rem 0; }
            .content-wrapper, .main-content { padding: 1.5rem; }
            .article-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        }
