        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1420;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6ea4ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc5c;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid #2a3147;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0f1a 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff7e5f, #6ea4ff, #9d50ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 8px;
        }
        nav ul li a:hover {
            background-color: rgba(110, 164, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ea4ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            color: #a0aec0;
        }
        .breadcrumb a:hover {
            color: #ffcc5c;
        }
        .search-box {
            margin: 30px auto;
            max-width: 800px;
            text-align: center;
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: #ffcc5c;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 18px 25px;
            border: 2px solid #2a3147;
            border-radius: 50px;
            background-color: #1a2332;
            color: #e0e7ff;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #6ea4ff;
            box-shadow: 0 0 15px rgba(110, 164, 255, 0.4);
        }
        .search-form button {
            padding: 0 35px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(90deg, #6ea4ff, #9d50ff);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(110, 164, 255, 0.4);
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: rgba(26, 35, 50, 0.7);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #ffcc5c;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 92, 0.3);
        }
        h2 {
            font-size: 2.5rem;
            margin: 45px 0 25px;
            color: #6ea4ff;
            padding-bottom: 10px;
            border-bottom: 3px solid #2a3147;
        }
        h3 {
            font-size: 1.9rem;
            margin: 35px 0 20px;
            color: #9d50ff;
        }
        h4 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #ff7e5f;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 92, 0.1);
            border-left: 5px solid #ffcc5c;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5em;
            margin-right: 10px;
            vertical-align: middle;
        }
        .method-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .method-card {
            background: #1a2332;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #2a3147;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .method-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border-color: #6ea4ff;
        }
        .method-card h4 {
            margin-top: 0;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            text-align: center;
        }
        .stat-box {
            flex: 1;
            min-width: 200px;
            padding: 25px;
            background: linear-gradient(135deg, #1a2332, #2a3147);
            border-radius: 15px;
        }
        .stat-box i {
            font-size: 2.5rem;
            color: #ffcc5c;
            margin-bottom: 15px;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #a0aec0;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px dashed #2a3147;
        }
        .interaction {
            background-color: #1a2332;
            border-radius: 20px;
            padding: 40px;
            margin-top: 50px;
        }
        .rating-section, .comment-section {
            margin-bottom: 50px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2.5rem;
            cursor: pointer;
        }
        .stars i {
            color: #444;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc5c;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .rating-form select, .comment-form input,
        .comment-form textarea {
            padding: 18px;
            border-radius: 10px;
            border: 1px solid #2a3147;
            background-color: #0f1420;
            color: #e0e7ff;
            font-size: 1.1rem;
        }
        .comment-form textarea {
            min-height: 200px;
            resize: vertical;
        }
        .submit-btn {
            align-self: flex-start;
            padding: 18px 45px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(90deg, #ff7e5f, #ffcc5c);
            color: #0f1420;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        footer {
            background: linear-gradient(to bottom, #0a0f1a, #070a12);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffcc5c;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            margin: 15px 0;
            padding: 12px 20px;
            background-color: rgba(255, 204, 92, 0.1);
            border-radius: 8px;
            border-left: 4px solid #ffcc5c;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3147;
            color: #a0aec0;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav {
                width: 100%;
                order: 3;
                margin-top: 20px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 18px;
            }
            article {
                padding: 25px;
            }
            .method-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            p { font-size: 1.1rem; }
            .container { padding: 0 15px; }
        }
