        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ffcc00;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: rgba(20, 15, 60, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 5px #000;
        }
        .logo span {
            color: #00ccff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255, 204, 0, 0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255, 204, 0, 0.3);
            transform: translateY(-3px);
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(30, 25, 80, 0.98);
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            gap: 15px;
            animation: slideDown 0.5s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px;
            border-bottom: 1px solid #444;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle, rgba(50, 45, 100, 0.8), rgba(15, 12, 41, 0.9));
            margin: 30px 0;
            border-radius: 15px;
            border: 3px solid #ffcc00;
        }
        .hero h1 {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-shadow: 3px 3px 8px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .highlight {
            color: #00ffcc;
            font-weight: bold;
            font-size: 1.1em;
        }
        .search-section {
            background: rgba(40, 35, 90, 0.7);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
            background: #fff;
            color: #333;
        }
        .search-form button {
            background: #ffcc00;
            color: #000;
            border: none;
            padding: 15px 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff9900;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin: 50px 0;
        }
        .article-section {
            background: rgba(25, 20, 70, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h2, h3 {
            color: #00ccff;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ffcc00;
        }
        h2 {
            font-size: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            color: #e0e0e0;
        }
        .bold {
            font-weight: 900;
            color: #ffcc00;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .image-box {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 400px;
            border: 5px solid #ffcc00;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
        }
        .image-box img {
            display: block;
        }
        .interactive {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .comment-box, .rating-box {
            background: rgba(40, 35, 90, 0.7);
            padding: 30px;
            border-radius: 10px;
        }
        .comment-box h3, .rating-box h3 {
            color: #ffcc00;
        }
        textarea, select, input {
            width: 100%;
            padding: 15px;
            margin: 15px 0;
            border: 1px solid #555;
            border-radius: 5px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(45deg, #ffcc00, #ff9900);
            color: #000;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.5);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .stars .active {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            background: rgba(30, 25, 80, 0.9);
            padding: 40px;
            border-radius: 15px;
            margin: 60px 0 30px;
        }
        .web-link {
            background: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #00ccff;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(255, 204, 0, 0.2);
        }
        .web-link a {
            color: #f0f0f0;
            font-weight: 600;
            display: block;
        }
        footer {
            background: rgba(15, 12, 41, 0.98);
            text-align: center;
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 3px solid #ffcc00;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .image-box {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
            .interactive {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
