* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #4a1e88;
            --secondary: #ff9800;
            --accent: #00bcd4;
            --light: #f5f5f5;
            --dark: #333;
            --text: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #2a1050);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(to right, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius);
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--secondary);
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 1rem;
            box-shadow: var(--shadow);
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #888;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-section {
            margin: 2rem 0;
            padding: 2rem;
            background: linear-gradient(to right, #f8f9ff, #eef2ff);
            border-radius: var(--radius);
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #e68900;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .meta span i {
            margin-right: 0.5rem;
            color: var(--accent);
        }
        .hero-image {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .hero-image img:hover {
            transform: scale(1.02);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }
        article h3 {
            font-size: 1.6rem;
            color: #2a1050;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff8e1, #ffecb3);
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent);
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-5px);
        }
        .download-cta {
            background: linear-gradient(135deg, var(--primary), #6a4ca3);
            color: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            text-align: center;
            margin: 3rem 0;
        }
        .download-cta h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .download-btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            box-shadow: 0 6px 0 #b36b00;
            transition: var(--transition);
        }
        .download-btn:hover {
            background-color: #ffad33;
            transform: translateY(-3px);
            box-shadow: 0 9px 0 #b36b00;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rate-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            margin-top: 1rem;
            width: 100%;
            transition: var(--transition);
        }
        .rate-btn:hover {
            background-color: #0097a7;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            resize: vertical;
            min-height: 150px;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #3a1766;
        }
        .footer-links {
            background-color: #f9f9f9;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: white;
            padding: 1rem 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background-color: var(--dark);
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 0.8rem;
        }
        .footer-links-list a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-content {
                padding: 0 10px;
            }
            article {
                padding: 1.5rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--radius);
            }
            .search-input, .search-btn {
                border-radius: 0;
                padding: 1rem;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
