        * {
            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;
            overflow-x: hidden;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff66c4;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #6ee7ff;
            border-left: 5px solid #ff66c4;
            padding-left: 15px;
            text-shadow: 0 0 10px rgba(110, 231, 255, 0.3);
        }
        .content-block {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(110, 231, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(110, 231, 255, 0.1);
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        em {
            color: #ffcc00;
            font-style: italic;
        }
        strong {
            color: #ff66c4;
            font-weight: 700;
        }
        ul, ol {
            padding-left: 30px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.8em;
        }
        blockquote {
            border-left: 4px solid #6ee7ff;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #b0b0ff;
            background: rgba(110, 231, 255, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #6ee7ff, #ff66c4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: logo-pulse 0.5s ease;
        }
        @keyframes logo-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav.desktop-nav a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        nav.desktop-nav a:hover {
            background: rgba(110, 231, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a1a2e;
            padding: 20px;
            flex-direction: column;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0a0cc;
        }
        .breadcrumb a {
            color: #a0a0cc;
        }
        .breadcrumb a:hover {
            color: #6ee7ff;
        }
        .hero {
            background: radial-gradient(circle at 30% 20%, #2a2a4a 0%, #0f0f1a 70%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(110, 231, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: float 20s linear infinite;
            z-index: 0;
        }
        @keyframes float {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 20px rgba(110, 231, 255, 0.7);
            position: relative;
            z-index: 1;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0b0ff;
            position: relative;
            z-index: 1;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto 0;
            position: relative;
            z-index: 1;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }
        .search-box button {
            padding: 0 35px;
            border: none;
            border-radius: 0 50px 50px 0;
            background: linear-gradient(90deg, #6ee7ff, #3b82f6);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #3b82f6, #6ee7ff);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article h2 {
            font-size: 2.2rem;
            margin: 50px 0 20px;
            color: #ffcc00;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 204, 0, 0.3);
        }
        article h3 {
            font-size: 1.8rem;
            margin: 40px 0 15px;
            color: #6ee7ff;
        }
        article h4 {
            font-size: 1.5rem;
            margin: 30px 0 10px;
            color: #ff66c4;
        }
        .featured-image {
            margin: 30px 0;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #a0a0cc;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-box {
            background: linear-gradient(135deg, rgba(110, 231, 255, 0.1), rgba(255, 102, 196, 0.1));
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border: 1px solid rgba(110, 231, 255, 0.3);
        }
        .interactive-box h3 {
            margin-top: 0;
            color: #fff;
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #333;
            cursor: pointer;
        }
        .stars .star {
            color: #444;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .rating-box button, .comment-form button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #ff66c4, #6ee7ff);
            border: none;
            border-radius: 50px;
            color: #0f0f1a;
            font-weight: 700;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.3s ease;
        }
        .rating-box button:hover, .comment-form button:hover {
            transform: scale(1.05);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(110, 231, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .sidebar .content-block {
            position: sticky;
            top: 120px;
        }
        .link-list {
            list-style: none;
            padding-left: 0;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed rgba(110, 231, 255, 0.2);
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .link-list i {
            color: #ff66c4;
            font-size: 1.2rem;
        }
        .update-info {
            color: #a0a0cc;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed rgba(110, 231, 255, 0.2);
        }
        footer {
            background: #0a0a12;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #6ee7ff;
            margin-bottom: 20px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .friend-links a {
            background: rgba(110, 231, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            article h4 {
                font-size: 1.3rem;
            }
            .content-block {
                padding: 20px;
            }
        }
