:root {
            --primary: #ff00ff;
            --secondary: #00ffff;
            --accent: #ffff00;
            --dark: #1a0a2a;
            --light: #f5f0ff;
            --gray: #2d1b40;
            --transition: all 0.3s ease;
            --shadow: 0 8px 20px rgba(255, 0, 255, 0.2);
            --border-radius: 12px;
        }
        * {
            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(--light);
            background: linear-gradient(135deg, var(--dark) 0%, #0d0419 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
            text-shadow: 0 0 8px var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(26, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            border-color: var(--secondary);
            background: rgba(0, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #b19cd9;
        }
        .breadcrumb a {
            color: #b19cd9;
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(45, 27, 64, 0.7);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px dashed var(--primary);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: #c0a8e9;
            font-size: 0.95rem;
        }
        .meta i {
            color: var(--secondary);
        }
        h2, h3, h4 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
        }
        h4 {
            font-size: 1.4rem;
            color: #d9b8ff;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #e6d9ff;
            padding: 1.5rem;
            background: rgba(255, 0, 255, 0.1);
            border-radius: 10px;
            border-left: 4px solid var(--primary);
        }
        .highlight {
            background: rgba(255, 255, 0, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
            color: var(--accent);
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            border: 3px solid var(--primary);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
            transition: var(--transition);
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #b8a6d9;
            font-size: 0.95rem;
        }
        .link-list {
            background: rgba(26, 10, 42, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid var(--gray);
        }
        .link-list h4 {
            margin-top: 0;
        }
        .link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .link-list li {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background: rgba(0, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(45, 27, 64, 0.7);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            border: 1px solid var(--gray);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--primary);
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: var(--dark);
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 30px 30px 0;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #444;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            padding: 0 0.2rem;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
            text-shadow: 0 0 10px gold;
        }
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(90deg, var(--secondary), #00ccaa);
            color: var(--dark);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 1rem;
            transition: var(--transition);
        }
        .rating-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
        }
        .comments-section {
            margin-top: 3rem;
            background: rgba(45, 27, 64, 0.7);
            border-radius: var(--border-radius);
            padding: 2.5rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid var(--gray);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1.2rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }
        .comment-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--gray);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
        }
        .comment-form button {
            padding: 0.9rem 2.5rem;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent);
            transform: scale(1.05);
        }
        .site-footer {
            background: rgba(13, 4, 25, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        friend-links {
            display: block;
            background: rgba(255, 0, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }
        friend-links a {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray);
            color: #b19cd9;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(26, 10, 42, 0.98);
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .main-content {
                gap: 2rem;
            }
            article, .widget, .comments-section {
                padding: 1.5rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
        }
