* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0b1a;
            color: #e8e8f0;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #7c9aff;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #ffb347;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f0f2a 0%, #1a1a3e 100%);
            border-bottom: 2px solid #2a2a5a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffd200;
            font-size: 32px;
        }
        .my-logo:hover {
            opacity: .85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #7c9aff;
            color: #7c9aff;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        .nav-toggle:hover {
            background: #7c9aff22;
        }
        nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 14px;
            background: transparent;
            border: 1px solid #3a3a6a;
            color: #c8c8e0;
            transition: .2s;
        }
        nav a:hover {
            background: #7c9aff22;
            border-color: #7c9aff;
            color: #fff;
        }
        nav a i {
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 10px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
            }
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 13px;
            color: #8888aa;
        }
        .breadcrumb span {
            color: #aaaacc;
        }
        .breadcrumb a {
            color: #7c9aff;
        }
        .breadcrumb a:hover {
            color: #ffb347;
        }
        .hero {
            background: linear-gradient(145deg, #14142e, #1e1e4a);
            border-radius: 24px;
            padding: 40px 36px;
            margin: 20px 0 32px;
            border: 1px solid #2a2a5a;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }
        .hero h1 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 900;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 18px;
            color: #b8b8d0;
            max-width: 540px;
        }
        .hero img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
            display: block;
            border: 2px solid #3a3a6a;
        }
        .hero-stats {
            display: flex;
            gap: 24px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .hero-stats .stat {
            background: #1a1a3e;
            padding: 10px 20px;
            border-radius: 40px;
            border: 1px solid #3a3a6a;
            font-size: 14px;
            font-weight: 600;
        }
        .hero-stats .stat i {
            color: #ffd200;
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 24px 20px;
            }
            .hero img {
                order: -1;
            }
        }
        section {
            padding: 32px 0;
        }
        h2 {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #ffd200;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #2a2a5a;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h2 i {
            color: #f7971e;
        }
        h3 {
            font-size: clamp(18px, 2.2vw, 26px);
            font-weight: 700;
            color: #f0e6b0;
            margin: 28px 0 14px;
        }
        h4 {
            font-size: clamp(16px, 1.8vw, 20px);
            font-weight: 600;
            color: #c8c8f0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #d0d0e4;
            font-size: 16px;
        }
        .content-card {
            background: #12122a;
            border-radius: 20px;
            padding: 28px 30px;
            margin-bottom: 24px;
            border: 1px solid #2a2a4a;
            transition: .2s;
        }
        .content-card:hover {
            border-color: #4a4a7a;
            box-shadow: 0 8px 30px rgba(100, 100, 255, .05);
        }
        .highlight {
            color: #ffd200;
            font-weight: 700;
        }
        .emoji-big {
            font-size: 28px;
        }
        .pill {
            display: inline-block;
            background: #2a2a5a;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 13px;
            color: #aab;
            margin-right: 6px;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #3a3a6a;
            background: #0f0f22;
            transition: .2s;
        }
        .search-box:focus-within {
            border-color: #ffd200;
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 16px;
            outline: none;
        }
        .search-box input::placeholder {
            color: #666688;
        }
        .search-box button {
            background: #ffd200;
            border: none;
            padding: 0 24px;
            color: #0b0b1a;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: .2s;
        }
        .search-box button:hover {
            background: #f0c800;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 32px;
            cursor: pointer;
            margin: 12px 0;
        }
        .rating-stars i {
            color: #444466;
            transition: .2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #ffd200;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 20px;
            border-radius: 16px;
            border: 2px solid #2a2a5a;
            background: #0f0f22;
            color: #fff;
            font-size: 15px;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: .2s;
        }
        .comment-form textarea:focus {
            border-color: #ffd200;
        }
        .comment-form button {
            background: #ffd200;
            color: #0b0b1a;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            margin-top: 12px;
            transition: .2s;
        }
        .comment-form button:hover {
            background: #f0c800;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            background: #0f0f22;
            border-radius: 16px;
            padding: 20px 24px;
            margin-top: 24px;
            border: 1px solid #2a2a4a;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: #1a1a3e;
            border-radius: 30px;
            font-size: 14px;
            border: 1px solid #3a3a6a;
        }
        friend-link a:hover {
            border-color: #ffd200;
            color: #ffd200;
        }
        footer {
            border-top: 2px solid #2a2a5a;
            padding: 40px 0 32px;
            margin-top: 40px;
            text-align: center;
            color: #8888aa;
            font-size: 14px;
        }
        footer .copyright {
            margin-top: 12px;
            color: #666688;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 14px;
            }
            .content-card {
                padding: 18px 16px;
            }
            .hero-stats .stat {
                font-size: 12px;
                padding: 6px 14px;
            }
            .rating-stars {
                font-size: 26px;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 15px;
            }
            .my-logo {
                font-size: 20px;
            }
            .my-logo i {
                font-size: 24px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp .6s forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .schema-hidden {
            display: none;
        }
