* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1a2e, #11253e);
            padding: 18px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f0e6d0;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo span {
            color: #b8860b;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 300;
            display: block;
            color: #9ab0c9;
            letter-spacing: 2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #dce6f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(184, 134, 11, 0.25);
            color: #ffd966;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            background: #eae5db;
            padding: 12px 0;
            font-size: 0.85rem;
            color: #4a5a6a;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .sep {
            color: #8a9aa8;
            margin: 0 4px;
        }
        .hero {
            background: linear-gradient(135deg, #0b1a2e 0%, #1e3a5f 100%);
            padding: 60px 0 50px;
            color: #f0e6d0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚾";
            position: absolute;
            font-size: 18rem;
            right: -5%;
            bottom: -20%;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 12px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #b8860b;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 760px;
            margin: 0 auto 20px;
            opacity: 0.9;
            line-height: 1.6;
        }
        .hero .hero-tag {
            display: inline-block;
            background: rgba(184, 134, 11, 0.2);
            border: 1px solid rgba(184, 134, 11, 0.3);
            padding: 8px 28px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #ffd966;
            margin-top: 8px;
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0b1a2e;
            margin-bottom: 30px;
            border-left: 6px solid #b8860b;
            padding-left: 20px;
        }
        .section-title i {
            color: #b8860b;
            margin-right: 10px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 30px 0;
        }
        .card {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e8e2d8;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
        }
        .card h3 {
            font-size: 1.3rem;
            color: #0b1a2e;
            margin-bottom: 10px;
        }
        .card h3 i {
            color: #b8860b;
            margin-right: 8px;
        }
        .card p {
            color: #3a4a5a;
            font-size: 0.95rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            margin: 24px 0;
        }
        .stats-table th {
            background: #0b1a2e;
            color: #f0e6d0;
            padding: 14px 18px;
            font-weight: 600;
            text-align: left;
        }
        .stats-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #edebe7;
            color: #2a3a4a;
        }
        .stats-table tr:hover td {
            background: #faf6ef;
        }
        .stats-table .highlight {
            font-weight: 700;
            color: #b8860b;
        }
        .img-wrapper {
            margin: 40px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #eae5db;
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .img-wrapper .img-caption {
            padding: 14px 22px;
            background: #0b1a2e;
            color: #dce6f0;
            font-size: 0.9rem;
            font-style: italic;
        }
        .img-wrapper .img-caption i {
            color: #b8860b;
        }
        .search-box {
            background: #ffffff;
            border-radius: 50px;
            padding: 4px 4px 4px 24px;
            display: flex;
            max-width: 520px;
            margin: 24px auto 10px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #ddd6ca;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 8px;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #1e2a3a;
        }
        .search-box input::placeholder {
            color: #8a9aa8;
        }
        .search-box button {
            background: #b8860b;
            border: none;
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #9a7209;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 30px 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 26px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e2d8;
        }
        .feedback-card h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            color: #0b1a2e;
        }
        .feedback-card h3 i {
            color: #b8860b;
            margin-right: 10px;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d6cec2;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 14px;
            background: #faf8f5;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #b8860b;
            outline: none;
            background: #fff;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #0b1a2e;
            color: #f0e6d0;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .feedback-card .btn-submit:hover {
            background: #1e3a5f;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d6cec2;
            margin-bottom: 14px;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #b8860b;
            transform: scale(1.1);
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin: 24px 0;
            background: #f0ece4;
            padding: 24px 28px;
            border-radius: 14px;
        }
        .link-grid a {
            padding: 6px 0;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .link-grid a i {
            color: #b8860b;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0b1a2e;
            color: #bccbd8;
            padding: 44px 0 28px;
            margin-top: 30px;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        .site-footer h4 {
            color: #f0e6d0;
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 2px solid #b8860b;
            display: inline-block;
            padding-bottom: 6px;
        }
        .site-footer a {
            color: #bccbd8;
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #ffd966;
            text-decoration: none;
        }
        .site-footer .copyright {
            border-top: 1px solid #1e3a5f;
            padding-top: 22px;
            text-align: center;
            font-size: 0.85rem;
            color: #8a9aa8;
        }
        .site-footer .copyright strong {
            color: #dce6f0;
        }
        friend-link {
            display: block;
            background: #11253e;
            padding: 18px 24px;
            border-radius: 10px;
            margin: 16px 0 8px;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 16px 4px 0;
            color: #bccbd8;
        }
        friend-link a:hover {
            color: #ffd966;
        }
        friend-link::before {
            content: "🔗 Friend Links: ";
            color: #b8860b;
            font-weight: 600;
            margin-right: 8px;
        }
        .update-time {
            display: inline-block;
            background: #eae5db;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a5a6a;
            margin: 10px 0 20px;
        }
        .update-time i {
            margin-right: 6px;
            color: #b8860b;
        }
        @media (max-width: 820px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0b1a2e;
                padding: 18px 12px;
                border-radius: 12px;
                margin-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            .nav-overlay.open {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.3);
                z-index: -1;
            }
            .header-inner {
                position: relative;
            }
            .stats-table {
                font-size: 0.85rem;
            }
            .stats-table th,
            .stats-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 24px;
                padding: 12px;
            }
            .search-box button {
                width: 100%;
                margin-top: 8px;
                padding: 12px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .content-article p {
            margin-bottom: 18px;
            font-size: 1.02rem;
        }
        .content-article h2 {
            font-size: 1.9rem;
            margin: 42px 0 18px;
            color: #0b1a2e;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
        }
        .content-article h3 {
            font-size: 1.4rem;
            margin: 32px 0 14px;
            color: #1e3a5f;
        }
        .content-article h4 {
            font-size: 1.15rem;
            margin: 24px 0 10px;
            color: #2c4a6a;
            font-weight: 600;
        }
        .content-article ul,
        .content-article ol {
            margin: 16px 0 20px 24px;
        }
        .content-article li {
            margin-bottom: 8px;
        }
        .content-article .highlight-box {
            background: #f0ece4;
            padding: 24px 28px;
            border-radius: 14px;
            border-left: 6px solid #b8860b;
            margin: 28px 0;
        }
        .content-article .highlight-box i {
            color: #b8860b;
            margin-right: 6px;
        }
        .content-article strong {
            color: #0b1a2e;
        }
        .content-article .emoji-lg {
            font-size: 1.3rem;
        }
