        * { 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: #f0e6d2;
            background: linear-gradient(135deg, #0c0c17 0%, #1a1a2e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #ff9933; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); text-align: center; margin-top: 1.5rem; border-bottom: 3px solid #ff6600; padding-bottom: 1rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 2.5rem; border-left: 5px solid #cc5500; padding-left: 15px; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2rem; color: #ffaa66; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #ffcc99; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #80ccff; text-shadow: 0 0 8px rgba(77, 166, 255, 0.5); }
        strong { color: #ffcc00; font-weight: 700; }
        em { color: #99ff99; font-style: italic; }
        blockquote {
            border-left: 4px solid #ff9933;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(255, 153, 51, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(20, 20, 35, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #332211;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #ff6600, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.03); }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #f0e6d2;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 102, 0, 0.2);
            color: #ff9933;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ff9933;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(20, 20, 35, 0.98);
            padding: 1rem;
            border-top: 1px solid #332211;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            color: #f0e6d2;
            border-bottom: 1px solid #333344;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ffaa66; }
        .search-form {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(40, 40, 60, 0.7);
            border-radius: 10px;
            border: 1px solid #555577;
        }
        .search-form h3 { margin-top: 0; }
        .search-box {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #666688;
            border-radius: 8px;
            background: #222233;
            color: #f0e6d2;
            font-size: 1rem;
        }
        .search-box button {
            padding: 12px 25px;
            background: linear-gradient(to bottom, #ff6600, #cc5500);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to bottom, #ff8833, #ff6600);
            box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(30, 30, 45, 0.8);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #555;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 3px solid #ff9933;
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #bbbbbb;
        }
        .sidebar {
            background: rgba(30, 30, 45, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            border-bottom: 2px solid #ff6600;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .link-list li:before {
            content: '▶';
            color: #ff9933;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(40, 40, 60, 0.5);
            border-radius: 8px;
            overflow: hidden;
        }
        .stats-table th, .stats-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #555577;
        }
        .stats-table th {
            background: rgba(255, 102, 0, 0.2);
            color: #ffcc00;
            font-weight: 700;
        }
        .stats-table tr:hover {
            background: rgba(255, 153, 51, 0.1);
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(40, 40, 60, 0.7);
            border-radius: 10px;
            border: 1px solid #666688;
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ffcc99;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #666688;
            border-radius: 8px;
            background: #222233;
            color: #f0e6d2;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #ff9933;
        }
        .submit-btn {
            padding: 12px 30px;
            background: linear-gradient(to bottom, #3399ff, #0066cc);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to bottom, #4da6ff, #0077e6);
            box-shadow: 0 0 15px rgba(51, 153, 255, 0.5);
        }
        .site-footer {
            background: rgba(10, 10, 20, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #ff6600;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo { font-size: 2rem; }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 102, 0, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333344;
            color: #888;
            font-size: 0.9rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(204, 85, 0, 0.1));
            border: 1px solid #ff6600;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .tag {
            display: inline-block;
            background: rgba(255, 153, 51, 0.2);
            color: #ffaa66;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .last-updated {
            background: rgba(0, 100, 0, 0.2);
            color: #99ff99;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: inline-block;
            margin: 1rem 0;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            .article-content { padding: 1.5rem; }
            .main-content { gap: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
