* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0a0e1a;
            color: #e8e6f0;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #e8b830;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f5d060;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0d1225 0%, #1a1040 100%);
            border-bottom: 2px solid #e8b83033;
            padding: 16px 0 12px;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e8b830, #f5d060);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        .my-logo i {
            -webkit-text-fill-color: #e8b830;
            background: none;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e6f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ffffff11;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #c8c6d8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #e8b830;
            border-bottom-color: #e8b830;
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 8px;
            font-size: 0.85rem;
            color: #8886a0;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #a8a6c0;
        }
        .breadcrumb a:hover {
            color: #e8b830;
        }
        .breadcrumb span {
            color: #666480;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #f0e6d0, #e8b830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.1rem;
            color: #b0aec8;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #8886a0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 4px;
            color: #e8b830;
        }
        .search-section {
            padding: 20px 0 30px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid #2a2850;
            border-radius: 50px;
            overflow: hidden;
            background: #11142a;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #e8b830;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e8e6f0;
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #6a6880;
        }
        .search-form button {
            background: #e8b830;
            border: none;
            padding: 0 24px;
            color: #0a0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #f5d060;
        }
        .content {
            padding: 20px 0 40px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .article-body {
            max-width: 880px;
            margin: 0 auto;
        }
        .article-body h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: #f0e6d0;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 4px solid #e8b830;
            padding-left: 18px;
        }
        .article-body h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight: 700;
            color: #e0d6c0;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article-body h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d0c6b0;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #d0cee0;
            font-size: 1.02rem;
        }
        .article-body p b,
        .article-body p strong {
            color: #f0e6d0;
            font-weight: 700;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 24px;
            color: #d0cee0;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body .feature-box {
            background: linear-gradient(135deg, #11142a, #1a1040);
            border: 1px solid #2a2850;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 28px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .article-body .feature-box h4 {
            color: #e8b830;
            margin-top: 0;
        }
        .article-body .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #0d1225;
            border: 1px solid #2a2850;
            border-radius: 12px;
            padding: 20px 16px;
            text-align: center;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #e8b830;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #a8a6c0;
            margin-top: 4px;
        }
        .article-body .image-block {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #0d1225;
            padding: 8px;
            border: 1px solid #2a2850;
        }
        .article-body .image-block img {
            border-radius: 10px;
            width: 100%;
        }
        .article-body .image-block .caption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #8886a0;
            text-align: center;
            font-style: italic;
        }
        .article-body .interview-box {
            background: #0d1225;
            border-left: 4px solid #e8b830;
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 28px 0;
        }
        .article-body .interview-box .speaker {
            font-weight: 700;
            color: #e8b830;
        }
        .article-body .highlight-list {
            list-style: none;
            padding: 0;
            margin: 16px 0;
        }
        .article-body .highlight-list li {
            padding: 8px 0 8px 32px;
            position: relative;
        }
        .article-body .highlight-list li::before {
            content: "⚡";
            position: absolute;
            left: 0;
            color: #e8b830;
        }
        .article-body .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #2a2850;
        }
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 480px;
        }
        .article-body th {
            background: #1a1040;
            color: #e8b830;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        .article-body td {
            padding: 10px 16px;
            border-top: 1px solid #1a1a3a;
            color: #c8c6d8;
        }
        .article-body tr:nth-child(even) td {
            background: #0d1225;
        }
        .interaction-area {
            max-width: 880px;
            margin: 40px auto 0;
            padding-top: 32px;
            border-top: 1px solid #2a2850;
        }
        .rating-section {
            margin-bottom: 32px;
        }
        .rating-section h3 {
            font-size: 1.3rem;
            color: #f0e6d0;
            margin-bottom: 12px;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #3a3860;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #3a3860;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b830;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
            margin-top: 12px;
        }
        .rating-form button {
            background: #e8b830;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 700;
            color: #0a0e1a;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #f5d060;
        }
        .rating-form .score-display {
            color: #a8a6c0;
            font-size: 0.95rem;
        }
        .comment-section h3 {
            font-size: 1.3rem;
            color: #f0e6d0;
            margin-bottom: 16px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 24px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a2850;
            background: #0d1225;
            color: #e8e6f0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #e8b830;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #e8b830;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 700;
            color: #0a0e1a;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #f5d060;
        }
        footer {
            background: #080b1a;
            border-top: 1px solid #1a1a3a;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .footer-inner .copyright {
            font-size: 0.9rem;
            color: #6a6880;
            text-align: center;
        }
        .footer-inner .copyright a {
            color: #a8a6c0;
        }
        friend-link {
            display: block;
            background: #0d1225;
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid #1a1a3a;
            font-size: 0.95rem;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-weight: 700;
            color: #e8b830;
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #a8a6c0;
        }
        friend-link a:hover {
            color: #e8b830;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 4px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 8px 0;
                border-bottom: 1px solid #1a1a3a;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .article-body .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .article-body .feature-box {
                padding: 20px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .article-body .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 16px;
                font-size: 0.9rem;
            }
            .article-body h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .article-body h3 {
                font-size: 1.1rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #e8b83055;
            color: #fff;
        }
        .fa-spin {
            animation: fa-spin 2s infinite linear;
        }
