:root {
            --primary-red: #e62429;
            --primary-blue: #0066cc;
            --accent-yellow: #ffd700;
            --dark-bg: #111;
            --light-bg: #f5f5f5;
            --text-light: #f0f0f0;
            --text-dark: #222;
            --card-bg: #1a1a1a;
            --spider-web: rgba(255, 255, 255, 0.05);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            background-image:
                radial-gradient(circle at 10% 20%, var(--spider-web) 2px, transparent 2px),
                radial-gradient(circle at 90% 80%, var(--spider-web) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
            text-shadow: 0 0 8px rgba(230, 36, 41, 0.7);
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2a0a0a 100%);
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 3px 3px 0 #000, 6px 6px 0 rgba(230, 36, 41, 0.3);
            transition: all 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 0 #000, 8px 8px 10px rgba(230, 36, 41, 0.5);
        }
        .my-logo span {
            color: var(--accent-yellow);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .nav-link:hover::after {
            transform: scaleX(1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background: var(--card-bg);
            padding: 1rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent-yellow);
        }
        .search-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-form {
            display: flex;
            background: var(--card-bg);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #333;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: var(--primary-blue);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-input:focus {
            outline: none;
        }
        .search-button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ff1a1f;
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
        }
        article {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 3rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid #333;
        }
        h1 {
            color: var(--accent-yellow);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--primary-blue);
            font-size: 2.3rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--primary-red);
        }
        h3 {
            color: var(--accent-yellow);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #ccc;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            font-style: italic;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #fff;
            font-weight: 500;
            background: linear-gradient(90deg, rgba(230,36,41,0.1) 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-red);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,215,0,0.15) 0%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .content-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 3px solid var(--primary-blue);
            box-shadow: 0 5px 15px rgba(0,102,204,0.3);
            transition: transform 0.5s;
        }
        .content-img:hover {
            transform: scale(1.01);
        }
        .figcaption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .quote {
            border-left: 4px solid var(--accent-yellow);
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #ddd;
            background: rgba(255,215,0,0.05);
            padding: 1.5rem 2rem;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            transition: all 0.3s;
            border: 1px solid #333;
        }
        .link-card:hover {
            background: rgba(230,36,41,0.1);
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-box {
            background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--primary-blue);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-yellow);
            display: block;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .interactive-section {
            background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(40,10,10,0.9) 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid var(--primary-red);
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #333;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .tab {
            padding: 1rem 2rem;
            background: transparent;
            border: none;
            color: #aaa;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }
        .tab.active {
            color: var(--accent-yellow);
        }
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-yellow);
        }
        .tab:hover:not(.active) {
            color: #fff;
            background: rgba(255,255,255,0.05);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s;
        }
        .tab-content.active {
            display: block;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .user-interaction {
                grid-template-columns: 1fr;
            }
        }
        .comment-form, .rating-form {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #444;
        }
        .form-title {
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background: #2a2a2a;
            border: 1px solid #555;
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(0,102,204,0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-red), #c81010);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ff1a1f, #d92020);
            box-shadow: 0 5px 15px rgba(230,36,41,0.4);
        }
        footer {
            background: #0a0a0a;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: rgba(255,255,255,0.05);
            margin-bottom: 0.5rem;
            border-radius: 5px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(230,36,41,0.2);
            padding-left: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-yellow);
            font-weight: bold;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: var(--card-bg);
                border-radius: 10px;
                padding: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger { display: block; }
            .nav-link { padding: 0.8rem; }
            .breadcrumb { padding: 1rem; }
            .main-container, .search-container { padding: 0 1rem; }
            article { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 480px) {
            .my-logo { font-size: 1.8rem; }
            h1 { font-size: 1.9rem; }
            .lead { font-size: 1.2rem; }
            .stat-box { padding: 1rem; }
            .interactive-section { padding: 1.5rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
