        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.7;
            background-image: radial-gradient(circle at 20% 30%, rgba(60, 20, 100, 0.15) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(20, 60, 120, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #7aa2f7; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #bb9af7; text-shadow: 0 0 8px rgba(187, 154, 247, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background-color: rgba(15, 15, 26, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2a40;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area a.my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #bb9af7, #7aa2f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #c0c0e0;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #bb9af7, #7aa2f7);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #7aa2f7;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(20, 20, 35, 0.98);
            backdrop-filter: blur(10px);
            border-top: 1px solid #2a2a40;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a { color: #c0c0e0; font-size: 1.1rem; padding: 10px 0; border-bottom: 1px solid #2a2a40; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8888cc;
            background-color: rgba(25, 25, 40, 0.7);
            border-bottom: 1px solid #2a2a40;
        }
        .breadcrumb a { color: #8888cc; }
        .breadcrumb a:hover { color: #bb9af7; }
        main { flex: 1; padding: 40px 0; }
        article { max-width: 900px; margin: 0 auto; }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #e0af68, #bb9af7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #2a2a40;
        }
        h2 {
            font-size: 2rem;
            color: #e0af68;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3b3b5c;
        }
        h3 {
            font-size: 1.5rem;
            color: #7aa2f7;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.2rem;
            color: #9ece6a;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
            color: #d0d0f0;
        }
        .lead { font-size: 1.3rem; color: #bb9af7; font-weight: 500; }
        .highlight { background-color: rgba(187, 154, 247, 0.15); padding: 2px 6px; border-radius: 3px; }
        strong { color: #e0af68; }
        em { color: #9ece6a; font-style: italic; }
        .featured-image {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid #3b3b5c;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) { .content-grid { grid-template-columns: 1fr; } }
        .sidebar-module {
            background-color: rgba(30, 30, 50, 0.7);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #3b3b5c;
        }
        .module-title {
            font-size: 1.3rem;
            color: #e0af68;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #3b3b5c;
        }
        .search-box { position: relative; }
        .search-box input {
            width: 100%;
            padding: 12px 20px;
            background-color: rgba(20, 20, 35, 0.8);
            border: 1px solid #3b3b5c;
            border-radius: 30px;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: linear-gradient(90deg, #7aa2f7, #bb9af7);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: #0f0f1a;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-box button:hover { transform: scale(1.05); }
        .user-interaction { display: flex; flex-direction: column; gap: 25px; }
        .comment-form textarea, .rating-form select, .comment-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            background-color: rgba(20, 20, 35, 0.8);
            border: 1px solid #3b3b5c;
            border-radius: 8px;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .rating-stars { font-size: 1.5rem; color: #ffd700; margin-bottom: 15px; }
        .submit-btn {
            background: linear-gradient(90deg, #7aa2f7, #bb9af7);
            color: #0f0f1a;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(122, 162, 247, 0.4);
        }
        .related-links { list-style: none; }
        .related-links li { margin-bottom: 12px; padding-left: 20px; position: relative; }
        .related-links li::before {
            content: '➤';
            color: #7aa2f7;
            position: absolute;
            left: 0;
        }
        .update-info {
            text-align: right;
            font-size: 0.9rem;
            color: #8888cc;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #2a2a40;
        }
        .site-footer {
            background-color: #0a0a14;
            border-top: 1px solid #2a2a40;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #e0af68; margin-bottom: 20px; font-size: 1.3rem; }
        friend-link {
            display: block;
            background-color: rgba(30, 30, 50, 0.5);
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            border-left: 4px solid #7aa2f7;
            transition: transform 0.3s, background-color 0.3s;
        }
        friend-link:hover {
            transform: translateX(5px);
            background-color: rgba(42, 42, 64, 0.8);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #2a2a40;
            color: #8888cc;
            font-size: 0.9rem;
        }
