        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #1a237e, #283593);
            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;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffeb3b;
            text-decoration: none;
            font-family: 'Comic Sans MS', cursive, sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .logo a:hover {
            transform: scale(1.05);
            color: #fff;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: #ffeb3b;
            color: #1a237e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #283593;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            text-decoration: none;
            border-bottom: 1px solid #3949ab;
            transition: background 0.3s;
        }
        .nav-mobile a:hover { background: #3949ab; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8eaf6;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #666; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
            flex: 1;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ddd;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            font-size: 2rem;
            color: #283593;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffeb3b;
        }
        h3 {
            font-size: 1.5rem;
            color: #3949ab;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #e3f2fd 0%, #fce4ec 100%);
            padding: 1.5rem;
            border-left: 5px solid #ff4081;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
            font-size: 1.1rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image:hover { transform: scale(1.01); }
        .interactive-link {
            color: #d81b60;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted #d81b60;
            transition: all 0.3s;
        }
        .interactive-link:hover {
            color: #1a237e;
            border-bottom: 2px solid #1a237e;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a237e;
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { font-weight: 600; margin-bottom: 0.3rem; color: #555; }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #bbb;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3949ab;
            box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #ff5722, #ff9800);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 87, 34, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
            justify-content: center;
        }
        .stars i:hover { transform: scale(1.2); }
        .footer-links {
            background: #1a237e;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(255, 255, 255, 0.2); }
        .web-link a {
            color: #ffeb3b;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover { text-decoration: underline; }
        .site-footer {
            background: #0d1440;
            color: #b0b0d0;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-logo { font-size: 1.8rem; color: #ffeb3b; margin-bottom: 1rem; }
        .copyright { margin-top: 1rem; color: #888; }
