        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #0d1b36 0%, #1a3a7a 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: #FFCC00;
            text-decoration: none;
            text-shadow: 2px 2px 0 #D40000, 3px 3px 5px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            transition: transform 0.3s ease;
        }
        .logo a:hover { transform: scale(1.05); }
        .logo .sub {
            font-size: 0.8rem;
            color: #aaa;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-desktop a {
            color: #FFCC00;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover,
        .nav-desktop a:focus {
            background-color: #FFCC00;
            color: #0d1b36;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFCC00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a3a7a;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile ul { list-style: none; width: 100%; }
        .nav-mobile li { margin-bottom: 0.8rem; }
        .nav-mobile a {
            color: #FFCC00;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.75rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-mobile a:hover { background-color: rgba(255, 204, 0, 0.2); }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a { color: #1a3a7a; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-area {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-area h1 {
            color: #0d1b36;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta i { margin-right: 5px; }
        .article-area h2 {
            color: #1a3a7a;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #FFCC00;
        }
        .article-area h3 {
            color: #D40000;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-area p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background-color: #f9f9f9;
        }
        .insider-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid #FFCC00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .insider-box h4 {
            color: #0d1b36;
            margin-bottom: 0.5rem;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #1a3a7a;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .author { font-weight: bold; color: #333; margin-top: 0.5rem; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a3a7a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
            font-size: 1.4rem;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus { border-color: #1a3a7a; }
        .search-form button {
            background-color: #1a3a7a;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background-color: #0d1b36; }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active { color: #FFCC00; transform: scale(1.1); }
        .rating-widget .score-display {
            text-align: center;
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 1rem;
        }
        .rating-widget .rate-button {
            display: block;
            width: 100%;
            padding: 0.8rem;
            background-color: #D40000;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget .rate-button:hover { background-color: #a30000; }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus { border-color: #1a3a7a; outline: none; }
        .comment-form button {
            background-color: #1a3a7a;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover { background-color: #0d1b36; }
        .comment-list { margin-top: 2rem; }
        .comment-item {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .comment-author { font-weight: bold; color: #1a3a7a; }
        .comment-date { color: #888; font-size: 0.9rem; }
        .comment-text { color: #444; }
        .internal-links {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .internal-links h2 {
            color: #1a3a7a;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #FFCC00;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #1a3a7a;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { text-decoration: underline; }
        .site-footer {
            background: #0d1b36;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #FFCC00;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.7rem; }
        .footer-col a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-col a:hover { color: #FFCC00; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a3a7a;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-area h1 { font-size: 2.2rem; }
            .article-area h2 { font-size: 1.8rem; }
            .article-area { padding: 1.5rem; }
            .web-links { grid-template-columns: 1fr; }
        }
