        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #ff6ec7;
            text-shadow: 0 0 8px rgba(255, 110, 199, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .site-header {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff6ec7;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #6ee7ff, #ff6ec7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid transparent;
        }
        .nav-desktop a:hover {
            border-color: #6ee7ff;
            background: rgba(110, 231, 255, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #6ee7ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background: rgba(36, 36, 62, 0.98);
            margin-top: 1rem;
            border-radius: 10px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease-out;
        }
        .nav-mobile.active {
            display: flex;
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }
        .nav-mobile a {
            padding: 1rem 2rem;
            border-bottom: 1px solid #444;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(48, 43, 99, 0.6);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            margin: 0 0.3rem;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 0.3rem;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 27, 75, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #3a3560;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #6ee7ff, #ff6ec7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            border-left: 5px solid #ff6ec7;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: #6ee7ff;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #3a3560;
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 0.8rem;
            color: #c9a5ff;
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.6rem;
            color: #ffb86c;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #d0d0ff;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(58, 53, 96, 0.4);
            border-radius: 10px;
            border-left: 4px solid #6ee7ff;
        }
        .highlight {
            background: rgba(255, 110, 199, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ff6ec7;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        figcaption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(36, 36, 62, 0.9);
            border-radius: 15px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #ffb86c;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        button, .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #6ee7ff, #3a8dff);
            border: none;
            border-radius: 8px;
            color: #0f0c29;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #3a8dff, #6ee7ff);
            box-shadow: 0 0 15px rgba(58, 141, 255, 0.7);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin: 1rem 0;
        }
        .stars .fas {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .fas:hover,
        .stars .fas:hover ~ .fas {
            color: #ffb86c !important;
        }
        site-footer {
            background: rgba(15, 12, 41, 0.98);
            border-top: 2px solid #302b63;
            padding: 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        friend-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(58, 53, 96, 0.6);
            border-radius: 6px;
            border: 1px solid #444;
        }
        .copyright {
            text-align: center;
            width: 100%;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #ffb86c;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #3a3560;
        }
        .tag {
            display: inline-block;
            background: rgba(110, 231, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            margin: 0.2rem;
        }
