        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a2a;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00ffff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff00ff;
            text-shadow: 0 0 8px #ff00ff;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a4a, #000033);
            padding: 20px 0;
            border-bottom: 3px solid #00ffff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 0 0 15px #ffcc00;
        }
        .logo a {
            color: inherit;
        }
        .search-box {
            display: flex;
            background: #222255;
            border-radius: 30px;
            padding: 5px;
            border: 2px solid #00ffff;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            padding: 10px 20px;
            width: 250px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: #00ffff;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            color: #000033;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff00ff;
        }
        nav {
            margin-top: 20px;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
            background: #151540;
            border-radius: 10px;
            padding: 15px;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .nav-links li a {
            font-size: 1.1rem;
            padding: 10px 20px;
            border-radius: 5px;
            display: block;
        }
        .nav-links li a:hover {
            background: #00ffff22;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #00ffff;
            background: none;
            border: none;
            margin: 10px auto;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            margin: 20px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00ffff;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #151540;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
        }
        h1 {
            color: #ffcc00;
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 10px #ffcc00;
        }
        h2 {
            color: #00ffff;
            font-size: 2rem;
            margin: 30px 0 15px;
            border-left: 5px solid #ff00ff;
            padding-left: 15px;
        }
        h3 {
            color: #ff99cc;
            font-size: 1.5rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #00ffff22;
            padding: 15px;
            border-left: 4px solid #ff00ff;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border: 3px solid #00ffff;
            box-shadow: 0 0 20px #00ffff;
        }
        .internal-link {
            display: inline-block;
            margin: 5px 10px;
            font-weight: bold;
            color: #ffcc00;
        }
        aside {
            background: #151540;
            padding: 20px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #00ffff;
            border-bottom: 2px solid #ff00ff;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #00ffff;
            background: #222255;
            color: white;
            font-size: 1rem;
            width: 100%;
        }
        .comment-form textarea {
            height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .btn {
            background: linear-gradient(90deg, #00ffff, #ff00ff);
            color: #000033;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.5);
        }
        .web-links-section {
            background: #0a0a2a;
            padding: 40px 0;
            border-top: 2px solid #00ffff;
            border-bottom: 2px solid #00ffff;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 992px) {
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: #151540;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: scale(1.05);
            background: #222266;
        }
        .web-link a {
            color: #ffcc00;
            font-weight: bold;
        }
        footer {
            background: #000033;
            padding: 30px 0;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-links {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-links a {
            color: #00ffff;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box input {
                width: 200px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                text-align: center;
                padding: 20px;
                gap: 15px;
            }
            #nav-toggle:checked ~ .nav-links {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        .emoji {
            font-size: 1.5rem;
            margin: 0 5px;
        }
