:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff4d94;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(to right, #ffd89b, #ff4d94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            border-bottom-color: var(--accent);
            color: #ffd89b;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #e0e0ff;
        }
        .breadcrumb span {
            color: #ccc;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(37, 117, 252, 0.85), rgba(106, 17, 203, 0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        .stat-box {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 12px;
            min-width: 150px;
        }
        .stat-box i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        .content-area h2 {
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin: 40px 0 20px;
            font-size: 2.2rem;
        }
        .content-area h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }
        .content-area h4 {
            color: var(--dark);
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        .content-area p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content-area p.lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark);
            background: #f0f5ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background: linear-gradient(120deg, #ffd89b50, #ff4d9450);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding-left: 25px;
            margin: 30px 0;
            color: var(--gray);
            font-size: 1.2rem;
            background: #f9f9f9;
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            background: #f8f9ff;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .link-list h4 {
            margin-top: 0;
            color: var(--primary);
        }
        .link-list ul {
            columns: 2;
            list-style-position: inside;
        }
        .link-list li {
            margin-bottom: 10px;
            break-inside: avoid;
        }
        @media (max-width: 768px) {
            .link-list ul {
                columns: 1;
            }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            margin-top: 15px;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: #ff2d7a;
            transform: translateY(-3px);
        }
        .update-time {
            background: #fff8e1;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px dashed #ffb300;
            margin-top: 30px;
        }
        .update-time i {
            color: #ffb300;
            margin-right: 10px;
        }
        .comments-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }
        .comment-form textarea {
            width: 100%;
            padding: 18px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 150px;
        }
        .comment-form input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        .comment-form button:hover {
            background: #5a0cb9;
        }
        .comment-list {
            margin-top: 40px;
        }
        .comment {
            background: #f9f9ff;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 5px solid var(--secondary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        footer {
            background: linear-gradient(to right, var(--dark), #343a40);
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ffd89b, #ff4d94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-links h4 {
            color: #ffd89b;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }
        friend-link a {
            color: #ffd89b;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 500px;
                padding-top: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .content-area {
                padding: 25px;
            }
            .content-area h2 {
                font-size: 1.9rem;
            }
            .content-area h3 {
                font-size: 1.6rem;
            }
            .stats {
                gap: 20px;
            }
            .stat-box {
                min-width: 120px;
                padding: 15px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-area > * {
            animation: fadeIn 0.6s ease forwards;
        }
