* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #ffd966;
            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(145deg, #1a1a2e, #16213e);
            padding: 18px 0;
            border-bottom: 2px solid #f0c04033;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f0c04022;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ffffff0c;
        }
        nav {
            display: flex;
            gap: 10px 22px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            color: #ccc;
        }
        nav a:hover {
            border-bottom-color: #f0c040;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #f0c040aa;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 16px;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f0c040;
            border-left: 5px solid #f0c040;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #ffd966;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #e6b800;
        }
        p {
            margin: 0 0 18px;
            color: #d0d0d0;
        }
        .update-badge {
            display: inline-block;
            background: #2a2a40;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f0c040;
            border: 1px solid #f0c04033;
            margin-bottom: 24px;
        }
        .featured-img {
            margin: 28px 0;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .featured-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-img figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 8px;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .highlight-card {
            background: #1c1c30;
            padding: 24px 20px;
            border-radius: 16px;
            border: 1px solid #2a2a45;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .highlight-card:hover {
            transform: translateY(-6px);
            border-color: #f0c04055;
            box-shadow: 0 12px 30px rgba(240, 192, 64, 0.08);
        }
        .highlight-card i {
            font-size: 2.2rem;
            color: #f0c040;
            margin-bottom: 12px;
        }
        .highlight-card h3 {
            margin: 0 0 8px;
            font-size: 1.3rem;
            color: #fff;
        }
        .highlight-card p {
            color: #bbb;
            font-size: 0.95rem;
            margin: 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            background: #1a1a2e;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #2a2a45;
            color: #f0c040;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #2a2a40;
            color: #ccc;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #22223a;
        }
        .interactive-section {
            background: #1a1a2e;
            border-radius: 20px;
            padding: 32px 28px;
            margin: 40px 0;
            border: 1px solid #2a2a45;
        }
        .interactive-section h2 {
            margin-top: 0;
            border-left-color: #f5a623;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #ddd;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #0f0f1a;
            color: #eee;
            font-size: 1rem;
            transition: border-color 0.25s, box-shadow 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px #f0c04022;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            color: #0f0f1a;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(240, 192, 64, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c04011;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #444;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f0c040;
            transform: scale(1.15);
        }
        .interview-block {
            background: #1c1c30;
            border-left: 4px solid #f0c040;
            padding: 24px 28px;
            border-radius: 0 16px 16px 0;
            margin: 32px 0;
        }
        .interview-block p {
            font-style: italic;
            color: #d5d5d5;
        }
        .interview-block .author {
            font-weight: 600;
            color: #f0c040;
            margin-top: 8px;
            font-style: normal;
        }
        footer {
            background: #0a0a18;
            border-top: 2px solid #1a1a30;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #f0c040;
            margin: 0 0 12px;
            font-size: 1.1rem;
            border-left: none;
            padding-left: 0;
        }
        .footer-col a {
            display: block;
            color: #999;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 8px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a1a30;
            color: #666;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                border-bottom: 1px solid #222;
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
            .interactive-section {
                padding: 20px 16px;
            }
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #f0c04044;
            color: #fff;
        }
