*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #e85d04;
            --primary-dark: #b94700;
            --secondary: #03071e;
            --accent: #f48c06;
            --bg: #fefae0;
            --bg-card: #ffffff;
            --text: #1b1b1b;
            --text-light: #555;
            --border: #ddd;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-bg: linear-gradient(135deg, #03071e 0%, #370617 50%, #6a040f 100%);
            --gold: #ffba08;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--header-bg);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffba08, #f48c06, #e85d04);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: 0.2s;
            white-space: nowrap;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--gold);
            text-decoration: none;
            border-color: rgba(255, 186, 8, 0.3);
        }
        .main-nav a.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-light);
        }
        .breadcrumb li+li::before {
            content: "›";
            font-weight: 700;
            color: var(--primary);
            margin-right: 6px;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #03071e 0%, #370617 60%, #6a040f 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🐦";
            position: absolute;
            font-size: 14rem;
            opacity: 0.06;
            right: -4%;
            bottom: -20%;
            transform: rotate(-10deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffba08, #f48c06);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.9;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .hero .last-updated i {
            margin-right: 6px;
            color: var(--gold);
        }
        .search-section {
            background: #fff;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 560px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .content-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 36px 40px;
            box-shadow: var(--shadow);
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin: 40px 0 16px;
            color: var(--secondary);
            border-left: 5px solid var(--primary);
            padding-left: 16px;
        }
        .main-content h2:first-child {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 32px 0 12px;
            color: #370617;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: var(--primary-dark);
        }
        .main-content p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2a2a2a;
        }
        .main-content ul,
        .main-content ol {
            margin: 0 0 20px 24px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .feature-img {
            margin: 28px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .main-content .feature-img figcaption {
            margin-top: 8px;
            font-size: 0.9rem;
            color: var(--text-light);
            text-align: center;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff3cd, #ffe8a0);
            border-left: 5px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: var(--secondary);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: var(--secondary);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
        }
        .data-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--secondary);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            color: var(--gold);
            width: 18px;
        }
        .rating-area {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .rating-area h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--secondary);
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            margin: 12px 0 18px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #ddd;
            transition: 0.2s;
            cursor: pointer;
        }
        .stars label:hover,
        .stars label:hover~label,
        .stars input:checked~label {
            color: var(--gold);
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: var(--font);
            transition: 0.2s;
        }
        .rating-form textarea:focus,
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
        }
        .rating-form .btn,
        .comment-form .btn {
            padding: 12px 32px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 12px;
        }
        .rating-form .btn:hover,
        .comment-form .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .site-footer {
            background: var(--header-bg);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner a {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-inner a:hover {
            color: var(--gold);
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 8px 0;
        }
        .copyright {
            text-align: center;
            margin-top: 28px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            opacity: 0.7;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(3, 7, 30, 0.98);
                padding: 16px 0;
                border-radius: 12px;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                width: 100%;
                border-radius: 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 24px 18px;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .rating-area {
                padding: 20px 18px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
        }
