* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0d17;
            color: #e0e6f0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde6b;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(145deg, #0f1222 0%, #1a1f35 100%);
            border-bottom: 2px solid #2a2f4a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c842, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 200, 66, 0.15);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #8a8faa;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #3a3f5a;
            color: #f5c842;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2440;
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8cee8;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(245, 200, 66, 0.12);
            color: #f5c842;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #f5c842;
            border-bottom: 2px solid #f5c842;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #7a7f9a;
        }
        .breadcrumb a {
            color: #9aa0c0;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #c8cee8;
        }
        main {
            padding: 32px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5c842, #f5a623, #f5c842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 12px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c842;
            margin: 48px 0 16px;
            border-bottom: 2px solid #2a2f4a;
            padding-bottom: 8px;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e0d6a8;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c8b87a;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d6ee;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8edff;
            font-weight: 400;
            border-left: 4px solid #f5c842;
            padding-left: 20px;
            margin: 24px 0 32px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1f35, #12162a);
            border: 1px solid #2a2f4a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 32px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .highlight-box strong {
            color: #f5c842;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        .card {
            background: #12162a;
            border: 1px solid #252a45;
            border-radius: 16px;
            padding: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(245, 200, 66, 0.06);
        }
        .card i {
            color: #f5c842;
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .stat-badge {
            display: inline-block;
            background: #f5c842;
            color: #0b0d17;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }
        .image-wrapper {
            margin: 36px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1f35;
        }
        .image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .image-wrapper figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #8a8faa;
            font-style: italic;
            background: #0f1222;
        }
        .form-section {
            background: #12162a;
            border: 1px solid #252a45;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #c8cee8;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0d17;
            border: 1px solid #2a2f4a;
            border-radius: 8px;
            color: #e0e6f0;
            font-size: 1rem;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #f5c842, #e6b83a);
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 200, 66, 0.25);
            background: linear-gradient(135deg, #ffd95e, #f5c842);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #2a2f4a;
            color: #e0e6f0;
        }
        .btn-secondary:hover {
            background: #3a3f5a;
            box-shadow: 0 8px 24px rgba(42, 47, 74, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #3a3f5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        .star-rating i.active~i {
            color: #3a3f5a;
        }
        footer {
            background: #0a0c16;
            border-top: 2px solid #1a1f35;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        footer h4 {
            color: #f5c842;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: #8a8faa;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a1f35;
            margin-top: 16px;
            color: #6a6f8a;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #9aa0c0;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0f1222;
                border: 1px solid #2a2f4a;
                border-radius: 12px;
                padding: 12px 16px;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 12px;
                border-bottom: 1px solid #1a1f35;
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 16px;
            }
            .highlight-box {
                padding: 20px;
            }
            .form-section {
                padding: 20px;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1rem;
                padding-left: 14px;
            }
            .star-rating {
                font-size: 1.3rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0d17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3f5a;
        }
        .text-muted {
            color: #7a7f9a;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .inline-icon {
            margin-right: 6px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a6f8a;
            border-top: 1px solid #1a1f35;
            padding-top: 16px;
            margin-top: 40px;
            text-align: right;
        }
        .last-updated i {
            margin-right: 6px;
        }
