        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #cc0000;
            --secondary-color: #ffcc00;
            --dark-bg: #0a0a16;
            --light-bg: #1a1a2e;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0c0;
            --accent-blue: #00a8e8;
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100vw;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        section, article {
            margin-bottom: 3rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2a0042 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        .my-logo span {
            color: var(--primary-color);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-primary);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: rgba(204, 0, 0, 0.2);
            color: var(--secondary-color);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 26, 46, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-blue);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary-color);
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--light-bg);
                flex-direction: column;
                padding: 2rem;
                transition: left var(--transition-speed);
                z-index: 999;
                box-shadow: 5px 0 15px rgba(0,0,0,0.3);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
            }
        }
        .hero {
            background: linear-gradient(rgba(10,10,22,0.85), rgba(10,10,22,0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 1rem;
            text-align: center;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px #000;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .last-updated {
            font-style: italic;
            color: #aaa;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            border-left: 5px solid var(--accent-blue);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--accent-blue);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .content-block {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 204, 0, 0.3);
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: var(--secondary-color);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .sidebar-widget {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border-top: 3px solid var(--accent-blue);
        }
        .widget-title {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: var(--border-radius);
            border: 1px solid #444;
            background-color: rgba(255,255,255,0.1);
            color: var(--text-primary);
            font-size: 1rem;
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-blue);
        }
        button {
            background: linear-gradient(to right, var(--primary-color), #a30000);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover {
            background: linear-gradient(to right, #ff3333, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(204,0,0,0.3);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin: 1rem 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--secondary-color);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .site-footer {
            background-color: #05050c;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-color);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--accent-blue);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(0,168,232,0.1);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            border-left: 4px solid var(--accent-blue);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--accent-blue);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .bold-accent {
            color: var(--secondary-color);
            font-weight: 800;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .hidden { display: none; }
        .fade-in {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
