        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: #6ee7ff;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #6ee7ff, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #a855f7;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #b4a5ff;
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #a5ffd6;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background: linear-gradient(135deg, #0a0a15 0%, #1a1a2e 100%);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #6ee7ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo i {
            color: #a855f7;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        nav a {
            color: #b4a5ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: #6ee7ff;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #6ee7ff, #a855f7);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #6ee7ff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 0.95rem;
            color: #8a8ab5;
        }
        .breadcrumb a {
            color: #b4a5ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0 5rem;
        }
        .article-hero {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f1a 100%);
            border-radius: 20px;
            margin-bottom: 3rem;
            border: 1px solid #2a2a4a;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            color: #8a8ab5;
            font-size: 1rem;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            margin: 3rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(106, 13, 173, 0.3);
            border: 2px solid #3a3a6a;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8a8ab5;
            padding: 1rem;
            background: #1a1a2e;
        }
        .content-section {
            margin-bottom: 4rem;
            padding: 2.5rem;
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            border-left: 5px solid #a855f7;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(106, 13, 173, 0.3);
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e 0%, #2a1a4a 100%);
            border: 1px solid #3a3a6a;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #6ee7ff, #a855f7);
        }
        .interactive-section {
            background: rgba(42, 42, 74, 0.8);
            border-radius: 15px;
            padding: 3rem;
            margin: 4rem 0;
            border: 1px solid #4a4a8a;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        .search-box input {
            flex: 1;
            padding: 1.2rem;
            border: 2px solid #3a3a6a;
            border-radius: 10px 0 0 10px;
            background: #1a1a2e;
            color: #e0e0ff;
            font-size: 1.1rem;
        }
        .search-box button {
            padding: 0 2rem;
            background: linear-gradient(90deg, #6ee7ff, #a855f7);
            border: none;
            border-radius: 0 10px 10px 0;
            color: #0f0f1a;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .search-box button:hover {
            opacity: 0.9;
        }
        .rating-system {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
        }
        .star {
            font-size: 2rem;
            color: #3a3a6a;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1.5rem;
            border-radius: 10px;
            background: #1a1a2e;
            border: 2px solid #3a3a6a;
            color: #e0e0ff;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            resize: vertical;
            min-height: 150px;
        }
        .form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .form-row input {
            flex: 1;
            padding: 1rem;
            border-radius: 10px;
            background: #1a1a2e;
            border: 2px solid #3a3a6a;
            color: #e0e0ff;
        }
        .submit-btn {
            padding: 1rem 3rem;
            background: linear-gradient(90deg, #6ee7ff, #a855f7);
            border: none;
            border-radius: 10px;
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
            padding: 2.5rem;
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
        }
        .web-link {
            padding: 1.5rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #2a1a4a 100%);
            border-radius: 10px;
            border: 1px solid #3a3a6a;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #6ee7ff;
            box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
        }
        .web-link a {
            color: #b4a5ff;
            text-decoration: none;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: #6ee7ff;
        }
        footer {
            background: linear-gradient(135deg, #0a0a15 0%, #1a1a2e 100%);
            padding: 4rem 0 2rem;
            border-top: 2px solid #2a2a4a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            color: #6ee7ff;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #b4a5ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #6ee7ff;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a2a4a;
            color: #8a8ab5;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.6rem; }
            .container { padding: 0 1.5rem; }
        }
        @media (max-width: 768px) {
            .header-container { position: relative; }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a2e;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                border-top: 2px solid #2a2a4a;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger { display: block; }
            .form-row { flex-direction: column; }
            .content-section { padding: 1.5rem; }
            .interactive-section { padding: 2rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-hero { padding: 2rem 1rem; }
            .featured-image { margin: 2rem 0; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section, .interactive-section, .web-link {
            animation: fadeIn 0.6s ease forwards;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.3rem; margin-right: 0.5rem; }
