        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0f1c3f;
            --secondary: #d4af37;
            --accent: #c1272d;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f2f5;
            color: var(--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;
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1.2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-gold { color: var(--secondary); }
        .text-red { color: var(--accent); }
        .bg-dark { background-color: var(--primary); color: var(--light); }
        .bg-light { background-color: var(--light); }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-3 { padding-top: 3rem; padding-bottom: 3rem; }
        .my-2 { margin-top: 2rem; margin-bottom: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .rounded { border-radius: var(--border-radius); }
        .shadow { box-shadow: var(--shadow); }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a2a57 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a.my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a.my-logo:hover {
            color: #fff;
            transform: scale(1.03);
        }
        .logo-icon {
            color: var(--accent);
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            position: relative;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--secondary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 2rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .nav-mobile a {
            color: var(--light);
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            display: block;
            border-left: 4px solid transparent;
        }
        .nav-mobile a:hover,
        .nav-mobile a.active {
            background-color: rgba(212, 175, 55, 0.15);
            border-left-color: var(--secondary);
            color: var(--secondary);
            padding-left: 2rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 2rem 0;
            background-color: #fff;
        }
        .article-header {
            margin-bottom: 3rem;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 2rem;
        }
        h1 {
            font-size: 3rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .update-time {
            background-color: #fff3cd;
            color: #856404;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2.5rem auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        .content-area {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .content-area p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .content-area h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-top: 3.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid var(--secondary);
            position: relative;
        }
        .content-area h2::before {
            content: '🎬';
            margin-right: 12px;
        }
        .content-area h3 {
            font-size: 1.8rem;
            color: #1a2a57;
            margin-top: 2.8rem;
            margin-bottom: 1.2rem;
            padding-left: 1rem;
            border-left: 5px solid var(--accent);
        }
        .content-area h4 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-top: 2.2rem;
            margin-bottom: 1rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 6px solid var(--secondary);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: var(--shadow);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .quote {
            font-style: italic;
            color: #495057;
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px dashed var(--secondary);
            margin: 2rem 0;
            position: relative;
        }
        .quote::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary);
            font-size: 2rem;
            position: absolute;
            top: -15px;
            left: 20px;
            background: #fff;
            padding: 0 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 1px solid #dee2e6;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }
        .stat-desc {
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        .link-list {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
        }
        .link-list h3 {
            margin-top: 0;
            color: var(--primary);
        }
        .link-list ul {
            columns: 2;
            column-gap: 3rem;
        }
        @media (max-width: 768px) {
            .link-list ul { columns: 1; }
        }
        .link-list li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }
        .link-list a {
            color: var(--primary);
            font-weight: 600;
            padding: 0.3rem 0;
            display: inline-block;
            border-bottom: 1px dotted transparent;
        }
        .link-list a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
        .interactive-section {
            background: linear-gradient(135deg, #0f1c3f, #2d3b6b);
            color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            box-shadow: 0 15px 35px rgba(15, 28, 63, 0.2);
        }
        .interactive-section h2 {
            color: white;
            border-bottom-color: var(--secondary);
        }
        .interactive-section h2::before {
            content: '🔍';
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #4a5a8c;
            border-radius: 8px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            background-color: rgba(255,255,255,0.15);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
        }
        .form-control::placeholder {
            color: #a0a9c7;
        }
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: #e6c02e;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.2);
        }
        .btn-block {
            width: 100%;
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            gap: 0.3rem;
            margin: 1.5rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--secondary);
        }
        .site-footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #c0c7dd;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        .footer-links i {
            width: 20px;
            color: var(--secondary);
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            border-left: 5px solid var(--accent);
        }
        friend-link a {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.2rem;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d3b6b;
            color: #a0a9c7;
            font-size: 0.9rem;
        }
