* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f5f8f0;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 30px rgba(0,40,0,0.08);
            border-radius: 24px;
            padding: 20px 24px;
        }
        header {
            border-bottom: 2px solid #c8e6c9;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            color: #2e7d32;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #388e3c, #1b5e20);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 8px rgba(0,80,0,0.1);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffb300;
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #2e7d32;
            cursor: pointer;
        }
        nav {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #2e5e2e;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.2s;
        }
        nav a:hover {
            background: #e8f5e9;
            color: #1b5e20;
            transform: translateY(-2px);
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #eef6ee;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.9rem;
            margin: 14px 0 8px;
            display: inline-block;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #6b8e6b;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f1f8f1;
                padding: 16px;
                border-radius: 20px;
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
        }
        .search-form {
            display: flex;
            margin: 20px 0;
            background: #f0f7ee;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #c8e6c9;
            max-width: 500px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #2e7d32;
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #1b5e20;
        }
        h1 {
            font-size: 2.4rem;
            color: #1b3b1b;
            margin: 20px 0 10px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: #235523;
            margin-top: 40px;
            margin-bottom: 14px;
            border-left: 8px solid #4caf50;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.4rem;
            color: #2e6b2e;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d7a3d;
            margin-top: 20px;
            margin-bottom: 6px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            border-radius: 24px;
            margin: 28px auto;
            display: block;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        .tip-box {
            background: #eef9ee;
            border-radius: 24px;
            padding: 20px 24px;
            border-left: 8px solid #ffa726;
            margin: 24px 0;
        }
        .tip-box i {
            color: #ff8f00;
            margin-right: 10px;
        }
        .player-quote {
            background: #fff8e1;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 24px 0;
            font-style: italic;
            border: 1px solid #ffe082;
        }
        .player-quote strong {
            color: #2e7d32;
        }
        .arena-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .arena-stats div {
            background: #e3f2e0;
            border-radius: 20px;
            padding: 16px;
            text-align: center;
            font-weight: bold;
        }
        .arena-stats i {
            font-size: 2rem;
            color: #388e3c;
            display: block;
            margin-bottom: 8px;
        }
        .link-list-inline {
            background: #f7fcf5;
            border-radius: 20px;
            padding: 16px 20px;
            margin: 20px 0;
        }
        .link-list-inline a {
            color: #1b5e20;
            font-weight: 600;
            text-decoration: underline;
            margin: 0 4px;
        }
        .link-list-inline a:hover {
            color: #ff8f00;
        }
        .comment-section, .rating-section {
            background: #fafff9;
            border-radius: 24px;
            padding: 24px;
            margin: 32px 0;
            border: 1px solid #c8e6c9;
        }
        .comment-section h3, .rating-section h3 {
            margin-top: 0;
        }
        .comment-section textarea {
            width: 100%;
            border-radius: 16px;
            padding: 14px;
            border: 1px solid #b2d8b2;
            margin: 10px 0;
            min-height: 110px;
            font-family: inherit;
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 40px;
            border: 1px solid #b2d8b2;
            margin: 6px 0;
        }
        .btn-primary {
            background: #2e7d32;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-primary:hover {
            background: #1b5e20;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            margin: 12px 0;
            font-size: 2rem;
            direction: rtl; 
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ccc;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ffb300;
        }
        footer {
            border-top: 2px solid #c8e6c9;
            padding-top: 24px;
            margin-top: 40px;
        }
        friend-link {
            display: block;
            background: #eef6ee;
            border-radius: 20px;
            padding: 20px;
            margin: 16px 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #1b5e20;
            text-decoration: none;
            font-weight: 600;
            margin: 0 12px 0 0;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
            color: #4f7a4f;
        }
        .update-time {
            background: #e3f2e0;
            padding: 6px 18px;
            border-radius: 40px;
            display: inline-block;
            font-size: 0.9rem;
            margin: 20px 0;
        }
        .update-time i {
            margin-right: 8px;
        }
        @media (max-width: 600px) {
            .container {
                padding: 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
