* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0e17;
            color: #e4e4e7;
            line-height: 1.8;
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ff7a4a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffb347;
        }
        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: #1a1a2e;
            border-bottom: 2px solid #ff7a4a33;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(26, 26, 46, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff7a4a, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 122, 74, 0.25);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ff7a4a;
            margin-right: 6px;
        }
        .main-nav {
            display: flex;
            gap: 18px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #cdcdd9;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(255, 122, 74, 0.15);
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.85rem;
            color: #ff7a4a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #ff7a4a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 122, 74, 0.12);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: #1a1a2e;
            padding: 16px 0 8px;
            border-top: 1px solid #ff7a4a22;
            margin-top: 12px;
            flex-direction: column;
            gap: 8px;
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            color: #cdcdd9;
            padding: 10px 12px;
            border-radius: 8px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: 0.2s;
        }
        .nav-mobile a:hover {
            background: rgba(255, 122, 74, 0.1);
            border-left-color: #ff7a4a;
            color: #fff;
        }
        .breadcrumb {
            background: #16162b;
            padding: 14px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a4a;
        }
        .breadcrumb a {
            color: #9a9ab0;
        }
        .breadcrumb a:hover {
            color: #ff7a4a;
        }
        .breadcrumb span {
            color: #6a6a88;
            margin: 0 6px;
        }
        .breadcrumb .current {
            color: #ffb347;
            font-weight: 500;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #ff7a4a, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 18px;
            color: #f0d9b0;
            border-left: 5px solid #ff7a4a;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 34px;
            margin-bottom: 12px;
            color: #e8cfa0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #daba8a;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d1d1db;
        }
        .lead {
            font-size: 1.2rem;
            color: #eaeaf0;
            font-weight: 400;
            border-left: 4px solid #ff7a4a;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        strong,
        b {
            color: #f5e6ce;
            font-weight: 600;
        }
        .highlight-box {
            background: #1e1e3a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 28px 0;
            border: 1px solid #ff7a4a33;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .highlight-box h3 {
            margin-top: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }
        .stat-card {
            background: #25254a;
            border-radius: 12px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #3a3a5a;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #ff7a4a;
        }
        .stat-card i {
            font-size: 2rem;
            color: #ff7a4a;
            margin-bottom: 8px;
        }
        .stat-card .num {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f7c948;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #a0a0b8;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1a2e;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s;
        }
        .img-wrapper:hover img {
            transform: scale(1.02);
        }
        .img-wrapper .caption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #8a8aaa;
            background: #14142a;
            border-top: 1px solid #2a2a4a;
        }
        .btn {
            display: inline-block;
            background: #ff7a4a;
            color: #0f0e17;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 1rem;
        }
        .btn:hover {
            background: #ff9a6a;
            transform: translateY(-2px);
            color: #0f0e17;
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 14px 0;
            margin: 16px 0;
        }
        .inline-links a {
            color: #cd9a6a;
            border-bottom: 1px dotted #ff7a4a55;
            font-weight: 500;
        }
        .inline-links a:hover {
            color: #ffb347;
            border-bottom-color: #ffb347;
        }
        .search-section {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #2a2a4a;
        }
        .search-section h3 {
            margin-top: 0;
            color: #f0d9b0;
        }
        .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: 40px;
            border: 1px solid #3a3a5a;
            background: #14142a;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #ff7a4a;
        }
        .search-form button {
            background: #ff7a4a;
            color: #0f0e17;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff9a6a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid #2a2a4a;
        }
        .feedback-card h3 {
            margin-top: 0;
            color: #f0d9b0;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3a3a5a;
            background: #14142a;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #ff7a4a;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #ff7a4a;
            color: #0f0e17;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #ff9a6a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #4a4a6a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f7c948;
        }
        .site-footer {
            background: #12122a;
            border-top: 2px solid #ff7a4a22;
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        @media (max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-copyright {
            color: #6a6a88;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a4a;
            padding-top: 20px;
            margin-top: 28px;
            text-align: center;
        }
        .footer-copyright a {
            color: #9a9ab0;
        }
        .footer-copyright a:hover {
            color: #ff7a4a;
        }
        friend-link {
            display: block;
            background: #16162b;
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid #2a2a4a;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 6px 16px 6px 0;
            color: #cd9a6a;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #ffb347;
        }
        friend-link::before {
            content: "🔗 Friends Links";
            display: block;
            font-weight: 700;
            color: #f0d9b0;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        @media (max-width:768px) {
            .main-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 16px;
            }
            .highlight-box {
                padding: 20px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a7a9a;
            border-bottom: 1px solid #2a2a4a;
            padding-bottom: 12px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #ff7a4a;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #1a1a2e;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #25254a;
            color: #f0d9b0;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #2a2a4a;
            color: #cdcddb;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1e1e3a;
        }
