* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            line-height: 1.7;
            color: #2d2d2d;
            background: #faf9f7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a0a2e, #3d1e6d);
            color: #fff;
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ffd700, #ff6347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            font-family: 'Georgia', serif;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            transition: all 0.3s ease;
        }
        .nav-menu li a {
            color: #e0d0ff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: all 0.3s;
        }
        .breadcrumb {
            background: #f0ece6;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d5c5;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb a {
            color: #6b4c9a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #999;
        }
        .hero {
            background: linear-gradient(to right, #fdf8f0, #f5e6d8);
            padding: 60px 0 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #3d1e6d;
            margin-bottom: 15px;
            font-weight: 800;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            color: #6b5a4c;
            max-width: 800px;
            margin: 0 auto 25px;
        }
        .hero-badge {
            display: inline-block;
            background: #ffd700;
            color: #3d1e6d;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .featured-img {
            width: 100%;
            max-width: 900px;
            border-radius: 16px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .content-section {
            padding: 50px 0;
            background: #fff;
        }
        .content-section:nth-child(even) {
            background: #f8f5f2;
        }
        .content-section h2 {
            font-size: 2rem;
            color: #3d1e6d;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
            font-weight: 700;
        }
        .content-section h3 {
            font-size: 1.4rem;
            color: #4a2a6a;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        .content-section h4 {
            font-size: 1.1rem;
            color: #6b4c9a;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        .content-section p {
            margin-bottom: 18px;
            font-size: 1rem;
            color: #3a3a3a;
            line-height: 1.8;
        }
        .content-section ul,
        .content-section ol {
            margin: 15px 0 20px 25px;
            color: #444;
        }
        .content-section li {
            margin-bottom: 10px;
            line-height: 1.7;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0e8f8, #e8d5f0);
            border-left: 6px solid #7b4fa8;
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
        }
        .highlight-box strong {
            color: #3d1e6d;
        }
        .tip-box {
            background: #f5fff5;
            border-left: 6px solid #2e8b57;
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-item {
            background: linear-gradient(135deg, #faf0ff, #f0e0fa);
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #7b4fa8;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #6b5a4c;
            margin-top: 5px;
        }
        .player-quote {
            background: #f9f4ef;
            border-radius: 16px;
            padding: 30px;
            margin: 30px 0;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .player-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: #ffd700;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .player-quote p {
            font-style: italic;
            padding-left: 40px;
            font-size: 1.05rem;
            color: #555;
        }
        .player-quote .player-name {
            font-style: normal;
            font-weight: 700;
            color: #3d1e6d;
            padding-left: 40px;
            margin-top: 15px;
            font-size: 0.95rem;
        }
        .search-section {
            background: linear-gradient(135deg, #3d1e6d, #1a0a2e);
            padding: 40px 0;
            color: #fff;
            text-align: center;
        }
        .search-section h2 {
            color: #ffd700;
            border-bottom-color: rgba(255, 215, 0, 0.4);
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 25px auto 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
        }
        .search-box input {
            flex: 1;
            padding: 16px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fff;
            color: #333;
        }
        .search-box button {
            background: #ffd700;
            color: #3d1e6d;
            border: none;
            padding: 0 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffed4a;
        }
        .comment-section {
            background: #f8f5f2;
            padding: 50px 0;
        }
        .comment-form {
            max-width: 700px;
            margin: 30px auto;
            background: #fff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .comment-form label {
            font-weight: 600;
            color: #3d1e6d;
            display: block;
            margin-bottom: 5px;
        }
        .comment-form input,
        .comment-form textarea,
        .comment-form select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e8e0ec;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .comment-form select:focus {
            border-color: #7b4fa8;
            outline: none;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(135deg, #7b4fa8, #5a2d82);
            color: #fff;
            border: none;
            padding: 14px 40px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(123, 79, 168, 0.4);
        }
        .rating-section {
            background: #fff;
            padding: 40px 0;
            text-align: center;
        }
        .rating-stars {
            font-size: 2.5rem;
            color: #ffd700;
            margin: 20px 0;
            cursor: pointer;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .rating-stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.3);
            color: #ffb700;
        }
        .rating-result {
            font-size: 1.1rem;
            color: #666;
            margin-top: 15px;
        }
        footer {
            background: #1a0a2e;
            color: #b0a0c8;
            padding: 60px 0 20px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-grid h3 {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .footer-grid a {
            color: #b0a0c8;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        .footer-grid a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }
        friend-link a {
            color: #b0a0c8;
            text-decoration: none;
            margin-right: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #8877a0;
        }
        .copyright a {
            color: #b0a0c8;
            text-decoration: none;
        }
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #7b4fa8;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 999;
        }
        .back-top:hover {
            background: #ffd700;
            color: #3d1e6d;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                padding: 20px 0;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-section h2 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.8rem;
            }
            .back-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }
