        * { 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: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff6b00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            background: linear-gradient(to right, #ff6b00, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: transform 0.3s;
        }
        .logo a:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(255, 107, 0, 0.2);
            border-left: 3px solid #ff6b00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff6b00;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ffb74d;
            text-decoration: none;
        }
        .breadcrumb span { color: #ccc; }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(255,107,0,0.1) 0%, transparent 70%);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            color: #ffd700;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .highlight {
            background: rgba(255,107,0,0.15);
            padding: 5px 15px;
            border-radius: 8px;
            border-left: 4px solid #ff6b00;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        @media (max-width: 900px) {
            .content-area { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(30, 30, 40, 0.8);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-header { margin-bottom: 30px; }
        .meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        h1 { font-size: 2.8rem; color: #fff; margin-bottom: 25px; }
        h2 {
            font-size: 2.2rem;
            color: #ffb74d;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.7rem;
            color: #4fc3f7;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #81c784;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong { color: #ffcc80; }
        em { color: #ce93d8; }
        a.content-link {
            color: #4fc3f7;
            text-decoration: underline;
            transition: color 0.3s;
        }
        a.content-link:hover {
            color: #ff6b00;
            text-decoration: none;
        }
        .lead {
            font-size: 1.3rem;
            color: #fff;
            line-height: 1.9;
            background: rgba(0, 40, 80, 0.2);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        blockquote {
            border-left: 5px solid #ff6b00;
            padding-left: 20px;
            margin: 25px 0;
            color: #b3e5fc;
            font-style: italic;
            background: rgba(255,107,0,0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            border: 3px solid #444;
            transition: transform 0.5s, box-shadow 0.5s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .article-img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(255,107,0,0.3);
        }
        aside {
            background: rgba(25, 25, 35, 0.9);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            color: #ff6b00;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid #555;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b00;
            box-shadow: 0 0 0 2px rgba(255,107,0,0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #ff6b00, #ff8f00);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ff8f00, #ffb300);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255,107,0,0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            margin: 10px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .link-list, .friend-links {
            list-style: none;
            padding-left: 0;
        }
        .link-list li, .friend-links li {
            margin-bottom: 12px;
            padding: 12px;
            background: rgba(255,255,255,0.03);
            border-radius: 6px;
            transition: background 0.3s;
        }
        .link-list li:hover, .friend-links li:hover {
            background: rgba(255,107,0,0.1);
        }
        .link-list a, .friend-links a {
            color: #4fc3f7;
            text-decoration: none;
            display: block;
        }
        .link-list a:hover, .friend-links a:hover {
            color: #ff6b00;
            text-decoration: underline;
        }
        footer {
            background: rgba(5, 5, 10, 0.95);
            border-top: 2px solid #333;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            color: #777;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            font-weight: bold;
            color: #81c784;
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10,10,15,0.98);
                padding: 20px;
                display: none;
                border-top: 1px solid #333;
            }
            .main-nav.active ul { display: flex; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .content-area { gap: 25px; }
            article { padding: 25px; }
            aside { position: static; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
