        * {
            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, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff9e6d;
            text-shadow: 0 0 8px rgba(255, 158, 109, 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;
        }
        .site-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #3a3a8c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6ee7ff, #b399ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ff9e6d, #ff6b9d);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background: rgba(110, 231, 255, 0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #6ee7ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaaacc;
        }
        .breadcrumb a { color: #aaaacc; }
        .breadcrumb a:hover { color: #6ee7ff; }
        .breadcrumb i { margin: 0 8px; }
        .main-content {
            flex: 1;
            padding: 30px 0 50px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a2a5a;
        }
        h1 {
            font-size: 2.8rem;
            color: #6ee7ff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.3);
            border-bottom: 3px solid #3a3a8c;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #b399ff;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ff9e6d;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff9e6d;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #6ee7ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(110, 231, 255, 0.1);
            border-left: 4px solid #6ee7ff;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background: rgba(179, 153, 255, 0.1);
            border: 1px solid #b399ff;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }
        .info-box h3 { color: #b399ff; margin-top: 0; }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li { margin-bottom: 8px; }
        .img-container {
            margin: 30px auto;
            text-align: center;
            position: relative;
        }
        .img-container img {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            border: 2px solid #3a3a8c;
        }
        .img-caption {
            font-style: italic;
            color: #aaaacc;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #2a2a5a;
        }
        .widget h3 {
            color: #b399ff;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3a3a8c;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #3a3a8c;
            border-radius: 8px 0 0 8px;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #3a3a8c, #6a6aff);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #6a6aff, #9d9dff);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            justify-content: center;
        }
        .stars i {
            transition: all 0.2s;
        }
        .stars i.active,
        .stars i:hover,
        .stars i:hover ~ i {
            color: #ffcc00;
        }
        .rating-widget input, .rating-widget textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #3a3a8c;
            border-radius: 8px;
            color: #e0e0ff;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .rating-widget button, .comment-form button {
            background: linear-gradient(90deg, #ff6b9d, #ff9e6d);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .rating-widget button:hover, .comment-form button:hover {
            background: linear-gradient(90deg, #ff9e6d, #ffcc6d);
            transform: translateY(-2px);
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #3a3a8c;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: block;
            padding: 8px 10px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: rgba(110, 231, 255, 0.15);
            padding-left: 15px;
        }
        .site-footer {
            background: rgba(10, 10, 25, 0.95);
            border-top: 2px solid #3a3a8c;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-col h4 {
            color: #b399ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-col li { margin-bottom: 10px; }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(179, 153, 255, 0.1);
            border-radius: 6px;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(179, 153, 255, 0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a5a;
            color: #aaaacc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 30, 0.98);
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .main-nav a {
                display: block;
                padding: 12px 15px;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            article { padding: 20px; }
        }
