* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4d9fff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: scale(1.05);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #001233 0%, #001845 100%);
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900;
        }
        .logo a {
            color: inherit;
        }
        .search-form {
            display: flex;
            flex-grow: 0.5;
            max-width: 500px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid #4d9fff;
            border-radius: 30px 0 0 30px;
            background-color: #001a4d;
            color: #e0e0ff;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: #ffcc00;
            box-shadow: 0 0 10px #ffcc00;
        }
        .search-form button {
            padding: 12px 25px;
            border: 2px solid #4d9fff;
            border-left: none;
            border-radius: 0 30px 30px 0;
            background-color: #003366;
            color: #e0e0ff;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background-color: #ffcc00;
            color: #001233;
            border-color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav {
            background-color: #001845;
            padding: 15px 0;
        }
        .nav-menu {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            color: #e0e0ff;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            display: block;
        }
        .nav-menu li a:hover {
            background-color: #4d9fff;
            color: #001233;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #a0a0ff;
        }
        .breadcrumb a {
            color: #4d9fff;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: radial-gradient(circle at 20% 50%, #001233 0%, #0a0a1a 70%);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-shadow: 0 0 15px #ff9900;
            line-height: 1.2;
        }
        .article-meta {
            font-size: 1rem;
            color: #a0a0ff;
            margin-bottom: 30px;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body {
            background-color: rgba(0, 20, 60, 0.7);
            padding: 40px;
            border-radius: 20px;
            border-left: 5px solid #ffcc00;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            color: #4d9fff;
            margin: 40px 0 20px;
            border-bottom: 2px solid #4d9fff;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-left: 4px solid #ffcc00;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #a0a0ff;
            font-size: 1rem;
        }
        .link-list {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(77, 159, 255, 0.1);
            border-radius: 10px;
        }
        .link-list ul {
            list-style: none;
            padding-left: 20px;
        }
        .link-list li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .sidebar {
            background-color: rgba(0, 24, 69, 0.8);
            padding: 30px;
            border-radius: 20px;
            border-top: 5px solid #ff9900;
        }
        .sidebar h3 {
            color: #ff9900;
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #e0e0ff;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #4d9fff;
            border-radius: 8px;
            background-color: #001a4d;
            color: #e0e0ff;
            font-size: 1rem;
            outline: none;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ffcc00;
            box-shadow: 0 0 10px #ffcc00;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffcc00;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(90deg, #4d9fff, #0033cc);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            color: #001233;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.4);
        }
        footer {
            background-color: #000814;
            padding: 50px 0 20px;
            border-top: 3px solid #ffcc00;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            flex: 1 1 200px;
            background-color: #001233;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #4d9fff;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-10px);
            border-color: #ffcc00;
        }
        .web-link a {
            color: #e0e0ff;
            font-size: 1.1rem;
            display: block;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #a0a0ff;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                max-width: 100%;
                margin-top: 20px;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                gap: 10px;
                background-color: #001845;
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .article-body {
                padding: 25px;
            }
            .footer-links {
                flex-direction: column;
            }
            .web-link {
                flex: 1 1 100%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-body, .sidebar, .web-link {
            animation: fadeIn 0.8s ease-out;
        }
