* { 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.8;
            color: #333;
            background: #f8f9fa;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #0066cc; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #e63946; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; }
        header {
            background: linear-gradient(135deg, #0a1f3d 0%, #1a3a6c 100%);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #e63946;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            color: #ffd700;
            text-shadow: 3px 3px 0 #e63946, 6px 6px 5px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
            text-decoration: none;
        }
        .logo a:hover { text-shadow: 3px 3px 0 #ffd700, 6px 6px 8px rgba(230,57,70,0.8); }
        nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #fff;
            font-weight: bold;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-decoration: none;
        }
        .nav-links a:hover, .nav-links a.active {
            background: #e63946;
            color: #ffd700;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .search-box {
            margin: 1.5rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            background: #fff;
        }
        .search-button {
            background: #e63946;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-button:hover { background: #c1121f; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a { color: #0066cc; }
        .breadcrumb span { color: #999; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        h1 {
            color: #0a1f3d;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-left: 6px solid #e63946;
            padding-left: 1rem;
            line-height: 1.2;
        }
        h2 {
            color: #1a3a6c;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ddd;
        }
        h3 {
            color: #e63946;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: bold;
            color: #1a3a6c;
            background: #f0f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #0066cc;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd70030 0%, #ffd70015 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #ffd700;
            margin: 2rem 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-wrapper img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 3px solid #ddd;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget-title {
            color: #0a1f3d;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e63946;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dotted #eee;
        }
        .sidebar-links a {
            display: block;
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 6px;
            font-weight: 500;
        }
        .sidebar-links a:hover {
            background: #e63946;
            color: white;
            transform: translateX(5px);
            transition: all 0.3s;
        }
        .interaction-section {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #1a3a6c;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(to right, #0066cc, #1a3a6c);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(26, 58, 108, 0.3);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2.5rem;
            background: #0a1f3d;
            border-radius: 12px;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 6px;
            border-left: 3px solid #e63946;
        }
        .web-link a {
            color: #ffd700;
            font-weight: 500;
            display: block;
        }
        .web-link:hover { background: rgba(230,57,70,0.2); }
        footer {
            text-align: center;
            padding: 2rem;
            background: #1a1a1a;
            color: #ccc;
            border-top: 5px solid #e63946;
            margin-top: 2rem;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 1rem;
            color: #999;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-links.active { display: flex; }
            .hamburger { display: block; margin-top: 1rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content, .interaction-section { padding: 1.5rem; }
            .footer-links { grid-template-columns: 1fr; }
        }
