:root {
            --primary-blue: #1a6fb4;
            --secondary-blue: #2eccfa;
            --accent-gold: #f1c40f;
            --dark-bg: #0f172a;
            --content-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #cbd5e1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--content-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-blue);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-gold), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark-bg);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #e2e8f0;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        .search-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-blue);
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 1.8rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            opacity: 0.9;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }
        .last-updated {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-bg);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: linear-gradient(to right, #f0f9ff, #e0f2fe);
            padding: 1.5rem;
            border-left: 5px solid var(--primary-blue);
            border-radius: 0 12px 12px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 5px solid var(--accent-gold);
            margin: 2rem 0;
        }
        .img-container {
            margin: 3rem 0;
            text-align: center;
        }
        .img-container img {
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 0 auto;
            max-width: 800px;
        }
        .img-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .related-links {
            background: #f1f5f9;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2.5rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .link-grid a {
            display: block;
            padding: 0.8rem 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .link-grid a:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
            color: var(--dark-bg);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: var(--accent-gold);
        }
        .rating-btn {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-btn:hover {
            opacity: 0.9;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: var(--dark-bg);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-gold), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #cbd5e1;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-btn {
                border-radius: 50px;
                padding: 0.9rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
