        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #0056A7;
            --secondary-red: #DC4405;
            --accent-gold: #FFD700;
            --dark-bg: #0A1A2F;
            --light-bg: #F8F9FA;
            --text-dark: #212529;
            --text-light: #E9ECEF;
            --gray-border: #DEE2E6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo i {
            color: var(--secondary-red);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--accent-gold);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-gold);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .nav-mobile {
            display: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .search-container {
            display: flex;
            max-width: 300px;
        }
        .search-container input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 0.95rem;
        }
        .search-container button {
            background-color: var(--secondary-red);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-container button:hover {
            background-color: #b83704;
        }
        .breadcrumb {
            background-color: var(--gray-border);
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary-blue);
        }
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-blue);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--dark-bg);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-border);
        }
        h3 {
            color: var(--primary-blue);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--secondary-red);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark-bg);
            background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background-color: #f0f8ff;
            border-left: 5px solid var(--primary-blue);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-bg));
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        .content-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--primary-blue);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--secondary-red);
            border-bottom: 1px solid var(--secondary-red);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--primary-blue);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--gray-border);
        }
        .related-links a {
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-blue);
            padding-left: 0.5rem;
        }
        .related-links i {
            color: var(--secondary-red);
            font-size: 0.9rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--dark-bg);
        }
        .form-control {
            padding: 0.8rem;
            border: 1px solid var(--gray-border);
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 86, 167, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--gray-border);
            cursor: pointer;
        }
        .star-rating .star {
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-gold);
        }
        .btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: var(--dark-bg);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .btn-red {
            background-color: var(--secondary-red);
        }
        .btn-red:hover {
            background-color: #b83704;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-link {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            transition: var(--transition);
        }
        .friend-link:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-desktop {
                display: none;
            }
            .nav-mobile {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                box-shadow: var(--shadow);
                flex-direction: column;
                gap: 0;
            }
            .nav-mobile.active {
                display: flex;
            }
            .nav-mobile ul {
                list-style: none;
                width: 100%;
            }
            .nav-mobile li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-mobile a {
                color: var(--text-light);
                text-decoration: none;
                padding: 1rem;
                display: block;
                transition: var(--transition);
            }
            .nav-mobile a:hover {
                background-color: rgba(255, 255, 255, 0.1);
                padding-left: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-container {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .search-container {
                order: 3;
                width: 100%;
                max-width: 100%;
                margin-top: 1rem;
            }
            article {
                padding: 1.5rem;
            }
            .main-container {
                gap: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .bold { font-weight: 800; }
        .italic { font-style: italic; }
        .emoji { font-size: 1.2em; }
        .key-term {
            background: linear-gradient(90deg, transparent, #fff5e6, transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 700;
            color: var(--dark-bg);
        }
        .insight-box {
            background: linear-gradient(135deg, #fff8e1, #fff);
            border: 2px solid var(--accent-gold);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            position: relative;
        }
        .insight-box::before {
            content: '💡 Exclusive Insight';
            position: absolute;
            top: -12px;
            left: 1.5rem;
            background-color: var(--accent-gold);
            color: var(--dark-bg);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        blockquote {
            border-left: 5px solid var(--secondary-red);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background-color: #fff5f5;
            font-style: italic;
            font-size: 1.1rem;
            border-radius: 0 8px 8px 0;
        }
        blockquote footer {
            background: transparent;
            color: var(--text-dark);
            padding: 0.5rem 0 0;
            margin: 0;
            font-style: normal;
            font-size: 0.9rem;
            text-align: right;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        th {
            background-color: var(--primary-blue);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        td {
            padding: 1rem;
            border-bottom: 1px solid var(--gray-border);
        }
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        tr:hover {
            background-color: #e9f7fe;
        }
