        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: #121212;
            background-image: radial-gradient(circle at 20% 30%, #1a1a2e 0%, #121212 70%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #ff9900;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc66;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff9900;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: #ff9900;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .logo a:hover {
            color: #ffcc66;
            text-shadow: 3px 3px 6px rgba(255, 153, 0, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            background: rgba(255, 153, 0, 0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255, 153, 0, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9900;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(26, 26, 46, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #333;
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #333;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(40, 40, 60, 0.8);
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #ff9900;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            border-left: 5px solid #ff9900;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #ffcc66;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
        }
        .article h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: #ff9900;
            border-bottom: 2px solid #333;
            padding-bottom: 0.5rem;
        }
        .article h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ffcc66;
        }
        .article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .article strong {
            color: #ff9900;
            font-weight: 700;
        }
        .article em {
            font-style: italic;
            color: #ccccff;
        }
        .highlight {
            background: rgba(255, 153, 0, 0.15);
            border-left: 4px solid #ff9900;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 900px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            margin-top: 0.5rem;
            color: #aaa;
        }
        .sidebar {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 12px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
            border-top: 5px solid #ff9900;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #ffcc66;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #555;
            border-radius: 6px;
            background: #222;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: #ff9900;
            color: #121212;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #ffcc66;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            border: 2px solid #555;
            border-radius: 6px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            padding: 0.9rem;
            background: #3399ff;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #66b3ff;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars i {
            color: #ff9900;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .stars i:hover, .stars i.active {
            color: #ffcc66;
        }
        .footer-links {
            background: rgba(26, 26, 46, 0.9);
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 2px solid #333;
        }
        .links-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.6);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #3399ff;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(40, 40, 60, 0.9);
        }
        .web-link a {
            font-weight: 600;
            color: #ccccff;
            display: block;
        }
        .footer {
            background: #0a0a14;
            padding: 2rem;
            text-align: center;
            color: #aaa;
            border-top: 2px solid #ff9900;
        }
        .copyright {
            max-width: 1400px;
            margin: 0 auto;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.5rem 1rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-container {
                padding: 0 1rem;
            }
            .article {
                padding: 1.5rem;
            }
            .article h1 {
                font-size: 2.2rem;
            }
            .article h2 {
                font-size: 1.8rem;
            }
            .breadcrumb {
                padding: 1rem;
            }
            .footer-links {
                padding: 2rem 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article, .sidebar, .web-link {
            animation: fadeIn 0.8s ease-out;
        }
        .highlight {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .highlight:hover {
            transform: translateX(5px);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .quote {
            font-size: 1.2rem;
            color: #ccccff;
            border-left: 4px solid #3399ff;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
