* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e8ecf1;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffdd77;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #151b24;
            border-bottom: 3px solid #f5c842;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            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.2);
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
        }
        .my-logo small {
            font-size: 12px;
            display: block;
            -webkit-text-fill-color: #8899aa;
            color: #8899aa;
            letter-spacing: 2px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            font-size: 28px;
            color: #f5c842;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(245, 200, 66, 0.1);
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            color: #c8d0da;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        nav a:hover {
            color: #f5c842;
            border-color: #f5c842;
            background: rgba(245, 200, 66, 0.06);
        }
        nav a.active {
            color: #f5c842;
            border-color: #f5c842;
            background: rgba(245, 200, 66, 0.08);
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 13px;
            color: #7a8a9a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7a8a9a;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #b0c0d0;
        }
        .hero {
            background: linear-gradient(145deg, #1a232e, #0f151d);
            border-radius: 20px;
            padding: 40px 36px;
            margin: 24px 0 32px;
            border-left: 6px solid #f5c842;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "NFS";
            position: absolute;
            right: -30px;
            bottom: -40px;
            font-size: 160px;
            font-weight: 900;
            color: rgba(245, 200, 66, 0.03);
            letter-spacing: 10px;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 38px;
            font-weight: 900;
            color: #f5c842;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
        }
        .hero p {
            font-size: 18px;
            color: #b0c4d8;
            max-width: 750px;
            position: relative;
        }
        .hero .meta {
            margin-top: 20px;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #7a8a9a;
            position: relative;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f5c842;
        }
        .featured-img {
            margin: 32px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s;
        }
        .featured-img:hover img {
            transform: scale(1.02);
        }
        .featured-img figcaption {
            background: #151b24;
            padding: 12px 20px;
            font-size: 14px;
            color: #8899aa;
            border-top: 1px solid #1f2a36;
        }
        .content {
            background: #11181f;
            border-radius: 20px;
            padding: 40px 36px;
            margin: 20px 0 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .content h2 {
            font-size: 30px;
            font-weight: 800;
            color: #f5c842;
            margin: 48px 0 18px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #1f2a36;
            position: relative;
        }
        .content h2:first-child {
            margin-top: 0;
        }
        .content h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #f5c842;
        }
        .content h3 {
            font-size: 24px;
            font-weight: 700;
            color: #e0d6c0;
            margin: 32px 0 14px 0;
        }
        .content h4 {
            font-size: 20px;
            font-weight: 600;
            color: #c8bca8;
            margin: 24px 0 10px 0;
        }
        .content p {
            margin-bottom: 18px;
            color: #d0d8e0;
            font-size: 16px;
        }
        .content p b,
        .content p strong {
            color: #f5e8d0;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: #c8d0da;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .highlight-box {
            background: #1a2532;
            border-left: 4px solid #f5c842;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content .emoji-big {
            font-size: 28px;
            margin-right: 10px;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
            padding: 16px 20px;
            background: #0d141c;
            border-radius: 12px;
            border: 1px solid #1f2a36;
        }
        .link-group a {
            padding: 4px 14px;
            border-radius: 20px;
            background: rgba(245, 200, 66, 0.06);
            border: 1px solid rgba(245, 200, 66, 0.15);
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .link-group a:hover {
            background: rgba(245, 200, 66, 0.15);
            border-color: #f5c842;
        }
        .search-section {
            margin: 32px 0;
            padding: 28px 32px;
            background: #0d141c;
            border-radius: 16px;
            border: 1px solid #1f2a36;
        }
        .search-section h3 {
            margin-top: 0;
            color: #f5c842;
            font-size: 22px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 14px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 30px;
            border: 1px solid #2a3644;
            background: #0b0e14;
            color: #e8ecf1;
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f5c842;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5c842, #e0a800);
            color: #0b0e14;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 200, 66, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        @media(max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #0d141c;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid #1f2a36;
        }
        .feedback-card h3 {
            margin-top: 0;
            color: #f5c842;
            font-size: 20px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3644;
            background: #0b0e14;
            color: #e8ecf1;
            font-size: 15px;
            outline: none;
            transition: border 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c842;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5c842, #e0a800);
            color: #0b0e14;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 200, 66, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #3a4a5a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.3s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
            transform: scale(1.1);
        }
        footer {
            background: #0d141c;
            border-top: 2px solid #1f2a36;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1;
            min-width: 180px;
        }
        .footer-col h4 {
            color: #f5c842;
            font-size: 16px;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            font-size: 14px;
            color: #8899aa;
        }
        .footer-col a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 1px solid #1a2532;
            margin-top: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 16px;
            border-radius: 20px;
            background: rgba(245, 200, 66, 0.05);
            border: 1px solid rgba(245, 200, 66, 0.1);
            font-size: 13px;
            color: #8899aa;
        }
        friend-link a:hover {
            background: rgba(245, 200, 66, 0.12);
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            font-size: 13px;
            color: #5a6a7a;
            border-top: 1px solid #1a2532;
            margin-top: 20px;
        }
        .copyright strong {
            color: #8899aa;
        }
        @media(max-width:768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid #1f2a36;
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .hero h1 {
                font-size: 26px;
            }
            .hero {
                padding: 28px 20px;
            }
            .content {
                padding: 24px 18px;
            }
            .content h2 {
                font-size: 24px;
            }
            .content h3 {
                font-size: 20px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 100%;
            }
            .footer-inner {
                flex-direction: column;
                gap: 24px;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 22px;
            }
            .my-logo {
                font-size: 22px;
            }
            .container {
                padding: 0 12px;
            }
            .content {
                padding: 18px 14px;
            }
            .feedback-card {
                padding: 20px 18px;
            }
            .search-section {
                padding: 20px 18px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .last-updated {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 30px;
            background: rgba(245, 200, 66, 0.06);
            border: 1px solid rgba(245, 200, 66, 0.12);
            font-size: 13px;
            color: #8899aa;
            margin-bottom: 20px;
        }
        .last-updated i {
            color: #f5c842;
            margin-right: 6px;
        }
