        * {
            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;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            color: #FFD700;
        }
        .desktop-nav {
            display: flex;
            gap: 1.8rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
        }
        .breadcrumb a {
            color: #6a11cb;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
            text-align: center;
        }
        .search-container h2 {
            color: #6a11cb;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #6a11cb;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: translateX(2px);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
        }
        h1 {
            color: #6a11cb;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        .article-meta {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1rem;
        }
        h2 {
            color: #2575fc;
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #FFD700;
        }
        h3 {
            color: #6a11cb;
            font-size: 1.6rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: #333;
            font-size: 1.3rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #f0f7ff;
            border-left: 4px solid #2575fc;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #2575fc;
        }
        .content-link {
            color: #6a11cb;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted #6a11cb;
            transition: all 0.3s;
        }
        .content-link:hover {
            color: #2575fc;
            border-bottom: 2px solid #2575fc;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-top: 0.5rem;
            font-size: 1rem;
        }
        .interactive-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .interactive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .comment-form, .rating-form {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #6a11cb;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #FFD700;
            margin: 1rem 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(106, 17, 203, 0.3);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #6a11cb;
            margin-bottom: 1rem;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2575fc;
            margin: 0.5rem 0;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #FFD700;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article {
                padding: 1.5rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .interactive-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-form button {
                border-radius: 50px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .feature-list {
            list-style: none;
            margin: 2rem 0;
        }
        .feature-list li {
            padding: 0.8rem 0;
            padding-left: 2.5rem;
            position: relative;
        }
        .feature-list li::before {
            content: "✓";
            color: #6a11cb;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
