        * {
            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-color: #0a0a1a;
            background-image: linear-gradient(to bottom, #0a0a1a, #1a1a2e);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(0, 0, 30, 0.95);
            border-bottom: 2px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
        }
        .logo a {
            color: #ffd700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #ffd700;
        }
        .logo a:hover {
            color: #ffffff;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #c0c0ff;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background-color: #ffd700;
            color: #0a0a1a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: rgba(0, 0, 30, 0.98);
            padding: 20px;
            border-top: 1px solid #333;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #c0c0ff;
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid #222;
            transition: color 0.3s;
        }
        .nav-mobile a:hover {
            color: #ffd700;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #111125;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #ffd700;
        }
        .breadcrumb a {
            color: #8a8aff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: rgba(20, 20, 40, 0.9);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 30px 0 15px;
            border-bottom: 2px solid #333;
            padding-bottom: 5px;
        }
        h3 {
            font-size: 1.5rem;
            color: #69db7c;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
        }
        strong {
            color: #ffd700;
        }
        em {
            color: #69db7c;
        }
        a.content-link {
            color: #8a8aff;
            text-decoration: none;
            border-bottom: 1px dotted #8a8aff;
        }
        a.content-link:hover {
            color: #ffd700;
            border-bottom-style: solid;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid #333;
            display: block;
            margin: 25px auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .interactive-section {
            background-color: rgba(30, 30, 60, 0.8);
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .interactive-section h3 {
            color: #ffd700;
            margin-bottom: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #111;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #ffd700, #ffaa00);
            color: #0a0a1a;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: rgba(40, 40, 80, 0.8);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
        }
        .web-link a {
            color: #c0c0ff;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        footer {
            background-color: #050510;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #333;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 20px;
            }
            .interactive-section {
                padding: 20px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-20 { margin-bottom: 20px; }
        .mt-30 { margin-top: 30px; }
