        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0e17;
            color: #a7a9be;
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fffffe;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 100%);
            padding: 20px 0;
            border-bottom: 2px solid #ff8906;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fffffe;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #ff8906;
        }
        .my-logo span {
            color: #ff8906;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #a7a9be;
        }
        .breadcrumb a {
            color: #a7a9be;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #ff8906;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background-color: #1a1a2e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fffffe;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        .hero {
            background: radial-gradient(circle at top right, #1a1a2e, #0f0e17);
            padding: 60px 0;
            text-align: center;
            border-bottom: 1px solid #2e2e3e;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: #fffffe;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 0 15px rgba(255, 137, 6, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #a7a9be;
        }
        .update-time {
            font-size: 0.9rem;
            color: #ff8906;
            margin-top: 20px;
            font-style: italic;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content {
            background-color: #16161d;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        article h2 {
            color: #fffffe;
            font-size: 2.5rem;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff8906;
        }
        article h3 {
            color: #ff8906;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article h4 {
            color: #a7a9be;
            font-size: 1.4rem;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        article p {
            margin-bottom: 25px;
            text-align: justify;
            line-height: 1.8;
        }
        article strong {
            color: #fffffe;
            font-weight: 700;
        }
        article em {
            color: #ff8906;
            font-style: italic;
        }
        .highlight-box {
            background-color: #1a1a2e;
            border-left: 5px solid #ff8906;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container figcaption {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #888;
        }
        .sidebar {
            background-color: #16161d;
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .sidebar h3 {
            color: #fffffe;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 30px;
        }
        .search-box input, .comment-box textarea, .rating-box select, .comment-box input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #2e2e3e;
            background-color: #0f0e17;
            color: #a7a9be;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-box button, .comment-box button, .rating-box button {
            width: 100%;
            padding: 12px;
            background-color: #ff8906;
            color: #0f0e17;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover, .comment-box button:hover, .rating-box button:hover {
            background-color: #e67805;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ffd700;
            font-size: 1.5rem;
            cursor: pointer;
        }
        footer {
            background-color: #0a0a10;
            padding: 50px 0 20px;
            border-top: 2px solid #ff8906;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #fffffe;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background-color: #1a1a2e;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2e2e3e;
            color: #666;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a1a2e;
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article h2 {
                font-size: 2rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .content, .sidebar {
                padding: 20px;
            }
            .hero {
                padding: 40px 0;
            }
        }
        .nav-links a, .search-box button, .comment-box button, .rating-box button, friend-link {
            transition: all 0.3s ease;
        }
        .nav-links a:active, .search-box button:active, .comment-box button:active, .rating-box button:active {
            transform: scale(0.98);
        }
        .image-container img {
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
