*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --accent: #e94560;
            --gold: #f5c518;
            --light: #f8f9fa;
            --dark: #16213e;
            --text: #333;
            --text-light: #666;
            --white: #fff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.6;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text);
            background: var(--light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .site-header {
            background: var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
            color: var(--gold);
        }
        .my-logo i {
            color: var(--gold);
            font-size: 28px;
        }
        .my-logo .saga-text {
            background: linear-gradient(135deg, var(--gold), #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .main-nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.3s, color 0.3s, transform 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(245, 197, 24, 0.15);
            color: var(--gold);
            transform: translateY(-2px);
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 14px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 26px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-wrap {
            background: var(--dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 10px 0;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--gold);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: rgba(255, 255, 255, 0.3);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 70%, var(--accent) 100%);
            padding: 80px 24px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 900;
            letter-spacing: 1px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .hero h1 .highlight {
            color: var(--gold);
        }
        .hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }
        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 24px;
        }
        .hero-badge {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 30px;
            color: var(--white);
            font-size: 14px;
            backdrop-filter: blur(10px);
            transition: background 0.3s, transform 0.2s;
        }
        .hero-badge:hover {
            background: rgba(245, 197, 24, 0.2);
            transform: scale(1.05);
        }
        .hero-badge i {
            margin-right: 6px;
            color: var(--gold);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .main-content {
            flex: 1 1 65%;
            min-width: 280px;
        }
        .sidebar {
            flex: 1 1 30%;
            min-width: 250px;
        }
        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }
        .card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--accent));
            border-radius: 3px;
        }
        .card-title i {
            color: var(--accent);
            margin-right: 10px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 32px 0 16px;
            font-weight: 700;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 24px 0 12px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.15rem;
            color: var(--text);
            margin: 16px 0 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
            line-height: 1.7;
            color: var(--text);
        }
        .lead {
            font-size: 1.1rem;
            color: var(--text-light);
            font-style: italic;
        }
        strong {
            color: var(--primary);
        }
        .content-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 8px;
            font-style: italic;
        }
        .feature-list {
            list-style: none;
            padding: 0;
        }
        .feature-list li {
            padding: 12px 0;
            padding-left: 36px;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }
        .feature-list li:hover {
            background: #fafafa;
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .feature-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 18px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 15px;
        }
        .data-table th {
            background: var(--primary);
            color: var(--white);
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            background: var(--white);
        }
        .data-table tr:hover td {
            background: #f8f9fa;
        }
        .callout {
            background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(233, 69, 96, 0.08));
            border-left: 4px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
            font-size: 1rem;
        }
        .callout i {
            color: var(--gold);
            font-size: 24px;
            margin-right: 12px;
            vertical-align: middle;
        }
        .search-box {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
            text-align: center;
        }
        .search-box h3 {
            margin-bottom: 16px;
            font-size: 1.4rem;
            color: var(--primary);
        }
        .search-form {
            display: flex;
            gap: 8px;
            max-width: 500px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: var(--gold);
        }
        .search-form button {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: var(--accent);
            transform: scale(1.05);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 32px;
        }
        .interaction-panel {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
        }
        .interaction-panel h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: var(--primary);
        }
        .interaction-panel h3 i {
            color: var(--gold);
            margin-right: 8px;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            margin: 12px 0;
            justify-content: center;
            font-size: 28px;
            cursor: pointer;
        }
        .rating-stars i {
            color: #ddd;
            transition: color 0.3s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--gold);
            transform: scale(1.2);
        }
        .interaction-panel form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .interaction-panel textarea,
        .interaction-panel input {
            padding: 10px 14px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .interaction-panel textarea:focus,
        .interaction-panel input:focus {
            border-color: var(--gold);
        }
        .interaction-panel textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn-submit {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            justify-content: center;
        }
        .btn-submit:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        .sidebar-widget {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }
        .sidebar-widget h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            color: var(--text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s, padding-left 0.3s;
        }
        .link-list a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .link-list a i {
            color: var(--gold);
            font-size: 14px;
        }
        .sticky-wrap {
            position: sticky;
            top: 90px;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 24px 20px;
            margin-top: auto;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-col h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .footer-col p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-col a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 16px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }
        friend-link a {
            color: var(--gold);
            text-decoration: none;
            margin: 0 10px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 24px;
        }
        .last-updated {
            display: inline-block;
            background: rgba(245, 197, 24, 0.1);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            color: var(--gold);
            margin: 16px 0;
            border: 1px solid rgba(245, 197, 24, 0.3);
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin-bottom: 16px;
            box-shadow: var(--shadow);
            transition: box-shadow 0.3s;
        }
        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .faq-item details {
            cursor: pointer;
        }
        .faq-item summary {
            font-weight: 600;
            color: var(--primary);
            font-size: 1rem;
            outline: none;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary i {
            color: var(--gold);
            transition: transform 0.3s;
        }
        .faq-item details[open] summary i {
            transform: rotate(45deg);
        }
        .faq-item p {
            margin-top: 12px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                height: auto;
                padding: 16px;
                flex-wrap: wrap;
                gap: 12px;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 4px;
                padding: 16px 0;
                background: var(--primary);
                border-radius: var(--radius);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 48px 16px 40px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                flex-direction: column;
                padding: 24px 16px;
            }
            .main-content,
            .sidebar {
                flex: 1 1 100%;
                min-width: 0;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                padding: 0 16px;
                font-size: 13px;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
                gap: 12px;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .hero-badges {
                flex-direction: column;
                align-items: center;
            }
            .card {
                padding: 20px;
            }
        }
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--accent));
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
