        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff6b00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff6b00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 107, 0, 0.7);
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ff9a00;
            text-shadow: 0 0 25px rgba(255, 154, 0, 0.9);
        }
        .search-box {
            flex-grow: 1;
            max-width: 500px;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 1px solid #444;
            border-radius: 30px 0 0 30px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #ff8533; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s;
            position: relative;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #ff6b00;
            background: rgba(255, 107, 0, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: #ff6b00;
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .main-nav a:hover::after { transform: scaleX(1); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff6b00;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                padding: 1rem;
                display: none;
                border-top: 1px solid #333;
            }
            .main-nav.active ul { display: flex; }
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ff9a00;
            text-decoration: none;
        }
        .breadcrumb span { color: #aaa; }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(25, 25, 40, 0.8);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 3.2rem;
            color: #ff6b00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 2px 2px 4px #000;
        }
        .meta {
            text-align: center;
            color: #aaa;
            margin-bottom: 3rem;
            font-size: 0.95rem;
            border-bottom: 1px dashed #444;
            padding-bottom: 1.5rem;
        }
        h2 {
            color: #ff9a00;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b00;
            font-size: 2.2rem;
        }
        h3 {
            color: #ffcc80;
            margin: 2.5rem 0 1rem;
            font-size: 1.8rem;
        }
        h4 {
            color: #ffd9b3;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #e0e0e0;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,0,0.15), transparent);
            border-left: 4px solid #ff6b00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            border: 2px solid #444;
        }
        .img-container img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .img-container:hover img { transform: scale(1.03); }
        .caption {
            font-style: italic;
            color: #aaa;
            padding: 0.8rem;
            background: rgba(0,0,0,0.5);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            background: rgba(255,107,0,0.1);
            color: #ff9a00;
            padding: 1rem;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid #ff6b00;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .link-list a:hover {
            background: rgba(255,107,0,0.25);
            transform: translateY(-3px);
        }
        .link-list i { font-size: 1.2rem; }
        aside {
            background: rgba(25, 25, 40, 0.8);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid #333;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #ff9a00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #555;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover, .stars i.active { color: #ffcc00; }
        .rating-widget input, .rating-widget textarea {
            padding: 0.8rem;
            background: #222;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .rating-widget button {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-widget button:hover { background: #ff8533; }
        .comments-section {
            margin-top: 4rem;
            border-top: 2px solid #444;
            padding-top: 2rem;
        }
        .comment-form {
            background: rgba(40, 40, 60, 0.6);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: #222;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
        }
        .comment-form button {
            background: #007acc;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #0099ff; }
        .comment {
            background: rgba(40, 40, 60, 0.6);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #ff6b00;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        footer {
            background: #0a0a14;
            border-top: 2px solid #ff6b00;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #ff9a00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #ffcc80;
            text-decoration: none;
            transition: color 0.3s;
        }
        friend-link a:hover { color: #ff6b00; }
        .copyright {
            text-align: center;
            color: #777;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .bold { font-weight: 900; color: #ffcc80; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
