* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f4;
            color: #1f2a3a;
            line-height: 1.7;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(0,0,0,0.05);
        }
        .site-header {
            background: linear-gradient(145deg, #0b1c2f, #132d4a);
            padding: 18px 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            color: #fff;
            border-bottom: 3px solid #f4c542;
        }
        .my-logo a {
            color: #f4c542;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: 'Arial Black', Impact, sans-serif;
        }
        .my-logo span {
            color: #fff;
            font-size: 1rem;
            display: block;
            letter-spacing: 4px;
            font-weight: 300;
        }
        .search-bar {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            padding: 4px 12px;
            border-radius: 60px;
        }
        .search-bar input {
            border: none;
            padding: 10px 14px;
            width: 200px;
            border-radius: 30px;
            outline: none;
            font-size: 0.95rem;
        }
        .search-bar button {
            background: transparent;
            border: none;
            font-size: 1.3rem;
            color: #0b1c2f;
            cursor: pointer;
        }
        nav.main-nav ul {
            display: flex;
            list-style: none;
            gap: 12px;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            color: #fff;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 30px;
            background: rgba(255,255,255,0.08);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        nav.main-nav a:hover {
            background: #f4c542;
            color: #0b1c2f;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #eae2d5;
            padding: 10px 30px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d8cdbd;
        }
        .breadcrumb a {
            color: #0b1c2f;
            text-decoration: none;
            padding-right: 8px;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
            padding: 30px;
        }
        @media (max-width: 1000px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            overflow: hidden;
        }
        h1 {
            font-size: 2.5rem;
            color: #0b1c2f;
            margin-bottom: 12px;
            line-height: 1.2;
            border-left: 8px solid #f4c542;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 18px;
            color: #132d4a;
            border-bottom: 2px solid #f4c542;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 12px;
            color: #1f2a3a;
        }
        h4 {
            font-size: 1.2rem;
            margin: 24px 0 8px;
            color: #2c3e50;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .hero-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 20px 0 30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .image-caption {
            font-size: 0.85rem;
            color: #5f6b7a;
            text-align: center;
            margin-top: -20px;
            margin-bottom: 30px;
        }
        .odds-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 0.95rem;
        }
        .odds-table th, .odds-table td {
            border: 1px solid #d8cdbd;
            padding: 12px 10px;
            text-align: left;
        }
        .odds-table th {
            background: #0b1c2f;
            color: white;
        }
        .odd-highlight {
            background: #fdf4e0;
        }
        .pull-quote {
            background: #f4f0eb;
            border-left: 6px solid #f4c542;
            padding: 20px 28px;
            font-size: 1.5rem;
            font-style: italic;
            margin: 30px 0;
            border-radius: 0 20px 20px 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background: #ffffff;
            padding: 22px 18px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eae2d5;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 30px rgba(0,0,0,0.1);
        }
        .feature-card i {
            font-size: 2.2rem;
            color: #f4c542;
            margin-bottom: 10px;
        }
        blockquote {
            background: #edf3fa;
            padding: 20px 25px;
            border-radius: 12px;
            margin: 20px 0;
            font-style: italic;
            border-left: 5px solid #132d4a;
        }
        .player-interview {
            background: #eef4f9;
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
        }
        .rating-section, .comment-section {
            background: #f8f4ee;
            padding: 20px 25px;
            border-radius: 18px;
            margin: 30px 0;
            border: 1px solid #e0d5c5;
        }
        .rating-section form, .comment-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .rating-section select, .comment-section textarea {
            flex: 1 1 200px;
            padding: 12px;
            border-radius: 30px;
            border: 1px solid #ccc;
        }
        .btn {
            background: #132d4a;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .btn:hover {
            background: #f4c542;
            color: #0b1c2f;
        }
        .friend-links {
            padding: 30px;
            background: #eae2d5;
            margin-top: 30px;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            font-weight: 600;
            border-bottom: 1px dashed #aaa;
        }
        friend-link a {
            color: #132d4a;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            color: #5f6b7a;
            font-size: 0.9rem;
            padding: 20px;
            background: #0b1c2f;
            color: #aaa;
        }
        aside.sidebar {
            background: #f4efea;
            padding: 24px;
            border-radius: 24px;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        aside.sidebar h3 {
            color: #132d4a;
        }
        aside.sidebar a {
            display: block;
            padding: 8px 0;
            color: #1f2a3a;
            text-decoration: none;
            border-bottom: 1px solid #d0c8bc;
        }
        aside.sidebar a:hover {
            color: #f4c542;
        }
        @media (max-width: 700px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -45px;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
            }
            .search-bar {
                width: 100%;
                margin-top: 5px;
            }
            .search-bar input {
                flex: 1;
                width: 100%;
            }
            h1 {
                font-size: 1.9rem;
            }
        }
