        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #f8c555;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffdd80;
            text-shadow: 0 0 8px rgba(248, 197, 85, 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;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #f8c555;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f8c555;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(248, 197, 85, 0.7);
        }
        .logo span {
            color: #e03a3a;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(248, 197, 85, 0.1);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #f8c555;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(10, 10, 20, 0.98);
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            display: block;
            padding: 10px;
            border-left: 3px solid #f8c555;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(30, 30, 40, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f8c555;
        }
        main {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1, h2, h3, h4 {
            color: #f8c555;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 5px solid #e03a3a;
            padding-left: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
            border-bottom: 2px solid #444;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(248, 197, 85, 0.1);
            border-left: 4px solid #f8c555;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        aside {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.3rem;
            color: #e03a3a;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .search-box input {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #111;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(to right, #f8c555, #e03a3a);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-box button:hover {
            transform: translateY(-3px);
        }
        .rating-widget, .comment-widget {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars span:hover,
        .stars span.active {
            color: #f8c555;
        }
        .rating-widget input,
        .comment-widget textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #111;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
        }
        .rating-widget button,
        .comment-widget button {
            padding: 12px;
            background: #2a5fa8;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-widget button:hover,
        .comment-widget button:hover {
            background: #3a7bd5;
        }
        .footer-links {
            background: rgba(15, 15, 25, 0.9);
            padding: 40px 20px;
            margin-top: 50px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.5);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(248, 197, 85, 0.1);
            border-color: #f8c555;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            font-size: 1rem;
        }
        footer {
            background: #0a0a14;
            text-align: center;
            padding: 30px 20px;
            border-top: 2px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .social-icons {
            margin-bottom: 20px;
        }
        .social-icons a {
            display: inline-block;
            margin: 0 15px;
            font-size: 1.5rem;
            color: #aaa;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: #f8c555;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 20px;
            }
        }
