:root {
            --primary: #FF9A00;
            --primary-dark: #E07B00;
            --secondary: #6D28D9;
            --dark: #1F2937;
            --light: #F3F4F6;
            --text: #374151;
            --border: #D1D5DB;
            --success: #10B981;
            --radius: 12px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background-color: #fefefe;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, #111827 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo i {
            font-size: 2.2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 154, 0, 0.2);
            color: var(--primary);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 154, 0, 0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background: linear-gradient(90deg, #4F46E5, var(--secondary));
            padding: 3rem 0;
            text-align: center;
            color: white;
            margin: 2rem 0;
            border-radius: var(--radius);
        }
        .search-box {
            max-width: 600px;
            margin: 1.5rem auto 0;
            display: flex;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .search-box input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: var(--primary-dark);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--light);
            font-size: 0.9rem;
            color: #6B7280;
        }
        .last-updated {
            background: var(--light);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #4B5563;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .intro {
            font-size: 1.2rem;
            color: var(--secondary);
            font-weight: 600;
            border-left: 5px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 154, 0, 0.15) 0%, rgba(255, 154, 0, 0.05) 100%);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 1px solid rgba(255, 154, 0, 0.3);
        }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .link-box {
            background: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            border-left: 5px solid var(--secondary);
        }
        .link-box a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }
        .link-box a:hover {
            text-decoration: underline;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: var(--primary-dark);
        }
        em {
            color: var(--secondary);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--primary);
        }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background: var(--light);
            margin-bottom: 0.8rem;
            border-radius: var(--radius);
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        .quick-links a:hover {
            background: var(--primary);
            color: white;
            border-left-color: var(--secondary);
            transform: translateX(5px);
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #FEF3C7, #FDE68A);
            border-radius: var(--radius);
        }
        .stars {
            font-size: 2rem;
            color: #F59E0B;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.3);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-top: 1rem;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 154, 0, 0.3);
        }
        .btn-secondary {
            background: var(--secondary);
        }
        .btn-secondary:hover {
            background: #5B21B6;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s;
        }
        friend-link a:hover {
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            font-size: 0.9rem;
            color: #9CA3AF;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
