        * {
            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 100%);
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff66c4;
            text-shadow: 0 0 8px rgba(255, 102, 196, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 12, 29, 0.95);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2a2a5a;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff66c4, #6ee7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.7);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .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: rgba(12, 12, 29, 0.98);
            padding: 1rem;
            border-top: 1px solid #2a2a5a;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 6px;
            border-left: 4px solid #ff66c4;
        }
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 0.95rem;
            color: #aaaacc;
        }
        .breadcrumb a {
            color: #aaaacc;
        }
        .breadcrumb a:hover {
            color: #6ee7ff;
        }
        main {
            padding: 2rem 0 4rem;
        }
        article {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #333366;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #ff66c4, #6ee7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            color: #6ee7ff;
            border-left: 6px solid #ff66c4;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: #ffb366;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            color: #d0d0f0;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(110, 231, 255, 0.15), rgba(255, 102, 196, 0.15));
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border-left: 5px solid #6ee7ff;
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
        }
        .image-container {
            margin: 3rem auto;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.4s ease;
        }
        .image-container:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            margin-top: 0.8rem;
            color: #aaaacc;
            font-size: 0.95rem;
        }
        .internal-link {
            color: #ffb366;
            font-weight: 700;
            border-bottom: 2px dotted #ffb366;
        }
        .internal-link:hover {
            color: #ff66c4;
            border-bottom: 2px solid #ff66c4;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: rgba(30, 30, 60, 0.7);
            padding: 2rem;
            border-radius: 15px;
            border-top: 5px solid #ff66c4;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 102, 196, 0.2);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #6ee7ff;
            margin-bottom: 1rem;
        }
        .search-section, .comment-section, .score-section {
            background: rgba(25, 25, 50, 0.9);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 2px solid #3a3a7a;
        }
        .section-title {
            font-size: 1.8rem;
            color: #ffb366;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .section-title i {
            color: #ff66c4;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #444488;
            background: rgba(15, 15, 35, 0.9);
            color: #ffffff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6ee7ff;
            box-shadow: 0 0 0 3px rgba(110, 231, 255, 0.2);
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff66c4, #6ee7ff);
            color: #0c0c1d;
            border: none;
            border-radius: 10px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 102, 196, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #444488;
            margin: 1rem 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 3rem 0;
            justify-content: center;
        }
        .web-link {
            background: rgba(40, 40, 80, 0.7);
            padding: 1rem 1.8rem;
            border-radius: 50px;
            border: 1px solid #5555aa;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(110, 231, 255, 0.2);
            border-color: #6ee7ff;
            transform: translateY(-5px);
        }
        footer {
            background: rgba(10, 10, 25, 0.95);
            padding: 3rem 0 2rem;
            border-top: 2px solid #2a2a5a;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333366;
            color: #8888cc;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .features-grid { grid-template-columns: 1fr; }
            .footer-links { flex-direction: column; align-items: center; }
            .web-link { width: 100%; text-align: center; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .highlight { padding: 1.5rem; }
            .search-section, .comment-section, .score-section { padding: 1.5rem; }
        }
