        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #ff9900;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ffcc00;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        nav {
            display: flex;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(255, 204, 0, 0.1);
        }
        nav a:hover {
            background: rgba(255, 204, 0, 0.3);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            padding: 40px 0;
            background: #121225;
        }
        article {
            background: rgba(30, 30, 60, 0.8);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }
        h2 {
            font-size: 2.2rem;
            color: #00ccff;
            margin: 40px 0 20px;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #99ff99;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 10px;
        }
        .featured-image {
            width: 80%;
            margin: 40px auto;
            border-radius: 15px;
            overflow: hidden;
            border: 5px solid #ffcc00;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .search-box {
            background: rgba(20, 20, 40, 0.9);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }
        .search-box h3 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ffcc00;
            border-radius: 10px 0 0 10px;
            background: #0a0a15;
            color: white;
            font-size: 1.1rem;
        }
        .search-form button {
            padding: 15px 30px;
            background: #ffcc00;
            color: #0f0f1a;
            border: none;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #ff9900;
        }
        .comments-section, .rating-section {
            background: rgba(20, 20, 40, 0.9);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .comments-section h3, .rating-section h3 {
            color: #00ccff;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 20px;
            margin-top: 25px;
        }
        .comment-form input, .comment-form textarea, .rating-form select {
            padding: 15px;
            border: 2px solid #00ccff;
            border-radius: 10px;
            background: #0a0a15;
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffcc00;
        }
        .rating-stars input:checked ~ label {
            color: #ffcc00;
        }
        .submit-btn {
            padding: 15px 40px;
            background: linear-gradient(90deg, #00ccff, #0099cc);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            justify-self: start;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 204, 255, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.3);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f0f0f0;
            font-weight: bold;
            font-size: 1.1rem;
        }
        footer {
            background: #0a0a15;
            padding: 40px 0;
            text-align: center;
            border-top: 3px solid #ffcc00;
        }
        .copyright {
            color: #aaa;
            font-size: 1rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .menu-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .featured-image {
                width: 100%;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 10px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 10px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
            50% { box-shadow: 0 0 25px rgba(255, 204, 0, 0.8); }
            100% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
