        * {
            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: #ffffff;
            text-shadow: 0 0 8px #6ee7ff;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #3a1c71, #d76d77, #ffaf7b);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 175, 123, 0.4);
        }
        .site-header {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #3a1c71;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffaf7b, #d76d77, #3a1c71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #6ee7ff;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #6ee7ff;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 30px auto 40px;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #3a1c71;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 30px;
            border: none;
            border-radius: 0 50px 50px 0;
            background: linear-gradient(90deg, #d76d77, #ffaf7b);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ffaf7b, #d76d77);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        .main-article {
            background: rgba(30, 27, 65, 0.8);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #ffaf7b, #6ee7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #ffaf7b;
            padding-bottom: 10px;
            border-bottom: 2px dashed #3a1c71;
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #6ee7ff;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: #d76d77;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(110, 231, 255, 0.15);
            border-left: 5px solid #6ee7ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
        }
        .img-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        .related-links {
            margin: 30px 0;
            padding: 20px;
            background: rgba(58, 28, 113, 0.3);
            border-radius: 10px;
        }
        .related-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .related-links li {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 18px;
            border-radius: 30px;
            transition: background 0.3s;
        }
        .related-links li:hover {
            background: rgba(110, 231, 255, 0.2);
        }
        .sidebar {
            background: rgba(30, 27, 65, 0.8);
            padding: 25px;
            border-radius: 20px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffaf7b;
        }
        .popular-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #444;
        }
        .popular-list a {
            display: block;
            padding: 5px 0;
        }
        .user-interaction {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #3a1c71;
        }
        .rating-box, .comment-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-box textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #3a1c71;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .site-footer {
            background: rgba(15, 12, 41, 0.98);
            margin-top: auto;
            padding: 40px 0 20px;
            border-top: 2px solid #3a1c71;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffaf7b, #d76d77);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .friend-links-section {
            margin: 30px 0;
        }
        .friend-links-section h3 {
            margin-bottom: 20px;
        }
        friend-link {
            display: inline-block;
            background: rgba(58, 28, 113, 0.5);
            margin: 8px;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(110, 231, 255, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 12, 41, 0.98);
                padding: 20px;
                border-top: 2px solid #3a1c71;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .main-article {
                padding: 25px;
            }
            .related-links ul {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            .btn {
                padding: 10px 22px;
            }
            .search-form input, .search-form button {
                padding: 12px;
            }
        }
