        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff7b00;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffaa00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f25 0%, #0f1419 100%);
            border-bottom: 2px solid #ff7b00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff7b00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #ffaa00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff7b00;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #ff7b00;
            color: #0f1419;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff7b00;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content {
            background-color: #1a1f25;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        aside {
            background-color: #1a1f25;
            border-radius: 12px;
            padding: 20px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff7b00;
            margin-bottom: 20px;
            border-left: 5px solid #ff7b00;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #ffaa00;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffcc80;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #e0e0e0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #2a2f35;
            padding: 15px;
            border-left: 4px solid #ff7b00;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #252a30, #1a1f25);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255,123,0,0.2);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff7b00;
            margin-bottom: 10px;
        }
        .featured-img {
            width: 100%;
            margin: 25px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #ff7b00;
        }
        .featured-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-img img:hover {
            transform: scale(1.03);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .link-list a {
            background-color: #252a30;
            padding: 10px 15px;
            border-radius: 6px;
            display: inline-block;
            border: 1px solid #444;
        }
        .link-list a:hover {
            background-color: #ff7b00;
            color: #0f1419;
        }
        .update-time {
            font-size: 0.9rem;
            color: #888;
            text-align: right;
            margin-top: 40px;
            padding-top: 10px;
            border-top: 1px dashed #444;
        }
        .search-box {
            margin-bottom: 25px;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #444;
            background-color: #252a30;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            background-color: #ff7b00;
            color: #0f1419;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-box button:hover {
            background-color: #ffaa00;
        }
        .rating-box, .comment-box {
            background-color: #252a30;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        .rating-box h3, .comment-box h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #ffcc00;
        }
        .rating-box form, .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-box input, .comment-box input, .comment-box textarea {
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #444;
            background-color: #1a1f25;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .comment-box textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-box button, .comment-box button {
            padding: 12px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .rating-box button:hover, .comment-box button:hover {
            background-color: #0056b3;
        }
        footer {
            background-color: #1a1f25;
            border-top: 2px solid #ff7b00;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffaa00;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #e0e0e0;
            padding: 8px;
            background-color: #252a30;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: #ff7b00;
            color: #0f1419;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 15px;
                background-color: #1a1f25;
                padding: 20px;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .featured-img img {
                height: 300px;
            }
        }
        @media (max-width: 480px) {
            .content, aside {
                padding: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
