* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a3342;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(20, 26, 36, 0.96);
        }
        .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, #f5c542, #f7a81b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(245, 197, 66, 0.25);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2937;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8d0dc;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: #1f2937;
            border-color: #f5c542;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.9rem;
            color: #8a94a6;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: #8a94a6;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .sep {
            margin: 0 4px;
            color: #4a5568;
        }
        .hero {
            padding: 40px 0 24px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #f5c542, #f7a81b, #e58a0e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .tagline {
            font-size: 1.2rem;
            color: #a8b2c8;
            max-width: 720px;
            margin: 0 auto 16px;
        }
        .last-updated {
            display: inline-block;
            background: #1f2937;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #b0bacc;
            border: 1px solid #2a3342;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5c542;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid #1f2937;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 24px;
            letter-spacing: -0.3px;
            border-left: 5px solid #f5c542;
            padding-left: 20px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #ffdd77;
            margin: 28px 0 16px;
            letter-spacing: -0.2px;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #e8edf5;
            margin: 20px 0 12px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d8e8;
            font-size: 1.05rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 24px 0;
        }
        .content-grid .full-width {
            grid-column: 1 / -1;
        }
        .highlight-box {
            background: #1a2230;
            border-radius: 16px;
            padding: 28px 32px;
            border-left: 6px solid #f5c542;
            margin: 28px 0;
        }
        .highlight-box strong {
            color: #f5c542;
        }
        .stat-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-list li {
            background: #1a2230;
            padding: 18px 20px;
            border-radius: 12px;
            border: 1px solid #2a3342;
            font-weight: 500;
        }
        .stat-list li i {
            color: #f5c542;
            margin-right: 10px;
        }
        .link-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 16px 0;
        }
        .link-list li a {
            background: #1a2230;
            padding: 8px 18px;
            border-radius: 40px;
            border: 1px solid #2a3342;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .link-list li a:hover {
            border-color: #f5c542;
            background: #222d3e;
            text-decoration: none;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            background: #1a2230;
            padding: 8px;
        }
        .featured-image img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: #8a94a6;
            font-style: italic;
        }
        .widgets-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        .widget-card {
            background: #141c28;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a3342;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .widget-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }
        .widget-card h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 16px;
            color: #f5c542;
        }
        .widget-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .widget-card input,
        .widget-card textarea,
        .widget-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3342;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .widget-card input:focus,
        .widget-card textarea:focus,
        .widget-card select:focus {
            outline: none;
            border-color: #f5c542;
        }
        .widget-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .widget-card .btn {
            background: #f5c542;
            color: #0b0e14;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .widget-card .btn:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4455;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .site-footer {
            background: #0d121c;
            border-top: 2px solid #1f2937;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer-inner h4 {
            color: #f5c542;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner a {
            display: block;
            padding: 4px 0;
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            background: #141c28;
            padding: 20px 24px;
            border-radius: 12px;
            border: 1px solid #2a3342;
            margin: 16px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            border-radius: 20px;
            background: #1a2230;
            border: 1px solid #2a3342;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            border-color: #f5c542;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1f2937;
            color: #6a7488;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #a8b2c8;
        }
        @media (max-width: 992px) {
            .widgets-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .widgets-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 14px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stat-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .stat-list {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3342;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3e4a5e;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .emoji-big {
            font-size: 2rem;
            line-height: 1;
        }
        .text-accent {
            color: #f5c542;
        }
        .badge {
            display: inline-block;
            background: #f5c542;
            color: #0b0e14;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
        }
