        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #FF6B8B;
            --secondary: #3CD3AD;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            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: bold;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
            color: var(--secondary);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
        }
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--dark);
            padding: 2rem;
            box-shadow: var(--shadow);
            z-index: 999;
            flex-direction: column;
            gap: 1.5rem;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            display: flex;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .search-container {
            max-width: 500px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background: var(--secondary);
        }
        .breadcrumb {
            background: white;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--gray);
        }
        main {
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--primary);
            padding-left: 1.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--gray);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark);
            background: rgba(255, 214, 102, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,214,102,0.3) 0%, rgba(255,214,102,0) 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .info-box {
            background: rgba(60, 211, 173, 0.1);
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .warning-box {
            background: rgba(255, 107, 139, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .featured-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        aside {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(248, 249, 250, 0.8);
            border-radius: 8px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background: rgba(255, 107, 139, 0.1);
            transform: translateX(5px);
        }
        .link-list a {
            display: block;
            font-weight: 500;
        }
        .interaction-section {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,139,0.2);
        }
        .submit-button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255,107,139,0.4);
            text-decoration: none;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            border-radius: var(--radius);
            overflow: hidden;
        }
        th {
            background: var(--dark);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #eee;
        }
        tr:nth-child(even) {
            background: rgba(248, 249, 250, 0.5);
        }
        tr:hover {
            background: rgba(255, 214, 102, 0.1);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .friend-link {
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .friend-link:hover {
            background: var(--primary);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        .last-updated {
            background: var(--accent);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-container {
                padding: 0 15px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article, .interaction-section, aside {
                padding: 1.5rem;
            }
            .content-wrapper {
                gap: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
                border-radius: var(--radius);
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
            }
            .search-button {
                padding: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .bold { font-weight: 700; color: var(--dark); }
        .keyword { background: rgba(60, 211, 173, 0.2); padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; }
