        * {
            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.7;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        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, #1a1f2e 0%, #0c0f15 100%);
            padding: 20px 0;
            border-bottom: 2px solid #2a3240;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #ff8e53;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #b0b7c3;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #2a3240;
            color: #fff;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #ff6b35;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #141a23;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8a9ba8;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        main {
            padding: 30px 0;
            background-color: #141a23;
            min-height: 100vh;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1a1f2e;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #ff6b35;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 5px solid #ff6b35;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3240;
        }
        h3 {
            font-size: 1.5rem;
            color: #8a9ba8;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.2rem;
            color: #b0b7c3;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        strong {
            color: #ffb74d;
            font-weight: bold;
        }
        em {
            color: #a5d6a7;
        }
        .highlight {
            background-color: #2a3240;
            padding: 15px;
            border-left: 4px solid #ff6b35;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        aside {
            background-color: #1a1f2e;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            color: #4dabf7;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #2a3240;
            border-radius: 6px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        button {
            padding: 12px 20px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        footer {
            background-color: #0c0f15;
            padding: 40px 0 20px;
            border-top: 2px solid #2a3240;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ff6b35;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3240;
            color: #8a9ba8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1f2e;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 20px;
            }
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            cursor: pointer;
            color: #555;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .update-time {
            color: #8a9ba8;
            font-style: italic;
            margin-bottom: 30px;
            display: block;
        }
