        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fafaf9;
            color: #1c1917;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0369a1;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0284c7;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0c0a09;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #e11d48;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #e11d48;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #1e293b;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #334155;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            padding: 0.8rem 0;
            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;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(90deg, #e11d48, #facc15);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #facc15;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo span {
            -webkit-text-fill-color: #fff;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.1rem 0.6rem;
            border-radius: 20px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e2e8f0;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            text-decoration: none;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb .current {
            color: #0c0a09;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 70%, #e11d48 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #facc15;
            font-size: 2.4rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 800px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .hero-meta i {
            margin-right: 0.3rem;
            color: #facc15;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding-bottom: 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.5rem;
            border: 1px solid #f1f5f9;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 2px solid #e11d48;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: baseline;
            gap: 0.4rem;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-card li a::before {
            content: "⚽";
            font-size: 0.8rem;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            display: flex;
            align-items: center;
            border: 2px solid #e2e8f0;
            transition: border-color 0.3s;
            max-width: 500px;
            margin: 1.5rem 0;
        }
        .search-box:focus-within {
            border-color: #e11d48;
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0.6rem 0;
            font-size: 0.95rem;
            background: transparent;
            color: #1c1917;
        }
        .search-box button {
            background: #e11d48;
            border: none;
            color: #fff;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: #be123c;
        }
        .venue-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            margin: 1.5rem 0;
        }
        .venue-table th {
            background: #0f172a;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .venue-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.9rem;
        }
        .venue-table tr:hover td {
            background: #f8fafc;
        }
        .venue-table .capacity {
            font-weight: 700;
            color: #e11d48;
        }
        .interaction-area {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin: 2.5rem 0;
            border: 1px solid #f1f5f9;
        }
        .interaction-area h2 {
            margin-top: 0;
            border-left-color: #facc15;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            color: #334155;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fafaf9;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e11d48;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #e11d48;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #be123c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: #e11d48;
            border: 2px solid #e11d48;
        }
        .btn-outline:hover {
            background: #e11d48;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #facc15;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #e11d48;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #facc15;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 1rem 0;
            border-top: 1px solid #1e293b;
            border-bottom: 1px solid #1e293b;
            margin-bottom: 1.2rem;
        }
        .friend-link a {
            font-size: 0.85rem;
            color: #94a3b8;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .friend-link a::before {
            content: "⚽";
            font-size: 0.7rem;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
            padding-top: 1.2rem;
            border-top: 1px solid #1e293b;
        }
        .copyright strong {
            color: #e2e8f0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1e293b;
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero {
                padding: 2rem 0 1.8rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .venue-table {
                font-size: 0.8rem;
            }
            .venue-table th,
            .venue-table td {
                padding: 0.5rem 0.6rem;
            }
            .interaction-area {
                padding: 1.2rem;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 16px;
                padding: 0.5rem;
            }
            .search-box input {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            .search-box button {
                width: 100%;
                border-radius: 12px;
                margin-top: 0.3rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo span {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.3rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        .highlight {
            background: linear-gradient(90deg, #fef3c7, #fde68a);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #e11d48;
            color: #fff;
            font-size: 0.7rem;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .badge-gold {
            background: #facc15;
            color: #0f172a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.2rem;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #e11d48;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 0.3rem;
        }
        .img-placeholder {
            background: linear-gradient(135deg, #1e293b, #334155);
            border-radius: 16px;
            padding: 2rem;
            color: #94a3b8;
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
            min-height: 240px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
        .img-placeholder .caption {
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }
        .img-placeholder i {
            font-size: 3rem;
            color: #facc15;
            margin-bottom: 0.5rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e11d48;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(225, 29, 72, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 999;
            border: none;
            opacity: 0;
            visibility: hidden;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(225, 29, 72, 0.5);
        }
