* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-red: #e94560;
            --accent-orange: #ff9a3c;
            --text-light: #f1f1f1;
            --text-dim: #b8b8b8;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(233, 69, 96, 0.3);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-orange);
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: var(--accent-red);
            text-shadow: 0 0 8px rgba(233, 69, 96, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-red), var(--accent-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: var(--text-dim);
            margin: 10px 0 20px;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--accent-orange);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .search-container {
            margin: 30px auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: var(--card-bg);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: var(--text-dim);
        }
        .search-button {
            background: linear-gradient(to right, var(--accent-red), var(--accent-orange));
            border: none;
            color: white;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--accent-orange);
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            color: var(--accent-red);
            border-left: 5px solid var(--accent-orange);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            margin: 35px 0 15px;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--text-dim);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: var(--accent-orange);
            font-weight: 600;
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(233, 69, 96, 0.1);
            border-radius: 15px;
            border-left: 5px solid var(--accent-red);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(233,69,96,0.2), transparent);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid var(--accent-red);
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .weapon-card {
            background: rgba(22, 33, 62, 0.7);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .weapon-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            border-radius: 15px;
            border: 3px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: transform 0.5s;
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .link-list {
            background: rgba(255, 154, 60, 0.1);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .link-list h3 {
            color: var(--accent-orange);
        }
        .link-list ul {
            list-style-type: none;
            columns: 2;
        }
        @media (max-width: 600px) {
            .link-list ul {
                columns: 1;
            }
        }
        .link-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        .link-list li::before {
            content: '🔫';
            position: absolute;
            left: 0;
        }
        .user-interaction {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-section, .rating-section {
            padding: 25px;
            background: rgba(22, 33, 62, 0.7);
            border-radius: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: var(--text-dim);
            cursor: pointer;
            transition: color 0.3s, transform 0.3s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-orange);
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        textarea:focus, input:focus {
            border-color: var(--accent-red);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--accent-red), var(--accent-orange));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.4);
        }
        footer {
            background-color: rgba(10, 15, 30, 0.95);
            padding: 50px 0 20px;
            border-top: 2px solid var(--border-color);
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-orange);
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 15px 0;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .update-time {
            text-align: center;
            font-size: 0.9rem;
            color: var(--accent-orange);
            margin: 20px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--accent-orange);
        }
        .tag {
            display: inline-block;
            background: rgba(233, 69, 96, 0.2);
            color: var(--accent-red);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin: 5px;
            border: 1px solid var(--border-color);
        }
        .content-block {
            margin-bottom: 50px;
        }
