:root {
            --primary: #4a1e91;
            --secondary: #ff9800;
            --accent: #00c853;
            --light: #f5f5f5;
            --dark: #222222;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #fefefe;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #2d0d5e 100%);
            color: white;
            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;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(to right, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2.5rem;
            overflow: hidden;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 2rem 0 1rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            background-color: rgba(74, 30, 145, 0.05);
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(255, 152, 0, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: var(--primary);
        }
        blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-light);
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), #6a3bb5);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            margin: 1.5rem 0;
            box-shadow: 0 6px 15px rgba(74, 30, 145, 0.3);
            transition: var(--transition);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(74, 30, 145, 0.4);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #3a1873;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #e68900;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #00b248;
        }
        .longtail-links {
            background-color: var(--light);
            padding: 2.5rem 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1rem 1.5rem;
            border-radius: var(--radius);
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 3rem 0 1.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #888;
            border-top: 1px solid #444;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                position: relative;
            }
            .links-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .lead {
                padding: 1.2rem;
                font-size: 1.1rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 1px;
            background-color: #eee;
            margin: 2rem 0;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .my-2 { margin-top: 2rem; margin-bottom: 2rem; }
