* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a0a1f;
            --secondary-purple: #4a1e5a;
            --accent-red: #c33c54;
            --accent-teal: #2a9d8f;
            --text-light: #f0e6f6;
            --text-muted: #b8a9c5;
            --card-bg: #2d1b3d;
            --border-color: #5a4a6a;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-purple));
            border-bottom: 2px solid var(--accent-red);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--accent-red), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(195, 60, 84, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a:not(:last-child)::after {
            content: '›';
            margin: 0 8px;
            color: var(--accent-teal);
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(ellipse at center, var(--secondary-purple) 0%, var(--primary-dark) 70%);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
        }
        .hero-image {
            max-width: 900px;
            margin: 2rem auto 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .hero-image:hover img {
            transform: scale(1.03);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding-bottom: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-red);
            color: #fff;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: var(--accent-teal);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-muted);
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .highlight {
            background-color: rgba(42, 157, 143, 0.15);
            border-left: 4px solid var(--accent-teal);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .interactive-features {
            margin-top: 3rem;
            padding: 2rem;
            background-color: rgba(26, 10, 31, 0.7);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .feature-box {
            margin-bottom: 2.5rem;
        }
        .feature-box h3 {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .feature-box input, .feature-box textarea, .feature-box select {
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: var(--card-bg);
            color: var(--text-light);
            font-size: 1rem;
        }
        .feature-box button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to right, var(--accent-red), var(--secondary-purple));
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            align-self: flex-start;
        }
        .feature-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(195, 60, 84, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            border-left: 3px solid transparent;
            transition: var(--transition);
        }
        .related-links li:hover {
            border-left-color: var(--accent-teal);
            padding-left: 1.5rem;
        }
        .quick-facts ul {
            list-style: none;
        }
        .quick-facts li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--border-color);
            display: flex;
            justify-content: space-between;
        }
        .quick-facts li:last-child {
            border-bottom: none;
        }
        .fact-value {
            font-weight: bold;
            color: var(--accent-teal);
        }
        .long-tail-links {
            background-color: var(--secondary-purple);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid var(--accent-red);
            border-bottom: 2px solid var(--accent-red);
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem;
            padding: 0.6rem 1.2rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(195, 60, 84, 0.3);
            transform: translateY(-5px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--card-bg);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid var(--border-color);
                box-shadow: var(--shadow);
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .web-link {
                margin: 0.5rem;
                padding: 0.5rem 1rem;
            }
        }
