:root {
            --primary: #ff66a3;
            --secondary: #6a5acd;
            --dark: #2d2b55;
            --light: #f9f4ff;
            --accent: #00cc99;
            --gray: #e2e8f0;
            --text: #333344;
            --text-light: #666677;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(45, 43, 85, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), #ff99cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            font-size: 2.5rem;
            color: var(--accent);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        nav.desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            flex-direction: column;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: block;
        }
        .mobile-nav a:hover {
            background-color: var(--secondary);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--gray);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        h1 {
            color: var(--dark);
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-top: 1rem;
            border-top: 2px dashed var(--accent);
        }
        h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--dark);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--secondary);
            font-weight: 600;
            background: linear-gradient(90deg, #f0f4ff, #ffffff);
            padding: 1.5rem;
            border-left: 5px solid var(--accent);
            border-radius: 0 10px 10px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ffcc00;
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: #cc9900;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b, strong {
            color: var(--primary);
            font-weight: 700;
        }
        img.featured {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        img.featured:hover {
            transform: scale(1.01);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .link-box {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-item {
            background: linear-gradient(145deg, #f0f4ff, #ffffff);
            border: 1px solid var(--gray);
            border-radius: 10px;
            padding: 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .link-item:hover {
            box-shadow: 0 8px 20px rgba(106, 90, 205, 0.15);
            border-color: var(--secondary);
            transform: translateY(-5px);
        }
        .link-item i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--dark);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem 1rem;
            border: 1px solid var(--gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 102, 163, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .stars i {
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .stars i:hover {
            color: #ff9900;
        }
        footer {
            background-color: 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: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ccccdd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--accent);
        }
        friend-link a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaaacc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 1.8rem; }
            .header-container {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-layout {
                gap: 1.5rem;
            }
            .link-box {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar-widget {
            animation: fadeInUp 0.6s ease-out;
        }
        .last-updated {
            color: var(--text-light);
            font-style: italic;
            font-size: 0.95rem;
            text-align: right;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--gray);
        }
