* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #FF6B8B;
            --secondary-color: #3AC0FF;
            --accent-color: #FFD166;
            --dark-color: #2A2D43;
            --light-color: #F8F9FA;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --container-width: 1200px;
        }
        body {
            background-color: #fff;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color), #1a1c2f);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .saga-text {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-style: italic;
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--secondary-color);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(42, 45, 67, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            padding: 18px 22px;
            display: inline-block;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 107, 139, 0.2);
            color: var(--accent-color);
        }
        .nav-links a.active {
            color: var(--accent-color);
            border-bottom: 3px solid var(--accent-color);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f3f8;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        main {
            padding: 40px 0;
            min-height: 80vh;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding-bottom: 25px;
            border-bottom: 2px solid #eee;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 25px;
            color: var(--text-light);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-image {
            width: 100%;
            margin: 30px 0 40px;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            color: var(--dark-color);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 35px 0 15px;
            color: var(--primary-color);
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content .highlight {
            background-color: rgba(255, 214, 102, 0.2);
            padding: 25px;
            border-left: 5px solid var(--accent-color);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 30px 0;
        }
        .article-content .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--dark-color);
        }
        .article-content ul, .article-content ol {
            margin: 20px 0 20px 30px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .article-content strong {
            color: var(--dark-color);
            font-weight: 700;
        }
        .article-content em {
            color: var(--primary-color);
            font-style: italic;
        }
        .interactive-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .interactive-box h3 {
            color: var(--dark-color);
            margin-top: 0;
        }
        .rating-box {
            text-align: center;
            padding: 20px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .rating-box h3 {
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #ddd;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            color: var(--accent-color);
            transform: scale(1.2);
        }
        .stars i.active {
            color: #FFD166;
        }
        .rating-form button, .comment-form button, .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form input, .comment-form textarea, .rating-form input {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .toc ul {
            list-style: none;
            margin-left: 0;
        }
        .toc li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .toc li:before {
            content: "•";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .toc a {
            color: var(--text-color);
        }
        .toc a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .related-links a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: var(--text-color);
        }
        .related-links a:last-child {
            border-bottom: none;
        }
        .related-links a:hover {
            color: var(--primary-color);
            padding-left: 10px;
        }
        .web-links {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: var(--dark-color);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background-color: var(--dark-color);
            color: #bbb;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h4:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #bbb;
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-color);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            .nav-active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                align-items: center;
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 15px;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }
