* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 1rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 16px 0;
            border-bottom: 4px solid #f6a935;
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #f6a935;
            text-decoration: none;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(to right, #f6a935, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 10px;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 8px;
            border-radius: 6px;
            transition: 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(246, 169, 53, 0.2);
            color: #f6a935;
        }
        .breadcrumb {
            background: #eef0f5;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dde0e8;
        }
        .breadcrumb a {
            color: #302b63;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
        }
        .content-area {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #0f0c29;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        h1 .badge {
            font-size: 0.9rem;
            background: #f6a935;
            color: #0f0c29;
            padding: 4px 14px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-left: 12px;
        }
        .last-updated {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f6a935;
        }
        .featured-image {
            width: 100%;
            border-radius: 16px;
            margin: 20px 0 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            display: block;
            max-height: 500px;
            object-fit: cover;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #302b63;
            margin-top: 50px;
            margin-bottom: 18px;
            border-left: 6px solid #f6a935;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 34px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d2d44;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2c2c3a;
        }
        .highlight-box {
            background: linear-gradient(145deg, #fef9ed, #fff6e0);
            border-left: 6px solid #f6a935;
            padding: 20px 26px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 2px 12px rgba(246, 169, 53, 0.15);
        }
        .highlight-box strong {
            color: #0f0c29;
        }
        ul,
        ol {
            margin: 12px 0 18px 24px;
        }
        li {
            margin-bottom: 10px;
        }
        .tip-card {
            background: white;
            border-radius: 14px;
            padding: 20px 24px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            margin: 20px 0;
            border: 1px solid #eaeef5;
            transition: 0.2s;
        }
        .tip-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .tip-card i {
            color: #f6a935;
            font-size: 1.3rem;
            margin-right: 10px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }
        .stat-item {
            background: white;
            padding: 18px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeef5;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f6a935;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #666;
        }
        .mod-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 12px;
            margin: 16px 0;
        }
        .mod-list a {
            background: white;
            padding: 12px 18px;
            border-radius: 10px;
            text-decoration: none;
            color: #302b63;
            font-weight: 500;
            border: 1px solid #e0e4ee;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mod-list a:hover {
            background: #302b63;
            color: #f6a935;
            border-color: #302b63;
            transform: translateY(-2px);
        }
        .mod-list a i {
            font-size: 0.9rem;
            color: #f6a935;
        }
        .interview-block {
            background: #f0f2f8;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #302b63;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #1a1a2e;
        }
        .interview-block .attribution {
            margin-top: 12px;
            font-weight: 600;
            color: #302b63;
        }
        .search-section {
            background: white;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eaeef5;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #dde0e8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            min-width: 200px;
        }
        .search-section input[type="text"]:focus {
            border-color: #f6a935;
            box-shadow: 0 0 0 4px rgba(246, 169, 53, 0.15);
        }
        .search-section button {
            padding: 14px 32px;
            background: #f6a935;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            color: #0f0c29;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #e8992a;
            transform: scale(1.02);
        }
        .comment-box,
        .score-box {
            background: white;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 30px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eaeef5;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-box textarea,
        .score-box input,
        .comment-box input {
            padding: 12px 18px;
            border: 2px solid #dde0e8;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .score-box input:focus,
        .comment-box input:focus {
            border-color: #f6a935;
            box-shadow: 0 0 0 4px rgba(246, 169, 53, 0.1);
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            padding: 12px 28px;
            background: #302b63;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #0f0c29;
            transform: scale(1.02);
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .fa-star.active {
            color: #f6a935;
        }
        .stars .fa-star:hover {
            color: #f6a935;
        }
        .site-footer {
            background: #0f0c29;
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0 20px;
            border-top: 4px solid #f6a935;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #f6a935;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }
        .footer-inner a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            transition: 0.2s;
        }
        .footer-inner a:hover {
            color: #f6a935;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }
        friend-link a {
            color: #f6a935;
            text-decoration: none;
            margin: 0 12px 0 0;
            display: inline-block;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 10px 12px;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .comment-box button,
            .score-box button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 6px;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 8px 0;
            }
            .stat-item .num {
                font-size: 1.6rem;
            }
            .mod-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .wrapper {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .mod-list {
                grid-template-columns: 1fr;
            }
            .featured-image {
                border-radius: 10px;
            }
            .highlight-box {
                padding: 16px 18px;
            }
            .interview-block {
                padding: 18px 16px;
            }
            .search-section,
            .comment-box,
            .score-box {
                padding: 20px 16px;
            }
        }
        .smooth {
            scroll-behavior: smooth;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f6a935;
            color: #0f0c29;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(246, 169, 53, 0.4);
            transition: 0.2s;
            z-index: 999;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(246, 169, 53, 0.5);
        }
        @media (max-width: 600px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
