        * {
            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.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00d9ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff00ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00d9ff, #ff00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 10px #00d9ff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            font-weight: 600;
        }
        nav ul li a:hover {
            background: rgba(0, 217, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00d9ff;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 5px 15px;
            margin-left: 20px;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            padding: 8px;
            width: 200px;
            outline: none;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: #00d9ff;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-box button:hover {
            color: #ff00ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00d9ff;
        }
        main {
            padding: 30px 0;
            background: rgba(10, 10, 30, 0.7);
            border-radius: 10px;
            margin: 20px auto;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 10px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #00d9ff;
            text-shadow: 0 0 10px #00d9ff;
        }
        .article-header p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-section {
            margin-bottom: 40px;
            padding: 25px;
            background: rgba(20, 20, 50, 0.5);
            border-radius: 10px;
            border-left: 5px solid #ff00ff;
        }
        .content-section h2 {
            font-size: 2.2rem;
            color: #ff00ff;
            margin-bottom: 20px;
            border-bottom: 2px dashed #00d9ff;
            padding-bottom: 10px;
        }
        .content-section h3 {
            font-size: 1.8rem;
            color: #00d9ff;
            margin: 25px 0 15px;
        }
        .content-section p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .content-section b {
            color: #ffcc00;
            font-weight: 700;
        }
        .content-section emoji {
            font-size: 1.5rem;
            margin: 0 5px;
        }
        .highlight-box {
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid #00d9ff;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #00d9ff;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
            max-width: 90%;
            margin: 0 auto;
        }
        .image-container figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .comment-form, .rating-form {
            background: rgba(30, 30, 60, 0.8);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #ff00ff;
        }
        .comment-form h3, .rating-form h3 {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #00d9ff;
            box-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(90deg, #00d9ff, #ff00ff);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #ffcc00;
        }
        .internal-links {
            padding: 40px 0;
            background: rgba(0, 0, 0, 0.8);
            border-top: 2px solid #00d9ff;
            border-bottom: 2px solid #00d9ff;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ff00ff;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(255, 0, 255, 0.1);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #00d9ff;
        }
        footer {
            text-align: center;
            padding: 25px;
            background: rgba(0, 0, 0, 0.95);
            color: #aaa;
            font-size: 0.9rem;
        }
        footer p {
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                border-top: 1px solid #00d9ff;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .search-box {
                margin: 15px 0 0 0;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .content-section h3 {
                font-size: 1.5rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 5px #00d9ff; }
            50% { box-shadow: 0 0 20px #ff00ff; }
            100% { box-shadow: 0 0 5px #00d9ff; }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
