        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a14;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ff6b9d;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff99c2;
            text-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 2.5fr 1fr;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0c0c1a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #ff6b9d;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff6b9d, #4dccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .my-logo:hover {
            animation: logo-glow 1.5s ease-in-out infinite alternate;
        }
        @keyframes logo-glow {
            from { filter: drop-shadow(0 0 5px rgba(255, 107, 157, 0.7)); }
            to { filter: drop-shadow(0 0 15px rgba(77, 204, 255, 0.9)); }
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-desktop a {
            color: #b8b8e0;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 107, 157, 0.15);
            color: #ff6b9d;
        }
        .nav-mobile {
            display: none;
        }
        .hamburger {
            font-size: 1.8rem;
            color: #ff6b9d;
            cursor: pointer;
            background: none;
            border: none;
        }
        #mobile-menu {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 80%;
            max-width: 300px;
            background-color: #1a1a2e;
            padding: 2rem;
            border-left: 2px solid #ff6b9d;
            transition: right 0.4s ease;
            z-index: 999;
            height: calc(100vh - 70px);
            overflow-y: auto;
        }
        #mobile-menu.active {
            right: 0;
        }
        #mobile-menu ul {
            list-style: none;
        }
        #mobile-menu li {
            margin-bottom: 1.5rem;
        }
        #mobile-menu a {
            color: #e0e0ff;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
        }
        #mobile-menu a:hover {
            background-color: rgba(255, 107, 157, 0.2);
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 998;
        }
        .overlay.active {
            display: block;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .nav-mobile {
                display: block;
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a0a0d0;
        }
        .breadcrumb a {
            color: #a0a0d0;
        }
        .breadcrumb a:hover {
            color: #ff6b9d;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-module {
            background: rgba(26, 26, 46, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border: 1px solid #2a2a4a;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 1px solid #4dccff;
            border-radius: 6px 0 0 6px;
            background-color: #0f0f1f;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(77, 204, 255, 0.3);
        }
        .search-button {
            background: linear-gradient(90deg, #4dccff, #3a9bc9);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #3a9bc9, #2a7ba0);
        }
        .main-content {
            background: rgba(15, 15, 31, 0.85);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid #2a2a4a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed #ff6b9d;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
            color: #4dccff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a3a5a;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff9966;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #cc99ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 157, 0.1);
            border-left: 4px solid #ff6b9d;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed #ff6b9d;
        }
        .inline-link:hover {
            border-bottom: 1px solid #ff6b9d;
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 900px;
            border: 3px solid #4dccff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #a0a0d0;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #2a2a4a;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ff6b9d;
        }
        .rating-module, .comments-module {
            background: rgba(15, 15, 31, 0.9);
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #3a3a5a;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b8b8e0;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #3a3a5a;
            background-color: #0f0f1f;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #4dccff;
            box-shadow: 0 0 0 3px rgba(77, 204, 255, 0.2);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, #ff6b9d, #e0558a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: background 0.3s ease, transform 0.2s;
            align-self: flex-start;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #e0558a, #c9447a);
            transform: translateY(-2px);
        }
        .site-footer {
            background: #0c0c1a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #2a2a4a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-widget h3 {
            color: #4dccff;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #b8b8e0;
        }
        .footer-links a:hover {
            color: #ff6b9d;
            padding-left: 5px;
            transition: padding-left 0.3s;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background: rgba(255, 107, 157, 0.1);
            border: 1px dashed #ff6b9d;
            border-radius: 6px;
            margin: 1rem 0;
            text-align: center;
            color: #ffcc00;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2a4a;
            color: #8888aa;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #ffcc00; }
        .emoji { font-size: 1.2em; }
        .last-updated {
            color: #a0a0d0;
            font-style: italic;
            font-size: 0.95rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dotted #3a3a5a;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .main-content, .sidebar { padding: 1.5rem; }
            .header-container { flex-wrap: wrap; }
        }
