:root {
            --primary-purple: #6a0dad;
            --secondary-pink: #ff4e8c;
            --accent-teal: #2dd4bf;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f7fc;
            --text-dark: #2d2d44;
            --text-light: #f1f0f9;
            --shadow: 0 4px 12px rgba(106, 13, 173, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-purple) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, var(--accent-teal), var(--secondary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .main-nav a:hover, .main-nav a:focus {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-teal);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--primary-purple);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(106, 13, 173, 0.75)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 5rem 1rem;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--primary-purple);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid var(--secondary-pink); padding-left: 15px; }
        h3 { font-size: 1.8rem; color: var(--dark-bg); }
        h4 { font-size: 1.4rem; color: #555; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-dark);
            background: #f0f4ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent-teal);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffed4f80 0%, #ffed4f80 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        emoji {
            font-style: normal;
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.005);
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent-teal);
            padding-left: 1.5rem;
            margin: 2.5rem;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            background: #f8f7fc;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list a {
            color: var(--primary-purple);
            font-weight: 600;
            display: inline-block;
            margin: 0.5rem 1rem 0.5rem 0;
        }
        .link-list a:hover {
            color: var(--secondary-pink);
            text-decoration: underline;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent-teal);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-purple);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--secondary-pink);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span:hover, .stars span:hover ~ span {
            color: #ffac33;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, var(--primary-purple), var(--secondary-pink));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        friend-link a:hover {
            color: var(--secondary-pink);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .last-updated {
            background: var(--primary-purple);
            color: white;
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--dark-bg);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                transform: translateY(0);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .mobile-toggle {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article {
                padding: 1.5rem;
            }
        }
