        * { 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: #e8e8e8;
            background: linear-gradient(135deg, #0f1923 0%, #1a2b3d 50%, #0f1923 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif; color: #ff9c00; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; text-shadow: 0 0 15px rgba(255, 156, 0, 0.5); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); border-left: 5px solid #00b4ff; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #00b4ff; margin-top: 2rem; }
        h4 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: #a3d9ff; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #00b4ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ff9c00; text-shadow: 0 0 8px rgba(255, 156, 0, 0.7); }
        strong { color: #ffcc80; }
        em { color: #a3d9ff; }
        .highlight { background: linear-gradient(90deg, rgba(255,156,0,0.2) 0%, transparent 100%); padding: 2px 8px; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            border-bottom: 2px solid #ff9c00;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff9c00, #ff3c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(255, 60, 0, 0.3);
            text-decoration: none;
        }
        .my-logo:hover {
            background: linear-gradient(45deg, #00b4ff, #0095ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #e8e8e8;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff9c00;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff9c00;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: rgba(15, 25, 35, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.4s ease;
                box-shadow: 5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active { left: 0; }
            .main-nav ul { flex-direction: column; gap: 15px; }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #a3a3a3;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            margin: 20px 0;
        }
        .breadcrumb a { color: #a3d9ff; }
        .main-content {
            background: rgba(26, 43, 61, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border: 1px solid rgba(255, 156, 0, 0.2);
        }
        .article-intro {
            font-size: 1.3rem;
            text-align: center;
            margin: 2rem 0 3rem;
            color: #ffcc80;
            padding: 20px;
            background: rgba(0, 180, 255, 0.05);
            border-radius: 10px;
            border-left: 5px solid #ff9c00;
        }
        .sidebar {
            background: rgba(15, 25, 35, 0.8);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            border: 1px solid rgba(0, 180, 255, 0.2);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar h3 { font-size: 1.5rem; margin-top: 0; }
        .search-form { display: flex; margin-bottom: 25px; }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #00b4ff;
            background: rgba(0,0,0,0.3);
            color: white;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(45deg, #00b4ff, #0095ff);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover { background: linear-gradient(45deg, #ff9c00, #ff7b00); }
        .comment-form, .rating-form {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
        }
        .form-group { margin-bottom: 15px; }
        label { display: block; margin-bottom: 5px; color: #a3d9ff; }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            background: rgba(0,0,0,0.4);
            border: 1px solid #555;
            border-radius: 6px;
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00b4ff;
            box-shadow: 0 0 8px rgba(0, 180, 255, 0.5);
        }
        .submit-button {
            background: linear-gradient(45deg, #ff9c00, #ff7b00);
            color: #0f1923;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: block;
            width: 100%;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 156, 0, 0.4);
        }
        .star-rating { display: flex; justify-content: center; gap: 10px; margin: 15px 0; }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ff9c00; }
        .featured-image {
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
            border: 3px solid #00b4ff;
            max-width: 800px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #a3a3a3;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .internal-links {
            background: rgba(0, 180, 255, 0.08);
            border-left: 4px solid #ff9c00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .internal-links h4 { margin-top: 0; }
        .internal-links ul { list-style: none; }
        .internal-links li { margin-bottom: 10px; padding-left: 20px; position: relative; }
        .internal-links li::before {
            content: '➤';
            color: #ff9c00;
            position: absolute;
            left: 0;
        }
        .site-footer {
            background: rgba(10, 18, 28, 0.95);
            margin-top: 60px;
            padding: 40px 0 20px;
            border-top: 2px solid #ff9c00;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-widget h3 { font-size: 1.5rem; margin-bottom: 20px; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.03);
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            transition: background 0.3s, transform 0.2s;
        }
        friend-link:hover {
            background: rgba(0, 180, 255, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #a3a3a3;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #555;
        }
        .last-updated i { color: #ff9c00; margin-right: 5px; }
        .text-center { text-align: center; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff9c00, transparent);
            margin: 2.5rem 0;
        }
