        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-magic: #0063e5;
            --secondary-sparkle: #00a8e8;
            --accent-gold: #ffd700;
            --dark-kingdom: #0d1b2a;
            --light-cloud: #f8f9fa;
            --text-primary: #333;
            --text-secondary: #555;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--light-cloud);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-magic);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-sparkle);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-magic), var(--secondary-sparkle));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            text-decoration: none;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-highlight {
            background: linear-gradient(120deg, var(--accent-gold) 0%, transparent 100%);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Brush Script MT', cursive;
            font-size: 2.8rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary-magic), var(--secondary-sparkle));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--dark-kingdom);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--text-secondary); }
        .breadcrumb a:hover { color: var(--primary-magic); }
        .breadcrumb i { margin: 0 8px; }
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 20px;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-section {
            background-color: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 30px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary-magic);
        }
        .main-content {
            background-color: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 50px;
            margin-bottom: 40px;
        }
        h1 { font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--dark-kingdom); }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1.2rem; color: var(--primary-magic); padding-bottom: 10px; border-bottom: 3px solid var(--accent-gold); }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--secondary-sparkle); }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: var(--text-primary); }
        p, li {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            color: var(--text-primary);
            text-align: justify;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        blockquote {
            border-left: 5px solid var(--accent-gold);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--text-secondary);
            background-color: #fef9e7;
            padding: 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-bottom: 30px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .featured-image {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-module {
            background-color: #f8f9fa;
            border-radius: var(--radius);
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #eaeaea;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            color: var(--dark-kingdom);
        }
        .module-title i {
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            direction: rtl;
            justify-content: start;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-primary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 18px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-magic);
            box-shadow: 0 0 0 3px rgba(0, 99, 229, 0.1);
        }
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .site-footer {
            background-color: var(--dark-kingdom);
            color: #ccc;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary-sparkle);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #aaa;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
            border-left: 4px solid var(--accent-gold);
        }
        friend-link a {
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.6rem; }
            h2 { font-size: 2rem; }
            .main-content { padding: 40px 30px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 30px;
                box-shadow: var(--shadow);
                transition: left 0.4s ease;
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .header-container {
                padding: 15px;
            }
            .hero {
                padding: 70px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-links a {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .main-content { padding: 30px 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.5rem; }
            .btn { padding: 10px 22px; }
        }
