        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a16;
            --secondary-dark: #1a1a2e;
            --accent-yellow: #f5c518;
            --accent-gray: #8c8c9b;
            --text-light: #e0e0e9;
            --danger-red: #c62828;
            --panel-bg: rgba(26, 26, 46, 0.85);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(10, 10, 22, 0.9) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(26, 26, 46, 0.7) 0%, transparent 20%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent-yellow);
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10, 10, 22, 0.95) 0%, transparent 100%);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--secondary-dark);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: 3px;
            color: var(--accent-yellow);
            text-transform: uppercase;
            text-shadow: 0 0 15px rgba(245, 197, 24, 0.5);
            transition: var(--transition);
        }
        .my-logo:hover {
            text-shadow: 0 0 25px var(--accent-yellow), 0 0 40px var(--accent-yellow);
        }
        .my-logo span {
            color: var(--text-light);
            font-size: 0.7em;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-yellow);
            margin: 4px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--accent-yellow);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .main-nav a:hover::after {
            transform: scaleX(1);
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: var(--secondary-dark);
            font-size: 0.9rem;
            border-bottom: 1px solid #33334d;
        }
        .breadcrumb a {
            opacity: 0.9;
        }
        .breadcrumb a:hover {
            opacity: 1;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: var(--accent-gray);
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        .article-content {
            background: var(--panel-bg);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid #33334d;
        }
        .article-content h1 {
            font-size: 3.2rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #fff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #44445d;
        }
        .article-content h3 {
            font-size: 1.7rem;
            color: #e0e0e9;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: var(--accent-gray);
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content em {
            color: var(--accent-yellow);
            font-style: italic;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a16 100%);
            border-left: 5px solid var(--accent-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px solid #44445d;
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--accent-gray);
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #44445d;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--panel-bg);
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid #33334d;
        }
        .widget h3 {
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .widget h3 i {
            font-size: 1.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            background: #0a0a16;
            border: 1px solid #44445d;
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--accent-yellow);
            color: var(--primary-dark);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ffd95a;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--accent-gray);
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-yellow);
            transform: scale(1.1);
        }
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: transparent;
            border: 1px solid var(--accent-yellow);
            color: var(--accent-yellow);
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: var(--accent-yellow);
            color: var(--primary-dark);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background: #0a0a16;
            border: 1px solid #44445d;
            border-radius: 8px;
            color: var(--text-light);
            resize: vertical;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .comment-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background: #0a0a16;
            border: 1px solid #44445d;
            border-radius: 8px;
            color: var(--text-light);
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: var(--secondary-dark);
            border: 1px solid #44445d;
            color: var(--text-light);
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent-yellow);
            color: var(--primary-dark);
        }
        .site-footer {
            background-color: var(--secondary-dark);
            margin-top: 4rem;
            padding: 3rem 2rem 2rem;
            border-top: 1px solid #33334d;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-links h4 {
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background: rgba(10, 10, 22, 0.5);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border: 1px solid #33334d;
            transition: var(--transition);
        }
        friend-link:hover {
            border-color: var(--accent-yellow);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #44445d;
            color: var(--accent-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .article-content h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .hamburger {
                display: flex;
                position: absolute;
                top: 2rem;
                right: 2rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .article-content {
                padding: 1.8rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
