        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 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 a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #FFD700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Comic Sans MS', cursive;
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
            color: #fff;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #e9f2fa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #2575fc;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover, nav a.active {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .search-bar {
            margin: 2rem auto;
            max-width: 800px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(37, 117, 252, 0.2);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(90deg, #FF416C, #FF4B2B);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #FF4B2B, #FF416C);
            letter-spacing: 1px;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 8px solid #6a11cb;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #2575fc;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 3px dashed #e4edf5;
        }
        h3 {
            font-size: 1.6rem;
            color: #FF416C;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #a1ffce, #faffd1);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 5px solid #00b09b;
            margin: 2rem 0;
            font-weight: 600;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f8ff);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 8px 8px 20px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #6a11cb;
            line-height: 1;
        }
        .image-container {
            text-align: center;
            margin: 3rem 0;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            transition: transform 0.5s;
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .interactive-section {
            background: #f8fbff;
            border-radius: 20px;
            padding: 2rem;
            margin-top: 3rem;
            border: 2px solid #e1f0ff;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 600px;
            margin: 2rem auto;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #FFD700;
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #cce7ff;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6a11cb;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00b09b, #96c93d);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 176, 155, 0.3);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 5px solid #2575fc;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: #f0f8ff;
        }
        .web-link a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #6a11cb;
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(90deg, #2c3e50, #4a6491);
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: #FFD700;
            border-bottom: 2px solid #3498db;
            padding-bottom: 8px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #3498db;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #5d6d7e;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .header-container { flex-direction: column; gap: 1rem; }
            nav ul { flex-wrap: wrap; justify-content: center; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: rgba(37, 117, 252, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                border-radius: 0 0 15px 15px;
            }
            nav ul.show { display: flex; }
            article { padding: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-input, .search-button { width: 100%; border-radius: 0; }
            .logo a { font-size: 1.8rem; }
        }
