:root {
            --primary-funky: #9b30ff;
            --secondary-funky: #ff00cc;
            --dark-bg: #0a0a1a;
            --content-bg: #151530;
            --text-light: #f0e6ff;
            --text-muted: #b8a9d9;
            --accent-yellow: #ffed4e;
            --spacing-unit: 1rem;
            --border-radius: 12px;
            --transition-speed: 0.3s;
        }
        * {
            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.8;
            color: var(--text-light);
            background-color: var(--dark-bg);
            background-image: radial-gradient(circle at 20% 30%, rgba(155, 48, 255, 0.1) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(255, 0, 204, 0.1) 0%, transparent 20%);
            padding-bottom: 4rem;
        }
        a {
            color: var(--secondary-funky);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--accent-yellow);
            text-shadow: 0 0 8px rgba(255, 237, 78, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-funky);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--primary-funky), var(--secondary-funky));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .my-logo a {
            background: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
            position: relative;
        }
        .main-nav a:hover {
            background-color: rgba(155, 48, 255, 0.2);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--secondary-funky);
            transition: width var(--transition-speed);
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: var(--primary-funky);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--content-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(155, 48, 255, 0.3);
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 2px dashed var(--primary-funky);
            padding-bottom: 2rem;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary-funky), var(--accent-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--secondary-funky);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 0, 204, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-yellow);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-light);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(255, 237, 78, 0.1);
            border-left: 4px solid var(--accent-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .funky-quote {
            font-style: italic;
            font-size: 1.4rem;
            color: var(--primary-funky);
            text-align: center;
            padding: 2rem;
            border-top: 2px solid var(--primary-funky);
            border-bottom: 2px solid var(--primary-funky);
            margin: 3rem 0;
            position: relative;
        }
        .funky-quote::before, .funky-quote::after {
            content: '“';
            font-size: 4rem;
            color: var(--secondary-funky);
            position: absolute;
            top: -1rem;
            left: 1rem;
            opacity: 0.5;
        }
        .funky-quote::after {
            content: '”';
            left: auto;
            right: 1rem;
            top: auto;
            bottom: -2rem;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 3px solid var(--primary-funky);
            box-shadow: 0 10px 25px rgba(155, 48, 255, 0.4);
            transition: transform var(--transition-speed);
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            padding: 0.8rem;
            background-color: rgba(10, 10, 26, 0.7);
        }
        aside {
            background-color: var(--content-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            align-self: start;
            border: 1px solid rgba(255, 0, 204, 0.3);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--accent-yellow);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 237, 78, 0.3);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-funky);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(10, 10, 26, 0.8);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-funky);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background-color: var(--secondary-funky);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--text-muted);
        }
        .stars a {
            color: inherit;
            transition: color var(--transition-speed), transform var(--transition-speed);
        }
        .stars a:hover {
            color: var(--accent-yellow);
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: var(--border-radius);
            border: 2px solid var(--primary-funky);
            background-color: rgba(10, 10, 26, 0.8);
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: linear-gradient(90deg, var(--primary-funky), var(--secondary-funky));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: opacity var(--transition-speed);
        }
        .comment-form button:hover {
            opacity: 0.9;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        footer {
            margin-top: 4rem;
            background-color: rgba(10, 10, 26, 0.95);
            border-top: 2px solid var(--primary-funky);
            padding: 3rem 0;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: rgba(21, 21, 48, 0.7);
            border-radius: var(--border-radius);
            width: 100%;
        }
        friend-link a {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background-color: rgba(155, 48, 255, 0.2);
            transition: all var(--transition-speed);
        }
        friend-link a:hover {
            background-color: var(--primary-funky);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            width: 100%;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--dark-bg);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid var(--primary-funky);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
        }
