        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #fff;
            transform: translateY(-2px);
        }
        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, 40, 0.95);
            border-bottom: 3px solid #ffcc00;
            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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        .logo:hover {
            text-shadow: 0 0 15px rgba(255, 204, 0, 1);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        nav a:hover {
            background: rgba(255, 204, 0, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #ffcc00;
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #e0e0ff;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 70, 0.6);
            padding: 2.5rem;
            border-radius: 15px;
            border-left: 5px solid #ffcc00;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h2, article h3 {
            color: #ffcc00;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 204, 0, 0.3);
        }
        article h2 {
            font-size: 2.2rem;
        }
        article h3 {
            font-size: 1.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .img-container img {
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            border: 3px solid #ffcc00;
        }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
        }
        aside {
            background: rgba(20, 20, 60, 0.7);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .search-box {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #444;
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: #111133;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            background: #ffcc00;
            color: #000;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffdd44;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #555;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 0.2rem;
            transition: color 0.3s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background: #111133;
            border: 2px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: #00aaff;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #0088cc;
        }
        .footer-links {
            background: rgba(10, 10, 40, 0.9);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        footer {
            background: #05051a;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #333366;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .social-icons a {
            color: #aaa;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffcc00;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            nav a {
                display: block;
                text-align: center;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            .content-grid {
                gap: 2rem;
            }
        }
