        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #faf6f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b85c2b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #7a3d1a;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            background: #b85c2b;
            color: #fff;
            padding: 12px 24px;
            border-radius: 0 0 8px 8px;
            z-index: 9999;
            font-weight: 700;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2a4a 100%);
            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: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f9a825, #ff6f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f9a825;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo span {
            -webkit-text-fill-color: initial;
            color: #fff;
            font-weight: 300;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0e6d3;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            text-decoration: none;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(255, 255, 255, 0.12);
            color: #f9a825;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f9a825;
            color: #1e1e2a;
        }
        .breadcrumb {
            background: #e8e0d6;
            padding: 10px 0;
            font-size: 0.85rem;
            color: #4a4a5a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #999;
        }
        .breadcrumb a {
            color: #b85c2b;
        }
        .breadcrumb .current {
            color: #2d2a4a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d2a4a 0%, #4a3f6b 100%);
            color: #fff;
            padding: 60px 20px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🦶💥";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 12rem;
            opacity: 0.08;
            transform: rotate(-15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(to right, #f9a825, #ff6f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.9;
            font-weight: 300;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.08);
            padding: 12px 28px;
            border-radius: 50px;
            backdrop-filter: blur(4px);
        }
        .hero .meta-badge i {
            color: #f9a825;
            margin-right: 6px;
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #1e1e2a;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 12px;
        }
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #f9a825, #ff6f00);
            border-radius: 4px;
        }
        .section-title.center {
            text-align: center;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 32px 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
        }
        .card i {
            font-size: 2.4rem;
            color: #f9a825;
            margin-bottom: 16px;
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1e1e2a;
        }
        .card p {
            color: #4a4a5a;
            font-size: 0.95rem;
        }
        .feature-image {
            margin: 36px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        }
        .feature-image figcaption {
            background: #1e1e2a;
            color: #e8e0d6;
            padding: 12px 20px;
            font-size: 0.9rem;
            font-style: italic;
        }
        .weapon-table {
            width: 100%;
            border-collapse: collapse;
            margin: 32px 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .weapon-table th {
            background: #2d2a4a;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .weapon-table td {
            padding: 14px 18px;
            border-bottom: 1px solid #eee;
        }
        .weapon-table tr:hover td {
            background: #faf3ea;
        }
        .tip-list {
            list-style: none;
            padding: 0;
        }
        .tip-list li {
            padding: 14px 20px 14px 48px;
            background: #fff;
            margin-bottom: 12px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            position: relative;
            font-size: 0.98rem;
            border-left: 4px solid #f9a825;
        }
        .tip-list li::before {
            content: "🔥";
            position: absolute;
            left: 14px;
            top: 14px;
            font-size: 1.2rem;
        }
        .form-block {
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
            margin: 28px 0;
            border: 1px solid #e8e0d6;
        }
        .form-block h3 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #2d2a4a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: #faf6f0;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f9a825;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to right, #f9a825, #ff6f00);
            color: #1e1e2a;
            border: none;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(249, 168, 37, 0.35);
        }
        .btn-secondary {
            background: #2d2a4a;
            color: #fff;
        }
        .btn-secondary:hover {
            box-shadow: 0 8px 24px rgba(45, 42, 74, 0.35);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a825;
        }
        .faq-item {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid #e8e0d6;
            overflow: hidden;
        }
        .faq-question {
            padding: 18px 24px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            transition: background 0.2s;
            font-size: 1.05rem;
        }
        .faq-question:hover {
            background: #faf3ea;
        }
        .faq-question i {
            transition: transform 0.3s;
            color: #f9a825;
        }
        .faq-answer {
            padding: 0 24px 18px;
            color: #4a4a5a;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        .site-footer {
            background: #1e1e2a;
            color: #e8e0d6;
            padding: 48px 0 28px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #f9a825;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-grid a {
            color: #c4b8a8;
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f9a825;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            color: #c4b8a8;
            padding: 4px 12px 4px 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #f9a825;
        }
        .copyright {
            border-top: 1px solid #3a3a4a;
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #999;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e1e2a;
                flex-direction: column;
                padding: 20px 24px;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .header-inner {
                position: relative;
            }
            .weapon-table {
                font-size: 0.85rem;
            }
            .weapon-table th,
            .weapon-table td {
                padding: 10px 12px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .form-block {
                padding: 20px 16px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f9a825;
            color: #1e1e2a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s, opacity 0.3s;
            opacity: 0;
            pointer-events: none;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: scale(1.1);
        }
        .author-bio {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            margin: 32px 0;
            border: 1px solid #e8e0d6;
        }
        .author-bio .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f9a825, #ff6f00);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: #fff;
            flex-shrink: 0;
        }
        .author-bio .info {
            flex: 1;
        }
        .author-bio .info h4 {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }
        .author-bio .info p {
            color: #4a4a5a;
            font-size: 0.92rem;
        }
