        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100%;
        }
        a {
            color: #ff7a45;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff9a6c;
            text-shadow: 0 0 8px rgba(255, 122, 69, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            background: linear-gradient(90deg, rgba(255,122,69,0.15), transparent);
            border-left: 4px solid #ff7a45;
            padding: 1rem;
            border-radius: 0 8px 8px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff7a45, #e04e1a);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 122, 69, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(255, 122, 69, 0.5);
            background: linear-gradient(135deg, #ff8a55, #f05e2a);
        }
        .site-header {
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a333d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #ff7a45, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff7a45;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ff7a45;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a2229;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a333d;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a333d;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a0a0a0;
        }
        .breadcrumb a { color: #a0a0a0; }
        .breadcrumb a:hover { color: #ff7a45; }
        .main-content {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #2a333d;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #ff7a45, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        .meta i { margin-right: 0.5rem; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #ffcc00;
            border-bottom: 2px solid #2a333d;
            padding-bottom: 0.5rem;
        }
        .article-body h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #ff9a6c;
        }
        .article-body h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: #ffb347;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-body em {
            color: #a0d2ff;
            font-style: italic;
        }
        .featured-image {
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #a0a0a0;
            padding: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            background: #1a2229;
            border-radius: 12px;
            padding: 1.5rem;
            align-self: start;
            border: 1px solid #2a333d;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a333d;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            background: #0f1419;
            border: 1px solid #2a333d;
            border-radius: 6px 0 0 6px;
            color: white;
        }
        .search-form button {
            background: #ff7a45;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #2a333d;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .interactive-section {
            background: #1a2229;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #2a333d;
        }
        .interactive-section h2 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #ff9a6c;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            background: #0f1419;
            border: 1px solid #2a333d;
            border-radius: 6px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .site-footer {
            background: #0a0e12;
            border-top: 1px solid #2a333d;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: #1a2229;
            border-radius: 6px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        friend-link:hover {
            background: #222c36;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a333d;
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .article-header h1 { font-size: 2.2rem; }
            .article-body h2 { font-size: 1.8rem; }
            .article-body h3 { font-size: 1.5rem; }
            .meta { flex-direction: column; gap: 0.5rem; }
            .interactive-section { padding: 1.5rem; }
        }
