* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }
        .logo:hover {
            color: #ffd700;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 10px;
            border: none;
            border-radius: 5px;
            min-width: 250px;
        }
        .search-btn {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #e55a2b;
        }
        nav {
            background: #2c3e50;
            margin-top: 1rem;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background: #34495e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #2c3e50;
            list-style: none;
        }
        .mobile-nav.active {
            display: block;
        }
        .breadcrumb {
            background: #ecf0f1;
            padding: 10px 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #7f8c8d;
        }
        main {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        h2 {
            color: #34495e;
            font-size: 2rem;
            margin: 2rem 0 1rem;
            border-bottom: 2px solid #3498db;
            padding-bottom: 0.5rem;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 1rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #dee2e6;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #e74c3c;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .rating-system {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .comment-section {
            margin: 3rem 0;
        }
        .comment-form {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .btn:hover {
            background: #2980b9;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 2rem 0;
        }
        .web-link {
            background: #34495e;
            color: white;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: #2c3e50;
        }
        .web-link a {
            color: white;
            text-decoration: none;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .copyright {
            border-top: 1px solid #34495e;
            padding-top: 1rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                min-width: 200px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            main {
                padding: 1rem;
            }
            .featured-image {
                height: 250px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
