* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b1a2e;
            color: #e4e9f0;
            line-height: 1.8;
            font-size: 16px;
            overflow-x: hidden;
        }
        a {
            color: #f6c445;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        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, #0f1f32 0%, #162a44 100%);
            padding: 16px 0;
            border-bottom: 3px solid #f6c445;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f6c445, #f9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(246, 196, 69, 0.15);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f6c445;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f6c445;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(246, 196, 69, 0.12);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: #cfdcec;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
        }
        .nav-menu li a:hover {
            color: #f6c445;
            border-bottom-color: #f6c445;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 12px 0 6px;
            color: #8fa4bc;
        }
        .breadcrumb a {
            color: #8fa4bc;
        }
        .breadcrumb a:hover {
            color: #f6c445;
        }
        .breadcrumb .sep {
            color: #4a627a;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f6c445;
            margin: 0.4em 0 0.3em;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0d78c;
            margin: 1.8em 0 0.6em;
            border-bottom: 2px solid rgba(246, 196, 69, 0.25);
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8c97a;
            margin: 1.4em 0 0.5em;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #dbb96a;
            margin: 1em 0 0.4em;
        }
        p {
            margin: 0.8em 0 1.2em;
            color: #d5dfec;
        }
        .content-card {
            background: rgba(18, 34, 54, 0.75);
            backdrop-filter: blur(2px);
            border-radius: 20px;
            padding: 28px 32px;
            margin: 28px 0;
            border: 1px solid rgba(246, 196, 69, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .content-card p {
            color: #dce6f2;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(246, 196, 69, 0.08), rgba(246, 196, 69, 0.02));
            border-left: 5px solid #f6c445;
            padding: 18px 24px;
            border-radius: 0 16px 16px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #f6c445;
        }
        .btn {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            background: linear-gradient(135deg, #f6c445, #e5a820);
            color: #0b1a2e;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(246, 196, 69, 0.3);
            color: #0b1a2e;
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f6c445;
            color: #f6c445;
        }
        .btn-outline:hover {
            background: rgba(246, 196, 69, 0.12);
        }
        .feature-img {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }
        .feature-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #8fa4bc;
            background: rgba(0, 0, 0, 0.4);
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }
        .stat-item {
            background: rgba(246, 196, 69, 0.06);
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid rgba(246, 196, 69, 0.12);
            transition: transform 0.25s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f6c445;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #9fb0ca;
            margin-top: 4px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .interactive-card {
            background: rgba(18, 34, 54, 0.8);
            border-radius: 20px;
            padding: 26px 28px;
            border: 1px solid rgba(246, 196, 69, 0.1);
        }
        .interactive-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interactive-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .interactive-card input,
        .interactive-card textarea,
        .interactive-card select {
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #2a405a;
            background: #0d1a2c;
            color: #e4e9f0;
            font-size: 0.95rem;
            transition: border 0.3s;
            width: 100%;
        }
        .interactive-card input:focus,
        .interactive-card textarea:focus,
        .interactive-card select:focus {
            border-color: #f6c445;
            outline: none;
        }
        .interactive-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a5470;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f6c445;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #3a5470;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f6c445;
        }
        .rating-stars input:checked~label {
            color: #f6c445;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-list a {
            background: rgba(246, 196, 69, 0.06);
            padding: 10px 18px;
            border-radius: 30px;
            border: 1px solid rgba(246, 196, 69, 0.1);
            transition: all 0.25s;
            font-size: 0.9rem;
            display: inline-block;
        }
        .link-list a:hover {
            background: rgba(246, 196, 69, 0.14);
            border-color: #f6c445;
            transform: translateX(4px);
            text-decoration: none;
        }
        footer {
            background: #07101e;
            padding: 40px 0 20px;
            border-top: 2px solid rgba(246, 196, 69, 0.15);
            margin-top: 60px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        footer h4 {
            color: #f6c445;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer p,
        footer a {
            font-size: 0.9rem;
            color: #8fa4bc;
        }
        footer a:hover {
            color: #f6c445;
        }
        friend-link {
            display: block;
            grid-column: 1 / -1;
            padding: 20px 0 10px;
            border-top: 1px solid rgba(246, 196, 69, 0.08);
            margin-top: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #5a738a;
        }
        @media (max-width: 900px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
            footer .container {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-card {
                padding: 20px 18px;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1f32;
                padding: 16px 0 20px;
                border-radius: 0 0 16px 16px;
                gap: 8px;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .header-grid {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .stat-item .num {
                font-size: 1.6rem;
            }
            .interactive-card {
                padding: 18px 16px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f6c445;
            color: #0b1a2e;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(246, 196, 69, 0.3);
            transition: all 0.3s;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(246, 196, 69, 0.4);
        }
        @media (max-width: 600px) {
            .scroll-top {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
                bottom: 20px;
                right: 20px;
            }
        }
        .goblin-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .goblin-table th {
            background: rgba(246, 196, 69, 0.15);
            color: #f6c445;
            padding: 12px 14px;
            text-align: left;
            font-weight: 600;
        }
        .goblin-table td {
            padding: 10px 14px;
            border-bottom: 1px solid rgba(246, 196, 69, 0.06);
            color: #cfdcec;
        }
        .goblin-table tr:hover td {
            background: rgba(246, 196, 69, 0.04);
        }
        @media (max-width: 600px) {
            .goblin-table {
                font-size: 0.78rem;
            }
            .goblin-table th,
            .goblin-table td {
                padding: 6px 8px;
            }
        }
        .tag {
            display: inline-block;
            background: rgba(246, 196, 69, 0.12);
            color: #f6c445;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 196, 69, 0.1);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f0d78c;
        }
        .separator {
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(246, 196, 69, 0.2), transparent);
            margin: 40px 0;
        }
