        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight { background-color: #fff3cd; padding: 2px 6px; border-radius: 3px; }
        .site-header {
            background: linear-gradient(135deg, #0a2e68 0%, #a50000 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-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ffd700, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; color: #ffd700; font-size: 2rem; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e6e6e6;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            color: #ffd700;
            background-color: rgba(255, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #0a2e68;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; width: 100%; }
        .mobile-nav li { margin: 0.8rem 0; }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover { background-color: rgba(255,215,0,0.2); }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #0a2e68;
            text-decoration: none;
            font-weight: 600;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #6c757d; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-area {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #0a2e68;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #a50000;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #a50000;
            font-size: 2rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 10px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            color: #0a2e68;
            font-size: 1.6rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            color: #495057;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 0.6rem;
            font-style: italic;
        }
        .article-area p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: #555;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #0a2e68;
        }
        .article-area a {
            color: #a50000;
            text-decoration: underline;
            font-weight: 600;
        }
        .article-area a:hover {
            color: #0a2e68;
            text-decoration: none;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2.5rem auto;
            border: 5px solid #e9ecef;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .feature-img:hover { transform: scale(1.01); }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #a50000;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus {
            outline: none;
            border-color: #0a2e68;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(to right, #0a2e68, #a50000);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-box button:hover { opacity: 0.9; }
        .rating-widget, .comment-widget {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffd700; }
        .comment-widget textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            resize: vertical;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .comment-widget button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-widget button:hover { background-color: #218838; }
        .site-footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links h4 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            border-bottom: 1px solid #444;
            padding-bottom: 0.5rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #ffd700; }
        friend-link {
            display: block;
            background-color: #2d2d2d;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        friend-link h4 {
            color: #ffd700;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #4da6ff;
            text-decoration: none;
            font-weight: bold;
        }
        friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            .article-area { padding: 1.5rem; }
            .sidebar { position: static; }
        }
