        * {
            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, #0a0a1a 0%, #1a1a2e 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: #ff6ec7;
            text-shadow: 0 0 8px rgba(255, 110, 199, 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, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a2a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #6ee7ff, #ff6ec7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            padding: 10px 0;
            background: rgba(42, 42, 74, 0.6);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaaaff;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(110, 231, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 26, 0.98);
                padding: 20px;
                border-top: 1px solid #2a2a4a;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 12px;
                border-bottom: 1px solid #333;
            }
        }
        .hero {
            text-align: center;
            padding: 40px 20px;
            background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a1a 100%);
            border-bottom: 3px solid #3a3a6a;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff6ec7, #6ee7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #3a3a6a;
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #6ee7ff, #3a8bff);
            border: none;
            border-radius: 0 30px 30px 0;
            color: #0a0a1a;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #3a8bff, #6ee7ff);
            transform: translateY(-2px);
        }
        .main-content {
            flex: 1;
            padding: 20px 0 40px;
        }
        .article-body {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            border: 1px solid #3a3a6a;
        }
        h1, h2, h3, h4 {
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
            color: #e0e0ff;
        }
        h1 {
            font-size: 3rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff6ec7;
            border-left: 5px solid #6ee7ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #6ee7ff;
        }
        h4 {
            font-size: 1.4rem;
            color: #aaaaff;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
            margin-bottom: 2em;
            text-align: center;
        }
        .highlight {
            background: rgba(110, 231, 255, 0.1);
            padding: 20px;
            border-left: 4px solid #ff6ec7;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .bold {
            font-weight: 800;
            color: #fff;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border: 3px solid #3a3a6a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: 10px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-box, .rating-box {
            background: rgba(42, 42, 74, 0.8);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #4a4a8a;
        }
        .comment-box h3, .rating-box h3 {
            color: #ff6ec7;
            margin-bottom: 20px;
        }
        .comment-box form, .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-box input, .comment-box textarea, .rating-box select {
            padding: 12px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-box textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-box button, .rating-box button {
            padding: 12px;
            background: linear-gradient(90deg, #ff6ec7, #ff3a8b);
            border: none;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-box button:hover, .rating-box button:hover {
            background: linear-gradient(90deg, #ff3a8b, #ff6ec7);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .site-footer {
            background: #0a0a1a;
            border-top: 2px solid #2a2a4a;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #6ee7ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: rgba(42, 42, 74, 0.6);
            padding: 10px 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 3px solid #ff6ec7;
        }
        friend-link a {
            color: #e0e0ff;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #6ee7ff;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 20px;
            font-style: italic;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .hero h1 { font-size: 2.5rem; }
            .article-body { padding: 25px; }
            .interactive-section { grid-template-columns: 1fr; }
        }
