        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0a1428;
            --primary-blue: #1a5fb4;
            --primary-gold: #c8aa6e;
            --secondary-gold: #f0e6d2;
            --text-light: #f0f0f0;
            --text-grey: #a09b8c;
            --bg-card: #091428;
            --border-color: #1e2328;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
            font-size: 16px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(180deg, #0a1428 0%, #041022 50%, #030a15 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .section-padding {
            padding: 4rem 0;
        }
        .text-center { text-align: center; }
        .text-gold { color: var(--primary-gold); }
        .bg-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-blue), #0057b8);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, #0057b8, var(--primary-blue));
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 95, 180, 0.4);
        }
        .site-header {
            background-color: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--secondary-gold), var(--primary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            background: transparent;
            border: none;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-gold);
            border-radius: 2px;
            transition: var(--transition);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                border-top: 1px solid var(--border-color);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: transform 0.4s ease, opacity 0.4s, visibility 0.4s;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }
            .main-nav li {
                text-align: center;
                padding: 1rem;
                border-bottom: 1px solid var(--border-color);
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-grey);
        }
        .breadcrumb a:hover {
            color: var(--secondary-gold);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hero {
            position: relative;
            padding: 5rem 0;
            background: radial-gradient(circle at 70% 30%, rgba(26, 95, 180, 0.2) 0%, transparent 50%);
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: -1;
        }
        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.25rem;
            color: var(--secondary-gold);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-section {
            padding: 2rem 0;
            background-color: rgba(9, 20, 40, 0.7);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            background-color: rgba(255, 255, 255, 0.12);
        }
        .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-content {
            font-size: 1.1rem;
        }
        .article-content h2, .article-content h3, .article-content h4 {
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary-gold);
            line-height: 1.3;
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid var(--primary-gold);
            padding-bottom: 0.5rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: #b3c5e5;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content blockquote {
            border-left: 4px solid var(--primary-gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-grey);
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.1), rgba(26, 95, 180, 0.1));
            border-left: 4px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 2px solid var(--primary-gold);
        }
        .image-caption {
            font-size: 0.95rem;
            color: var(--text-grey);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: rgba(30, 35, 40, 0.6);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-grey);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary-gold);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-grey);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .user-interaction {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid var(--border-color);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .interaction-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--text-grey);
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--primary-gold);
        }
        .site-footer {
            background-color: #030a15;
            border-top: 2px solid var(--primary-gold);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(200, 170, 110, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-grey);
            font-size: 0.9rem;
        }
