:root {
            --primary: #FF6B35;
            --secondary: #1A1A2E;
            --accent: #00B4D8;
            --light: #F8F9FA;
            --dark: #0F0F1B;
            --gray: #6C757D;
            --success: #2ECC71;
            --warning: #F39C12;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--light);
            background-color: var(--dark);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 107, 53, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--gray);
            background-color: rgba(26, 26, 46, 0.7);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .search-box {
            background: linear-gradient(135deg, #1A1A2E, #0F0F1B);
            padding: 2.5rem 0;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid rgba(0, 180, 216, 0.3);
            text-align: center;
        }
        .search-box h2 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--accent);
            border-radius: 8px 0 0 8px;
            background-color: rgba(255,255,255,0.05);
            color: var(--light);
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: var(--primary);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: var(--accent);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255,107,53,0.4);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--warning);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--light);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255,107,53,0.1);
            border-left: 4px solid var(--primary);
            padding: 1.2rem 1.5rem;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(15, 15, 27, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0,180,216,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255,107,53,0.2);
        }
        .stat-card h4 {
            color: var(--accent);
            margin-top: 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2.5rem auto;
            display: block;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
        }
        .interactive-section {
            background: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(15,15,27,0.9));
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 1px solid rgba(255,107,53,0.3);
        }
        .rating-section, .comment-section {
            margin-bottom: 3rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: var(--gray);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--warning);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            background-color: rgba(255,255,255,0.05);
            color: var(--light);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary), #FF8E53);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
        }
        footer {
            background-color: var(--secondary);
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--primary);
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.05);
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            margin: 0.3rem;
            border: 1px solid rgba(0,180,216,0.3);
        }
        friend-link a:hover {
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        .update-time {
            background-color: rgba(255,107,53,0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            display: inline-block;
            margin: 1rem 0;
            color: var(--warning);
            font-weight: 600;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--secondary);
                width: 70%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 8px;
                width: 100%;
            }
        }
        @media (max-width: 576px) {
            article {
                padding: 1.5rem;
            }
            h1 { font-size: 2rem; }
            .interactive-section {
                padding: 1.5rem;
            }
        }
