        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B8B;
            --secondary: #3A86FF;
            --accent: #8338EC;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --success: #38B000;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark), #16213E);
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: var(--primary);
            font-size: 2rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--primary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.05);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb span {
            color: var(--primary);
            font-weight: 600;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--primary);
            padding-left: 1.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--accent);
            margin: 1.5rem 0 0.8rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 2rem;
            font-weight: 500;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,107,139,0.15) 0%, rgba(58,134,255,0.15) 100%);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .interactive-box {
            background: #f8f9ff;
            border: 2px dashed var(--secondary);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(131, 56, 236, 0.3);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: gold;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            resize: vertical;
            margin-bottom: 1rem;
            font-family: inherit;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #ff5577;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-links h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
        }
        friend-link a {
            color: #fff;
            font-weight: 600;
        }
        friend-link a:hover {
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .nav-desktop {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .main-container, .breadcrumb {
                padding: 0 1rem;
            }
            article {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2rem;
                padding-left: 1rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
