        * {
            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: #e0e0e0;
            background-color: #0a0a12;
            background-image: radial-gradient(circle at 15% 50%, rgba(10, 30, 60, 0.7) 0%, transparent 55%);
            min-height: 100vh;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #80ccff;
            text-shadow: 0 0 8px rgba(77, 166, 255, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(5, 10, 25, 0.95);
            border-bottom: 2px solid #1a3a5f;
            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 a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .logo a:hover {
            color: #ffdd44;
            text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background-color: rgba(26, 58, 95, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(15, 25, 45, 0.8);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .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: #4da6ff;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(to bottom, rgba(10, 20, 40, 0.8), rgba(5, 10, 25, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-radius: 10px;
            margin-bottom: 3rem;
            border: 1px solid #2a4a7a;
            box-shadow: 0 10px 30px rgba(0, 10, 30, 0.7);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccd9ff;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(15, 25, 45, 0.7);
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid #2a4a7a;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        .article-content h2, .article-content h3 {
            color: #4da6ff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(77, 166, 255, 0.3);
        }
        .article-content h2 {
            font-size: 2.2rem;
        }
        .article-content h3 {
            font-size: 1.7rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content em {
            color: #ccd9ff;
        }
        .highlight-box {
            background-color: rgba(26, 58, 95, 0.5);
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
            border: 2px solid #3a5a8a;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: rgba(15, 25, 45, 0.7);
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid #2a4a7a;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-widget h3 i {
            color: #4da6ff;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background-color: rgba(10, 20, 40, 0.8);
            border: 1px solid #3a5a8a;
            border-radius: 5px;
            color: #e0e0e0;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 8px rgba(77, 166, 255, 0.5);
        }
        button {
            padding: 0.9rem 1.5rem;
            background: linear-gradient(to bottom, #2a5ca7, #1a3a5f);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to bottom, #3a6cb7, #2a4a7a);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 30, 60, 0.5);
        }
        button:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star {
            transition: color 0.2s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
        }
        .footer-links-section {
            background-color: rgba(10, 20, 40, 0.9);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid #1a3a5f;
            border-bottom: 2px solid #1a3a5f;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(20, 35, 65, 0.6);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #4da6ff;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(30, 50, 90, 0.8);
        }
        footer {
            background-color: rgba(5, 10, 25, 0.95);
            padding: 2.5rem 0;
            text-align: center;
            border-top: 1px solid #1a3a5f;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .copyright a {
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: rgba(5, 10, 25, 0.98);
                width: 250px;
                height: calc(100vh - 80px);
                padding: 2rem;
                border-left: 2px solid #1a3a5f;
                transition: right 0.4s ease;
                gap: 1rem;
            }
            .nav-links.active {
                right: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
