* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f9f9f9;
            background-image: linear-gradient(to bottom, #f0f4f8 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 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-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(90deg, #ffeb3b, #ff9800);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e8eaf6;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb span {
            color: #78909c;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .article-body h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #283593;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e8eaf6;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: #3949ab;
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .highlight {
            background: #fff9c4;
            padding: 1.5rem;
            border-left: 4px solid #ffb300;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .internal-link {
            color: #0d47a1;
            font-weight: 600;
            border-bottom: 1px dotted #0d47a1;
        }
        .internal-link:hover {
            border-bottom-style: solid;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #1a237e;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #c5cae9;
            border-radius: 6px;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(135deg, #0d1b6e, #283593);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars i {
            color: #ffb300;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background: #1a237e;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-links h3 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            color: #ffeb3b;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.08);
            padding: 1rem;
            border-radius: 6px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .web-link a {
            color: #e3f2fd;
            font-weight: 500;
            display: block;
        }
        .site-footer {
            background: #0d1b6e;
            color: #bdbdbd;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }
        .site-footer a {
            color: #90caf9;
        }
        .copyright {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #3949ab;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-desktop {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #283593;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-desktop.active {
                display: flex;
            }
            .article-body {
                padding: 1.5rem;
            }
            .article-body h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.7rem;
            }
            .sidebar {
                position: static;
            }
        }
