*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --espn-red: #c41230;
            --espn-dark: #1c1c1c;
            --espn-gray: #2a2a2a;
            --bg-light: #f4f4f4;
            --text-dark: #222;
            --text-muted: #555;
            --white: #fff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: 0.3s ease;
            --max-width: 1200px;
            --font-base: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-base);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--espn-red);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #a00e26;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--espn-dark);
            color: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: var(--max-width);
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--white);
            text-transform: uppercase;
            transition: opacity var(--transition);
        }
        .my-logo:hover {
            opacity: 0.85;
            color: var(--white);
        }
        .my-logo span {
            color: var(--espn-red);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
        }
        .primary-nav a:hover {
            color: var(--white);
            border-bottom-color: var(--espn-red);
        }
        .primary-nav .active {
            color: var(--white);
            border-bottom-color: var(--espn-red);
        }
        .breadcrumb-wrap {
            background: var(--white);
            border-bottom: 1px solid #e0e0e0;
            padding: 10px 0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.85rem;
            color: var(--text-muted);
            gap: 6px 12px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #aaa;
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--espn-red);
        }
        .breadcrumb .current {
            color: var(--espn-red);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
            color: var(--white);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚾";
            position: absolute;
            right: -30px;
            bottom: -40px;
            font-size: 18rem;
            opacity: 0.06;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .hero h1 span {
            color: var(--espn-red);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 20px;
            color: #bbb;
            line-height: 1.7;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #888;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: var(--espn-red);
        }
        .main-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 40px 20px 60px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .section-block {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 36px;
            margin-bottom: 32px;
            box-shadow: var(--shadow);
            transition: box-shadow var(--transition);
        }
        .section-block:hover {
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
        }
        .section-block h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--espn-red);
            color: var(--espn-dark);
        }
        .section-block h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin: 28px 0 14px;
            color: #2a2a2a;
        }
        .section-block h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #3a3a3a;
        }
        .section-block p {
            margin-bottom: 16px;
            color: #3a3a3a;
        }
        .section-block ul,
        .section-block ol {
            margin: 12px 0 20px 24px;
            color: #3a3a3a;
        }
        .section-block li {
            margin-bottom: 8px;
        }
        .section-block .highlight-box {
            background: #f9f2f2;
            border-left: 4px solid var(--espn-red);
            padding: 16px 20px;
            border-radius: 6px;
            margin: 20px 0;
        }
        .section-block .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .section-block .stat-card {
            background: var(--bg-light);
            padding: 16px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e8e8e8;
        }
        .section-block .stat-card .number {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--espn-red);
        }
        .section-block .stat-card .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
        }
        .featured-image {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: #eee;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: #fafafa;
            border-top: 1px solid #e8e8e8;
        }
        .sidebar .side-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }
        .sidebar .side-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--espn-dark);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--espn-red);
        }
        .sidebar .link-list {
            list-style: none;
            margin: 0;
        }
        .sidebar .link-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar .link-list li:last-child {
            border-bottom: none;
        }
        .sidebar .link-list a {
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar .link-list a i {
            font-size: 0.7rem;
            color: var(--espn-red);
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 18px 0 8px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color var(--transition);
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--espn-red);
        }
        .search-form button {
            padding: 12px 24px;
            background: var(--espn-red);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a00e26;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: var(--font-base);
            resize: vertical;
            min-height: 100px;
            transition: border-color var(--transition);
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: var(--espn-red);
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color var(--transition);
        }
        .comment-form .form-row input:focus {
            border-color: var(--espn-red);
        }
        .comment-form button {
            padding: 12px 28px;
            background: var(--espn-dark);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--transition);
        }
        .comment-form button:hover {
            background: #000;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .rating-form button {
            padding: 10px 24px;
            background: var(--espn-red);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .rating-form button:hover {
            background: #a00e26;
        }
        .site-footer {
            background: var(--espn-dark);
            color: #aaa;
            padding: 40px 20px 20px;
            margin-top: 20px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #3a3a3a;
        }
        .footer-inner h4 {
            color: var(--white);
            font-size: 1.05rem;
            margin-bottom: 14px;
            font-weight: 700;
        }
        .footer-inner p {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul a {
            color: #999;
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        .footer-inner ul a:hover {
            color: var(--white);
        }
        .footer-bottom {
            max-width: var(--max-width);
            margin: 20px auto 0;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
            padding-top: 16px;
        }
        .footer-bottom .copyright {
            margin-top: 8px;
        }
        friend-link {
            display: block;
            margin: 16px 0 0;
            padding: 16px 0 0;
            border-top: 1px solid #3a3a3a;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #999;
            margin: 0 8px;
        }
        friend-link a:hover {
            color: var(--white);
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 12px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                background: #111;
                padding: 12px 0;
                border-radius: 0 0 8px 8px;
                margin-top: 10px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 16px;
                border-bottom: 1px solid #2a2a2a;
                width: 100%;
            }
            .primary-nav a:last-child {
                border-bottom: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-grid {
                grid-template-columns: 1fr;
                padding: 20px 16px 40px;
                gap: 24px;
            }
            .section-block {
                padding: 22px 18px;
            }
            .section-block h2 {
                font-size: 1.4rem;
            }
            .section-block h3 {
                font-size: 1.15rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 8px 16px;
            }
            .sidebar {
                order: 2;
            }
            .hero .meta {
                flex-direction: column;
                gap: 6px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .section-block {
                padding: 16px 14px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f0f0;
        }
        ::-webkit-scrollbar-thumb {
            background: #aaa;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #888;
        }
        .schema-hidden {
            display: none;
        }
