        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff00ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Impact', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }
        .my-logo a:hover { text-shadow: 0 0 15px rgba(255, 0, 255, 0.7); }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #00ffff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background-color: rgba(0, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #00ffff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(26, 26, 46, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #ff00ff;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #f0f0f0;
            padding: 1rem;
            border-bottom: 1px solid #333;
            text-decoration: none;
        }
        .nav-mobile a:hover { background-color: rgba(255, 0, 255, 0.1); }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00ffff;
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(30, 30, 50, 0.7);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(0, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #00ffff;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff00ff;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff88ff;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #88ffff;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccccff;
            font-weight: 300;
            border-left: 4px solid #ff00ff;
            padding-left: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 0, 255, 0.15);
            border-left: 5px solid #00ffff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .info-box {
            background: rgba(0, 40, 60, 0.5);
            border: 1px solid #00aaff;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        a.content-link {
            color: #ff88ff;
            text-decoration: underline dotted;
            font-weight: 600;
        }
        a.content-link:hover {
            color: #00ffff;
            text-decoration: underline solid;
        }
        em { color: #ffff88; }
        strong { color: #ffaa00; }
        .article-img {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #00ffff;
            margin: 2.5rem auto;
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
            transition: transform 0.4s ease;
        }
        .article-img:hover { transform: scale(1.02); }
        aside {
            background: rgba(30, 30, 50, 0.7);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 0, 255, 0.2);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #00ffff;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ff00ff;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: rgba(20, 20, 40, 0.8);
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
        }
        button {
            background: linear-gradient(45deg, #ff00ff, #00aaff);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(45deg, #ff33ff, #00ccff);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 0, 255, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 1.8rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffaa00;
        }
        footer {
            background: rgba(10, 10, 20, 0.95);
            border-top: 2px solid #00ffff;
            margin-top: 4rem;
            padding: 3rem 2rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #88ffff;
            text-decoration: none;
            padding: 0.5rem 0;
            display: inline-block;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }
        friend-link a:hover {
            color: #ff88ff;
            border-bottom: 1px solid #ff88ff;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { padding: 1rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .container { padding: 0 1rem; }
            article, aside { padding: 2rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside { animation: fadeInUp 0.8s ease-out; }
