* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blue: #0066b3;
            --secondary-gold: #f4c542;
            --dark-bg: #0a2a4a;
            --light-bg: #f8f9fa;
            --text-dark: #222;
            --text-light: #fff;
            --accent-green: #2ecc71;
            --accent-red: #e74c3c;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--secondary-gold), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-gold);
            -webkit-text-fill-color: var(--secondary-gold);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            width: 0;
            height: 2px;
            background-color: var(--secondary-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: calc(100% - 24px);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            padding: 20px;
            gap: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.08);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            opacity: 0.9;
        }
        .breadcrumb a:hover {
            opacity: 1;
            color: var(--secondary-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
            opacity: 0.6;
        }
        .article-hero {
            background: linear-gradient(rgba(10, 42, 74, 0.85), rgba(10, 42, 74, 0.9)), url('https://images.unsplash.com/photo-1594744803329-e58b31de8bf5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 40px;
        }
        .article-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .article-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        .article-meta i {
            margin-right: 8px;
            color: var(--secondary-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-section {
            margin-bottom: 50px;
        }
        .article-section h2 {
            color: var(--primary-blue);
            border-left: 5px solid var(--secondary-gold);
            padding-left: 15px;
            margin-bottom: 25px;
            font-size: 2.2rem;
        }
        .article-section h3 {
            color: var(--dark-bg);
            margin: 25px 0 15px;
            font-size: 1.6rem;
        }
        .article-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #e8f4fc;
            border-left: 4px solid var(--primary-blue);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            border-top: 4px solid var(--secondary-gold);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        .stat-card h4 {
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-bg);
            line-height: 1;
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            margin-top: 10px;
            opacity: 0.8;
            font-size: 0.95rem;
        }
        .interactive-link {
            color: var(--primary-blue);
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-blue);
        }
        .interactive-link:hover {
            color: var(--dark-bg);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 22px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--dark-bg);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ddd;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--secondary-gold);
            transform: scale(1.1);
        }
        .submit-rating {
            background-color: var(--accent-green);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .submit-rating:hover {
            background-color: #27ae60;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 6px;
            resize: vertical;
            min-height: 150px;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .submit-comment {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .submit-comment:hover {
            background-color: var(--dark-bg);
        }
        .long-tail-links {
            background-color: var(--dark-bg);
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 12px 18px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ddd;
        }
        .web-link a:hover {
            color: var(--secondary-gold);
        }
        .site-footer {
            background-color: #071c30;
            color: #aaa;
            padding: 40px 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        .footer-links {
            display: flex;
            gap: 25px;
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
        }
        .copyright {
            padding-top: 30px;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-hero h1 {
                font-size: 2.5rem;
            }
            .content-wrapper {
                padding: 0 15px;
            }
            .main-article {
                padding: 25px;
            }
            .article-section h2 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-bold {
            font-weight: 700;
        }
        .text-italic {
            font-style: italic;
        }
        .text-highlight {
            background-color: rgba(244, 197, 66, 0.2);
            padding: 0 4px;
            border-radius: 3px;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
