* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fb;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border-radius: 28px;
            padding: 1.5rem 2rem 2rem;
            margin-top: 1.2rem;
            margin-bottom: 2rem;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #004080;
            text-decoration: underline;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #eef0f5;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0a2351, #1e4a7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #1e4a7a;
            font-size: 2rem;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 600;
            font-size: 1rem;
            padding: 0.4rem 0.8rem;
            border-radius: 40px;
            transition: background 0.2s, color 0.2s;
            color: #1a1a2e;
        }
        .nav-bar a:hover {
            background: #eef3fc;
            color: #004080;
            text-decoration: none;
        }
        .nav-bar a.active {
            background: #0a2351;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a1a2e;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef3fc;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .breadcrumb {
            padding: 1rem 0 0.8rem;
            font-size: 0.9rem;
            color: #5a5e7a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #5a5e7a;
        }
        .breadcrumb a:hover {
            color: #0066cc;
        }
        .breadcrumb span {
            margin: 0 0.2rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.6rem 0 0.8rem;
            color: #0a2351;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem;
            color: #0f2b4f;
            border-left: 5px solid #1e4a7a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.6rem 0 0.8rem;
            color: #1a3a5c;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #2a4a6c;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #23253e;
        }
        .highlight {
            font-weight: 700;
            color: #0a2351;
        }
        .emoji {
            font-size: 1.3rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 20px;
            margin: 1.8rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            max-height: 500px;
            object-fit: cover;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            margin: 2rem 0 1.5rem;
            max-width: 600px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dde0ea;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #1e4a7a;
        }
        .search-box button {
            padding: 0.8rem 1.8rem;
            background: #0a2351;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #1e4a7a;
        }
        .user-feedback {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding: 1.8rem 2rem;
            background: #f8faff;
            border-radius: 24px;
            border: 1px solid #e6ecf5;
        }
        .comment-area,
        .rating-area {
            flex: 1;
            min-width: 240px;
        }
        .comment-area h3,
        .rating-area h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-area textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dde0ea;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #1e4a7a;
        }
        .comment-area button,
        .rating-area button {
            margin-top: 0.6rem;
            padding: 0.6rem 1.6rem;
            background: #0a2351;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.95rem;
        }
        .comment-area button:hover,
        .rating-area button:hover {
            background: #1e4a7a;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4d8e0;
            cursor: pointer;
            margin: 0.4rem 0 0.6rem;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-value {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0a2351;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .schedule-table th {
            background: #0a2351;
            color: #fff;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .schedule-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #eef0f5;
        }
        .schedule-table tr:hover td {
            background: #f6f9ff;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1.5rem 0;
            padding: 1rem 1.2rem;
            background: #f3f6fe;
            border-radius: 16px;
        }
        .related-links a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .related-links a::before {
            content: "⚽ ";
        }
        .footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eef0f5;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            font-weight: 500;
            color: #2a4a6c;
        }
        friend-link a:hover {
            color: #0066cc;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.5rem;
            font-size: 0.9rem;
            color: #6a6e8a;
            border-top: 1px solid #eef0f5;
            margin-top: 1rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a6e8a;
            text-align: right;
            margin-top: 0.5rem;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1.2rem 1.5rem;
                margin-top: 0.6rem;
                border-radius: 18px;
            }
            .header {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.3rem;
                padding: 1rem 0 0.5rem;
            }
            .nav-menu.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-bar a {
                width: 100%;
                padding: 0.6rem 1rem;
            }
            .user-feedback {
                flex-direction: column;
                padding: 1.2rem;
            }
            .schedule-table {
                font-size: 0.85rem;
            }
            .schedule-table th,
            .schedule-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-box button {
                padding: 0.7rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .related-links {
                flex-direction: column;
                gap: 0.4rem;
            }
            friend-link a {
                display: block;
                margin: 0.4rem 0;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem 0.9rem 1.2rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .inline-icon {
            margin-right: 0.4rem;
        }
        .nav-menu.open {
            display: flex;
        }
        .insight-box {
            background: #f0f5ff;
            border-left: 4px solid #1e4a7a;
            padding: 1.2rem 1.6rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .insight-box p:last-child {
            margin-bottom: 0;
        }
        .score-display {
            font-weight: 700;
            font-size: 1.2rem;
            color: #0a2351;
        }
