        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            padding-bottom: 0;
            min-height: 100vh;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd166;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        ::selection {
            background: #f5a623;
            color: #0f0f1a;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5a623;
            border-radius: 4px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 70%, #16213e 100%);
            border-bottom: 2px solid #f5a62340;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            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: 0.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #f5a623;
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #f0f0f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f5a62320;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c0c0d0;
            transition: all 0.25s;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #f5a623;
            transition: width 0.25s ease;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 60%;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f5a623;
            background: #f5a62310;
        }
        .breadcrumb {
            background: #16162a;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a40;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 500;
        }
        .hero {
            padding: 3rem 0 2.5rem;
            text-align: center;
            background: radial-gradient(ellipse at center, #1a1a3e 0%, #0f0f1a 70%);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5a623, #ff6b35, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 1.2rem;
            color: #b0b0c8;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #888;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #f5a623;
        }
        section {
            padding: 2.5rem 0;
        }
        section:nth-child(even) {
            background: #12121f;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #f5a623;
            border-left: 4px solid #f5a623;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 1rem;
            color: #ffd166;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.8rem;
            color: #e0c080;
        }
        p {
            margin-bottom: 1rem;
            color: #d0d0e0;
        }
        .content-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 2rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2a40;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .content-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 1.8rem;
        }
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }
        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }
        .form-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a2a40;
            margin: 1.5rem 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.4rem;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a3a50;
            background: #0f0f1a;
            color: #e8e8f0;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 3px #f5a62320;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            background: linear-gradient(135deg, #f5a623, #e07c20);
            color: #0f0f1a;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #f5a62340;
        }
        .btn-secondary {
            background: #2a2a40;
            color: #e0e0f0;
        }
        .btn-secondary:hover {
            background: #3a3a55;
            box-shadow: 0 6px 20px #2a2a4060;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #aaa;
            background: #1a1a2e;
            border-top: 1px solid #2a2a40;
        }
        .site-footer {
            background: #0a0a14;
            border-top: 2px solid #f5a62320;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f5a623;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
        }
        .site-footer ul li {
            margin-bottom: 0.4rem;
        }
        .site-footer ul li a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .site-footer ul li a:hover {
            color: #f5a623;
        }
        .footer-bottom {
            border-top: 1px solid #2a2a40;
            padding-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: #888;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            color: #aaa;
            font-size: 0.9rem;
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
        }
        friend-link a:hover {
            color: #f5a623;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                border-radius: 8px;
                padding: 0.8rem 0;
                margin-top: 0.5rem;
                border: 1px solid #2a2a40;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 0;
            }
            .main-nav a::after {
                display: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-card {
                padding: 1.2rem;
            }
            .form-card {
                padding: 1.2rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .highlight {
            color: #f5a623;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #f5a62320;
            color: #f5a623;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin: 0.2rem 0.2rem;
        }
        .stat-badge {
            background: #2a2a40;
            border-radius: 8px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid #3a3a50;
        }
        .stat-badge .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5a623;
            display: block;
        }
        .stat-badge .label {
            font-size: 0.85rem;
            color: #aaa;
            margin-top: 0.3rem;
        }
        .inline-link {
            color: #f5a623;
            font-weight: 500;
            border-bottom: 1px dotted #f5a62360;
        }
        .inline-link:hover {
            border-bottom-color: #f5a623;
        }
