:root {
            --primary: #8A2BE2;
            --secondary: #FF69B4;
            --accent: #00CED1;
            --dark: #2C003E;
            --light: #F5F0FF;
            --text: #333333;
            --gray: #E0E0E0;
            --success: #32CD32;
            --warning: #FFA500;
            --radius: 12px;
            --shadow: 0 6px 15px rgba(138, 43, 226, 0.12);
            --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-color: #f9f7ff;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--light), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--radius);
            position: relative;
        }
        nav.desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-top: 2px solid var(--accent);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: var(--primary);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(44, 0, 62, 0.85), rgba(138, 43, 226, 0.85)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            color: white;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .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 2rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }
        .search-box input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(to right, var(--secondary), var(--accent));
            color: white;
            border: none;
            padding: 0 2.5rem;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: linear-gradient(to right, var(--accent), var(--secondary));
            letter-spacing: 1px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        h1, h2, h3 {
            color: var(--dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            padding-left: 1rem;
            border-left: 6px solid var(--secondary);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--accent);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, var(--light) 0%, rgba(255, 105, 180, 0.15) 100%);
            padding: 2rem;
            border-radius: var(--radius);
            border-left: 5px solid var(--primary);
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 8px;
            vertical-align: middle;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 5px solid var(--primary);
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 6px solid var(--accent);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .stat-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid var(--gray);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.2rem;
            color: var(--gray);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .active {
            color: var(--warning);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid var(--gray);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea:focus, .comment-form input:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.2);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(138, 43, 226, 0.5);
            letter-spacing: 1px;
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }
        .web-link a {
            color: var(--light);
            display: block;
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background: #1a0026;
            color: var(--light);
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.95rem;
            opacity: 0.8;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 1.8rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--radius);
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
