        * { 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.8;
            color: #f0e6d2;
            background: linear-gradient(135deg, #0a0e17 0%, #1a2a3a 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Cinzel', serif; color: #ffd100; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: 3.5rem; text-align: center; text-shadow: 0 0 10px rgba(255, 209, 0, 0.5); }
        h2 { font-size: 2.5rem; border-left: 5px solid #00b4ff; padding-left: 15px; margin-top: 3rem; }
        h3 { font-size: 2rem; color: #00e1ff; margin-top: 2rem; }
        h4 { font-size: 1.5rem; color: #a3d9ff; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.2rem; }
        a { color: #00b4ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffd100; text-shadow: 0 0 8px rgba(255, 209, 0, 0.7); }
        .highlight { background-color: rgba(0, 180, 255, 0.1); padding: 2px 5px; border-radius: 3px; }
        strong { color: #ffd100; }
        em { color: #a3d9ff; }
        .last-updated { font-style: italic; color: #aaa; text-align: right; margin-top: 2rem; }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        header {
            background: rgba(10, 14, 23, 0.95);
            border-bottom: 2px solid #ffd100;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd100;
            text-decoration: none;
            text-shadow: 2px 2px 4px #000;
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; color: #00b4ff; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #f0e6d2;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(0, 180, 255, 0.2);
            color: #ffd100;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffd100;
            background: none;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 23, 0.98);
                padding: 20px;
                display: none;
                border-top: 1px solid #333;
            }
            nav.active ul { display: flex; }
            .hamburger { display: block; }
            .header-container { flex-wrap: wrap; }
        }
        .breadcrumb {
            padding: 15px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffd100; }
        main { padding: 30px 0; }
        .article-content { 
            background: rgba(30, 40, 60, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #334455;
        }
        .sidebar {
            background: rgba(20, 30, 48, 0.8);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #445566;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 30px; }
        .widget h3 { font-size: 1.5rem; margin-top: 0; border-bottom: 2px solid #00b4ff; padding-bottom: 10px; }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            background: #1a2535;
            border: 1px solid #445566;
            border-radius: 5px 0 0 5px;
            color: #f0e6d2;
        }
        .search-form button {
            background: #00b4ff;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #ffd100; }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star:hover,
        .star.active { color: #ffd100; transform: scale(1.1); }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #00b4ff, #0099cc);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 10px;
            transition: transform 0.3s;
        }
        .rating-form button:hover { transform: translateY(-3px); }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background: #1a2535;
            border: 1px solid #445566;
            border-radius: 5px;
            color: #f0e6d2;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: #1a2535;
            border: 1px solid #445566;
            border-radius: 5px;
            color: #f0e6d2;
        }
        .comment-form button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, #00cc66, #00994d);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .comment-form button:hover { transform: translateY(-3px); }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 12px; padding-left: 20px; position: relative; }
        .link-list li:before {
            content: '➔';
            position: absolute;
            left: 0;
            color: #00b4ff;
        }
        .article-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #00b4ff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            max-width: 800px;
        }
        .article-img figcaption {
            text-align: center;
            padding: 10px;
            background: rgba(0, 180, 255, 0.1);
            color: #a3d9ff;
            font-style: italic;
        }
        footer {
            background: rgba(10, 14, 23, 0.95);
            border-top: 2px solid #ffd100;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: #ffd100;
            margin-bottom: 15px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 209, 0, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid #ffd100;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 209, 0, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334455;
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
