* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d14;
            color: #e2e4ed;
            line-height: 1.8;
            font-size: 1.05rem;
            scroll-behavior: smooth;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f111a 0%, #1a1d2e 100%);
            border-bottom: 1px solid #2a2e42;
            padding: 16px 0;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c94b, #ff6b6b, #7b2ff7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(123, 47, 247, 0.3);
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-transform: uppercase;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-list {
            display: flex;
            gap: 24px;
            list-style: none;
            align-items: center;
        }
        .nav-list a {
            color: #c8cae0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        .nav-list a:hover {
            color: #f0c94b;
            border-bottom-color: #f0c94b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0c94b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #141723;
            padding: 10px 0;
            border-bottom: 1px solid #252a3e;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #6b7194;
        }
        .breadcrumb a {
            color: #9da0c2;
        }
        .breadcrumb .current {
            color: #f0c94b;
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c94b, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f0c94b;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid #ff6b6b;
            padding-left: 20px;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #e8d48b;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #c8b87c;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d8ec;
        }
        .content-section {
            background: #12151f;
            border-radius: 20px;
            padding: 32px 36px;
            margin-bottom: 40px;
            border: 1px solid #262b40;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .content-section img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 24px 0;
            border: 2px solid #2f3550;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section img:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 40px rgba(240, 201, 75, 0.15);
        }
        .featured-image-wrapper {
            text-align: center;
        }
        .featured-image-wrapper figcaption {
            font-size: 0.85rem;
            color: #8b90b0;
            margin-top: 8px;
            font-style: italic;
        }
        .highlight-box {
            background: #1a1f30;
            border-left: 6px solid #7b2ff7;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f0c94b;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #181d2e;
            padding: 20px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2f3550;
            transition: transform 0.25s, border-color 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f0c94b;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c94b;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #9da0c2;
            margin-top: 4px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 8px 0 4px;
        }
        .link-list-inline a {
            background: #1e2338;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2f3550;
            transition: background 0.3s, border-color 0.3s;
        }
        .link-list-inline a:hover {
            background: #2a3050;
            border-color: #f0c94b;
            text-decoration: none;
        }
        .form-card {
            background: #161a2a;
            border-radius: 18px;
            padding: 28px 32px;
            border: 1px solid #2a2e42;
            margin: 28px 0;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #c8cae0;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            background: #0f111a;
            border: 1px solid #2f3550;
            border-radius: 10px;
            color: #e2e4ed;
            font-size: 1rem;
            transition: border-color 0.3s;
            margin-bottom: 16px;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #f0c94b;
            box-shadow: 0 0 0 3px rgba(240, 201, 75, 0.15);
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: linear-gradient(135deg, #f0c94b, #e6a800);
            color: #0b0d14;
            font-weight: 700;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(240, 201, 75, 0.35);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #7b2ff7, #5a1fb0);
            color: #fff;
        }
        .btn-secondary:hover {
            box-shadow: 0 8px 24px rgba(123, 47, 247, 0.35);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: #3d435e;
            transition: color 0.2s;
            margin-bottom: 16px;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f0c94b;
            transform: scale(1.1);
        }
        .star-rating i:hover~i {
            color: #3d435e;
        }
        .site-footer {
            background: #0c0e16;
            border-top: 1px solid #1f2338;
            padding: 48px 0 32px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .site-footer h4 {
            color: #f0c94b;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #9da0c2;
            display: block;
            padding: 4px 0;
            font-size: 0.95rem;
        }
        .site-footer a:hover {
            color: #f0c94b;
        }
        friend-link {
            display: block;
            background: #12151f;
            border-radius: 14px;
            padding: 24px 28px;
            border: 1px solid #262b40;
            margin: 24px 0 16px;
        }
        friend-link a {
            color: #f0c94b;
            font-weight: 500;
            display: inline-block;
            margin-right: 24px;
            margin-bottom: 8px;
        }
        friend-link a:hover {
            color: #ffdd77;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1f2338;
            color: #6b7194;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #9da0c2;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 8px;
                padding: 16px 0 8px;
                border-top: 1px solid #2a2e42;
                margin-top: 8px;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-list a {
                padding: 10px 0;
                border-bottom: 1px solid #1f2338;
                width: 100%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-section {
                padding: 20px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .form-card {
                padding: 18px 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                gap: 4px 10px;
                font-size: 0.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0d14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2f3550;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4a5178;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
