        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background-color: #0a1128; color: #f0f8ff; line-height: 1.7; }
        .site-header { background: linear-gradient(135deg, #001f3f 0%, #0a1128 100%); padding: 1rem 2rem; border-bottom: 3px solid #ffd700; }
        .header-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2.2rem; font-weight: 900; text-decoration: none; color: #ffd700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
        .logo a:hover { color: #fff; text-shadow: 0 0 10px #ffd700; }
        .logo span { color: #7fffd4; }
        .breadcrumb { background: #1a2a4a; padding: 0.8rem 2rem; font-size: 0.9rem; }
        .breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; }
        .breadcrumb li { display: inline; margin-right: 0.5rem; }
        .breadcrumb li:after { content: '»'; margin-left: 0.5rem; color: #ffd700; }
        .breadcrumb li:last-child:after { content: ''; }
        .breadcrumb a { color: #7fffd4; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-nav { background-color: #1a2a4a; position: sticky; top: 0; z-index: 1000; }
        .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin: 0; }
        .nav-links a { display: block; padding: 1.2rem 1.5rem; color: #f0f8ff; text-decoration: none; font-weight: 600; transition: all 0.3s; border-bottom: 3px solid transparent; }
        .nav-links a:hover, .nav-links a.active { background-color: #0a1128; border-bottom-color: #ffd700; color: #ffd700; }
        .hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: #ffd700; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links { position: fixed; top: 70px; left: -100%; width: 80%; height: calc(100vh - 70px); background-color: #1a2a4a; flex-direction: column; transition: left 0.5s; padding-top: 2rem; box-shadow: 2px 0 10px rgba(0,0,0,0.5); }
            .nav-links.active { left: 0; }
            .nav-links li { width: 100%; }
            .nav-links a { padding: 1.2rem; border-bottom: 1px solid #2a3a5a; }
        }
        .main-container { max-width: 1400px; margin: 2rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 1024px) {
            .main-container { grid-template-columns: 1fr; }
        }
        article { background-color: #1a2a4a; border-radius: 12px; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        h1 { font-size: 2.8rem; color: #ffd700; margin-bottom: 1.5rem; line-height: 1.2; }
        h2 { font-size: 2rem; color: #7fffd4; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #2a3a5a; }
        h3 { font-size: 1.5rem; color: #ffb6c1; margin-top: 1.8rem; margin-bottom: 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .intro { font-size: 1.2rem; color: #e6e6fa; background: #2a3a5a; padding: 1.5rem; border-left: 5px solid #ffd700; border-radius: 0 8px 8px 0; margin-bottom: 2.5rem; }
        .highlight { background-color: #2a3a5a; padding: 1.5rem; border-radius: 8px; margin: 1.5rem 0; border-left: 4px solid #ffd700; }
        .highlight strong { color: #ffd700; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        img.featured-image { width: 100%; height: auto; border-radius: 10px; margin: 2rem 0; border: 3px solid #2a3a5a; transition: transform 0.5s; }
        img.featured-image:hover { transform: scale(1.01); }
        .internal-link { color: #7fffd4; text-decoration: none; border-bottom: 1px dashed #7fffd4; transition: color 0.3s; }
        .internal-link:hover { color: #ffd700; border-bottom-style: solid; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .stat-card { background: #2a3a5a; padding: 1.5rem; border-radius: 10px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
        .stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2); }
        .stat-card h4 { color: #ffd700; margin-bottom: 0.5rem; }
        aside { background-color: #1a2a4a; border-radius: 12px; padding: 2rem; align-self: start; position: sticky; top: 100px; }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { color: #ffd700; font-size: 1.4rem; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid #2a3a5a; }
        .search-form { display: flex; }
        .search-input { flex-grow: 1; padding: 0.9rem; border: none; border-radius: 6px 0 0 6px; background-color: #2a3a5a; color: #f0f8ff; }
        .search-button { background-color: #ffd700; color: #0a1128; border: none; padding: 0 1.5rem; border-radius: 0 6px 6px 0; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-button:hover { background-color: #fff; }
        .form-group { margin-bottom: 1.2rem; }
        .form-label { display: block; margin-bottom: 0.5rem; color: #7fffd4; }
        .form-input, .form-textarea, .form-select { width: 100%; padding: 0.8rem; border-radius: 6px; border: 1px solid #2a3a5a; background-color: #2a3a5a; color: #f0f8ff; }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit { background: linear-gradient(to right, #ffd700, #ffaa00); color: #0a1128; border: none; padding: 1rem 2rem; border-radius: 6px; cursor: pointer; font-weight: bold; width: 100%; transition: transform 0.3s; }
        .form-submit:hover { transform: scale(1.03); }
        .star-rating { display: flex; justify-content: space-between; margin: 1rem 0; font-size: 1.8rem; color: #444; }
        .star-rating input { display: none; }
        .star-rating label { cursor: pointer; }
        .star-rating input:checked ~ label { color: #ffd700; }
        .star-rating label:hover, .star-rating label:hover ~ label { color: #ffd700; }
        .footer-links-section { background-color: #1a2a4a; padding: 3rem 2rem; margin-top: 3rem; }
        .footer-links-container { max-width: 1400px; margin: 0 auto; }
        .web-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
        .web-link { background-color: #2a3a5a; padding: 1.2rem; border-radius: 8px; transition: background 0.3s; }
        .web-link:hover { background-color: #3a4a6a; }
        .web-link a { color: #7fffd4; text-decoration: none; font-weight: 600; display: block; }
        .web-link a:hover { color: #ffd700; }
        .site-footer { background-color: #0a1128; color: #a9a9a9; padding: 2rem; text-align: center; border-top: 1px solid #1a2a4a; }
        .footer-container { max-width: 1400px; margin: 0 auto; }
        .copyright { margin-top: 1rem; font-size: 0.9rem; }
        .social-links { margin-top: 1.5rem; }
        .social-links a { color: #a9a9a9; font-size: 1.5rem; margin: 0 0.8rem; transition: color 0.3s; }
        .social-links a:hover { color: #ffd700; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .bold { font-weight: bold; color: #ffd700; }
        @media (max-width: 480px) {
            .site-header, .breadcrumb, .nav-container, .main-container, .footer-links-section { padding-left: 1rem; padding-right: 1rem; }
            h1 { font-size: 2.2rem; }
            article, aside { padding: 1.5rem; }
        }
