        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a0a3e;
            --secondary: #ff3b7d;
            --accent: #00d8ff;
            --dark: #0d0521;
            --light: #f8f7fc;
            --text: #e6e6e6;
            --gray: #8a8a9e;
            --success: #00ff9d;
            --warning: #ffc107;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --container-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: white;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 12px rgba(0, 216, 255, 0.2);
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            border-left: 5px solid var(--secondary);
            padding-left: 1.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--accent);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
        }
        .btn {
            display: inline-block;
            padding: 0.9rem 2.2rem;
            background: linear-gradient(90deg, var(--secondary), #ff6b9d);
            color: white;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(255, 59, 125, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 59, 125, 0.5);
        }
        .highlight {
            color: var(--success);
            font-weight: 700;
        }
        .note {
            background: rgba(0, 216, 255, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .warning {
            background: rgba(255, 193, 7, 0.1);
            border-left: 4px solid var(--warning);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        header {
            background: rgba(13, 5, 33, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00d8ff, #ff3b7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        .nav-desktop a {
            color: var(--text);
            font-weight: 600;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--dark);
            padding: 5rem 2rem;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            color: white;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.2rem;
        }
        .close-menu {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            font-size: 1.8rem;
            color: var(--accent);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1.5rem 0;
            background: rgba(255, 255, 255, 0.03);
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.8rem;
        }
        .breadcrumb li {
            color: var(--gray);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.8rem;
            color: var(--accent);
        }
        .breadcrumb a:hover {
            color: var(--success);
        }
        .hero {
            padding: 4rem 0;
            text-align: center;
            background: radial-gradient(circle at top center, rgba(26, 10, 62, 0.9) 0%, rgba(13, 5, 33, 0.95) 100%);
            border-bottom: 1px solid rgba(0, 216, 255, 0.2);
        }
        .hero h1 {
            margin-bottom: 1.5rem;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: var(--light);
        }
        .search-container {
            max-width: 700px;
            margin: 3rem auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 216, 255, 0.2);
        }
        .search-form {
            display: flex;
            gap: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: 2px solid rgba(0, 216, 255, 0.3);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(0, 216, 255, 0.4);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 4rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(13, 5, 33, 0.7);
            padding: 3rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow);
        }
        .article-content img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            border: 2px solid rgba(0, 216, 255, 0.2);
            transition: transform 0.5s ease;
        }
        .article-content img:hover {
            transform: scale(1.01);
        }
        .content-block {
            margin-bottom: 3rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .widget {
            background: rgba(13, 5, 33, 0.7);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .widget h3 {
            margin-top: 0;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--warning);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: gold;
            transform: scale(1.2);
        }
        .rating-form {
            display: none;
            margin-top: 1.5rem;
        }
        .rating-form.active {
            display: block;
        }
        .comment-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .comment-form {
            background: rgba(13, 5, 33, 0.7);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent);
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.4);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 10px rgba(0, 216, 255, 0.3);
        }
        .footer-links {
            background: rgba(13, 5, 33, 0.9);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0, 216, 255, 0.2);
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.2rem;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(0, 216, 255, 0.1);
            border-color: var(--accent);
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark);
            padding: 2.5rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .copyright {
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .article-content {
                padding: 2rem;
            }
            .hero {
                padding: 3rem 0;
            }
            .search-form {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            .web-link {
                display: block;
                margin: 0.8rem 0;
                text-align: center;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
