        * {
            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;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(42, 82, 152, 0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(42, 82, 152, 0.3);
            background: linear-gradient(135deg, #2a5298, #3a6bd1);
        }
        header {
            background: linear-gradient(to right, #0c2461, #1e3799);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #ff9a00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo span {
            color: #ffd700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ffd700;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffd700;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #0c2461;
            flex-direction: column;
            padding: 2rem;
            display: none;
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .mobile-nav.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin-bottom: 1.2rem;
            text-align: center;
        }
        .mobile-nav a {
            font-size: 1.3rem;
            font-weight: 600;
            padding: 0.8rem;
            display: block;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 215, 0, 0.1);
            color: #ffd700;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: #1e3799;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            font-size: 0.8rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        article h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .article-meta i {
            color: #1e3799;
            margin-right: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #1a2980;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd700;
        }
        article h3 {
            font-size: 1.6rem;
            color: #2a5298;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #0c2461;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdfcfb, #f1f7ff);
            border-left: 5px solid #2a5298;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(42, 82, 152, 0.05);
        }
        .featured-img {
            margin: 3rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 1rem;
            background-color: #f8f9fa;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-widget h3 {
            color: #0c2461;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #ffd700;
            font-size: 1.5rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: #2a5298;
        }
        .search-box button {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 1.8rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(135deg, #2a5298, #3a6bd1);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .rating-widget .stars i {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffd700;
            transform: scale(1.1);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input,
        .rating-widget textarea {
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .rating-widget textarea {
            min-height: 100px;
        }
        .comments-widget .comment-list {
            max-height: 500px;
            overflow-y: auto;
            margin-bottom: 2rem;
        }
        .comment {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.2rem;
            margin-bottom: 1.2rem;
            border-left: 4px solid #2a5298;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #555;
        }
        .comment-author {
            font-weight: 700;
            color: #0c2461;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form textarea {
            min-height: 120px;
        }
        .internal-links {
            background: white;
            padding: 3rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .internal-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateY(-5px);
            border-color: #2a5298;
        }
        .web-link a {
            color: #1a2980;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #ff9a00;
        }
        footer {
            background: #0c2461;
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #ff9a00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .footer-links h4 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
            transition: all 0.3s;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 1.8rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.4rem;
            }
            .sidebar-widget {
                padding: 1.5rem;
            }
            .internal-links .container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }
            .btn {
                padding: 10px 22px;
                font-size: 0.95rem;
            }
        }
