        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff9800;
            --accent: #4caf50;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.8;
            font-size: 18px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Nirmala UI', 'Segoe UI', sans-serif;
            color: var(--primary);
            margin-bottom: 1.2rem;
            line-height: 1.4;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 0.5rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #0d47a1;
            margin-top: 3rem;
            padding-left: 1rem;
            border-left: 6px solid var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            color: #1565c0;
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #283593 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(to right, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            font-size: 1rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: var(--gray);
        }
        .search-container {
            max-width: 800px;
            margin: 3rem auto;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .search-box {
            display: flex;
            gap: 0;
            height: 60px;
        }
        .search-input {
            flex: 1;
            padding: 0 1.5rem;
            border: 2px solid var(--primary);
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 8px 8px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-button:hover {
            background-color: #0d47a1;
        }
        main {
            padding: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .highlight {
            background-color: #fffde7;
            border-left: 6px solid #ffd600;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
        }
        .highlight h3 {
            color: #f57c00;
            margin-top: 0;
        }
        .hero-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .tip-box {
            background: #e8f5e9;
            border: 2px dashed var(--accent);
            border-radius: 12px;
            padding: 1.8rem;
            margin: 2.5rem 0;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        .tip-icon {
            font-size: 2.5rem;
            color: var(--accent);
            flex-shrink: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .data-table th {
            background-color: var(--primary);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-size: 1.2rem;
        }
        .data-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .data-table tr:hover {
            background-color: #f5f5f5;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .character-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .character-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        }
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-content {
            padding: 1.5rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }
        .comment-box, .rating-box {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.8rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--primary);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .submit-button:hover {
            background-color: #0d47a1;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #e0e0e0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .web-links-section {
            background: #f0f2f5;
            padding: 3rem 0;
            margin: 4rem 0 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(8px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .article-content {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--primary);
                padding: 2rem;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links a {
                padding: 1rem;
                border-radius: 8px;
                font-size: 1.2rem;
            }
            .header-container {
                padding: 0 15px;
            }
            .hero-image {
                height: 300px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            .search-container {
                padding: 1.5rem;
            }
            .search-box {
                flex-direction: column;
                height: auto;
                gap: 1rem;
            }
            .search-input,
            .search-button {
                width: 100%;
                border-radius: 8px;
            }
            .article-content {
                padding: 1.5rem;
            }
            .tip-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        @media print {
            header, nav, .search-container, .interactive-section, 
            .web-links-section, footer {
                display: none;
            }
            body {
                font-size: 12pt;
                color: #000;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
