        * { 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: #e0e0e0;
            background: #0a0a14;
            background-image: linear-gradient(to bottom, #0a0a14 0%, #131322 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; color: #00e6ff; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-shadow: 0 0 15px rgba(0, 230, 255, 0.5); }
        h2 { font-size: clamp(2rem, 4vw, 2.8rem); border-bottom: 2px solid #ff00aa; padding-bottom: 0.5rem; margin-top: 3rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #ffaa00; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #00e6ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ff00aa; text-shadow: 0 0 8px rgba(255, 0, 170, 0.7); }
        strong { color: #ffaa00; font-weight: 700; }
        em { color: #aa80ff; font-style: italic; }
        .highlight { background-color: rgba(255, 0, 170, 0.15); padding: 0.2rem 0.5rem; border-radius: 4px; }
        .quote { border-left: 4px solid #00e6ff; padding-left: 1.5rem; margin: 2rem; font-style: italic; color: #b3ccff; }
        .note { background: rgba(0, 100, 255, 0.1); border: 1px solid #0066ff; padding: 1rem; border-radius: 8px; margin: 1.5rem 0; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media (min-width: 992px) {
            .main-grid { grid-template-columns: 3fr 1fr; }
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #222244;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00e6ff, #ff00aa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
        }
        .nav-desktop {
            display: none;
        }
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                gap: 2rem;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        .hamburger {
            display: block;
            background: none;
            border: none;
            color: #00e6ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (min-width: 768px) {
            .hamburger { display: none; }
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #131322;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #222244;
            text-align: center;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #888;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { color: #00e6ff; }
        .search-section {
            background: linear-gradient(135deg, #111122, #1a1a33);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid #333355;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            background: #0a0a14;
            border: 2px solid #00e6ff;
            border-radius: 50px 0 0 50px;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            box-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
        }
        .search-btn {
            background: linear-gradient(90deg, #00e6ff, #0088cc);
            color: #0a0a14;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ff00aa, #cc0088);
            color: white;
        }
        .article-content {
            background: rgba(15, 15, 26, 0.8);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid #252544;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #333355;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(15, 15, 26, 0.8);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid #252544;
            align-self: start;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            color: #ffaa00;
            border-bottom: 1px solid #444466;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .widget-links { list-style: none; }
        .widget-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .widget-links li:before {
            content: '▸';
            color: #00e6ff;
            position: absolute;
            left: 0;
        }
        .interactive-section {
            background: rgba(20, 20, 40, 0.9);
            padding: 2.5rem;
            border-radius: 16px;
            margin: 3rem 0;
            border: 1px solid #333355;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 600px;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-label { margin-bottom: 0.5rem; font-weight: 600; color: #aaa; }
        .form-input, .form-textarea {
            padding: 1rem;
            background: #0a0a14;
            border: 1px solid #444466;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #00e6ff;
            outline: none;
            box-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
        }
        .form-textarea { min-height: 150px; resize: vertical; }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444466;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star { transition: color 0.2s; }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffaa00; }
        .submit-btn {
            align-self: flex-start;
            background: linear-gradient(90deg, #ff00aa, #cc0088);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #00e6ff, #0088cc);
            box-shadow: 0 0 20px rgba(0, 230, 255, 0.5);
        }
        .footer-links-section {
            background: #090913;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid #222244;
            border-bottom: 1px solid #222244;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #111122;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #00e6ff;
            transition: transform 0.3s, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-left-color: #ff00aa;
        }
        .web-link a { font-weight: 600; display: block; }
        .site-footer {
            text-align: center;
            padding: 2.5rem 0;
            color: #888;
            font-size: 0.95rem;
            background: #0a0a14;
        }
        .footer-nav { margin-bottom: 1.5rem; }
        .footer-nav a {
            margin: 0 1rem;
            color: #aaa;
        }
        .copyright { margin-top: 1rem; }
        @media (max-width: 767px) {
            .container { padding: 0 15px; }
            .article-content, .sidebar, .interactive-section { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-btn { border-radius: 50px; padding: 1rem; }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 230, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 230, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 230, 255, 0); }
        }
        .pulse {
            animation: pulse 2s infinite;
            border-radius: 50px;
        }
