        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff9800;
            --accent: #4caf50;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul { list-style: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, #283593 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ffeb3b, #ff9800);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #ffeb3b; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            flex-direction: column;
            padding: 1rem;
            gap: 1rem;
            display: none;
            z-index: 999;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 1rem;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--gray); }
        .search-box {
            margin: 2rem 0;
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--secondary);
            outline: none;
        }
        .search-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            background-color: #f57c00;
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        .article h2 {
            color: #283593;
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ddd;
        }
        .article h3 {
            color: #5c6bc0;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article .highlight {
            background-color: #fffde7;
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .article emoji {
            font-size: 1.4em;
            margin-right: 8px;
            vertical-align: middle;
        }
        .article b, .article strong {
            color: #d84315;
            font-weight: 700;
        }
        .article-image {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            max-width: 800px;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .article-image figcaption {
            font-style: italic;
            color: var(--gray);
            padding: 10px;
            background: #f9f9f9;
            font-size: 0.95rem;
        }
        .sidebar {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar ul li {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar ul li:before {
            content: '▶';
            color: var(--secondary);
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .sidebar a {
            color: var(--dark);
            transition: var(--transition);
        }
        .sidebar a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .rating-section, .comments-section {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 2rem;
            box-shadow: var(--shadow);
        }
        .rating-title, .comments-title {
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--accent);
            outline: none;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background-color: #388e3c;
            transform: translateY(-3px);
        }
        .comments-list {
            margin-top: 2.5rem;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
        }
        .footer-links {
            background: #e3f2fd;
            padding: 2.5rem;
            margin-top: 3rem;
            border-radius: 15px 15px 0 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            background-color: #fff8e1;
        }
        .web-link a {
            color: #1565c0;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .footer {
            background-color: var(--dark);
            color: #bbb;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        .footer a {
            color: #bbdefb;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .article { padding: 1.5rem; }
            .article h1 { font-size: 2.2rem; }
            .article h2 { font-size: 1.8rem; }
            .sidebar { position: static; }
            .search-form { flex-direction: column; }
            .search-btn { justify-content: center; padding: 15px; }
        }
