* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f0f2f5;
            color: #2c3e50;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #1e3799;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #e84118;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3799 0%, #0c2461 100%);
            color: #fff;
            padding: 18px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffd93d;
            font-size: 32px;
        }
        .my-logo span {
            color: #ffd93d;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #ffd93d;
        }
        .main-nav {
            display: flex;
            gap: 25px;
            transition: all 0.3s ease;
        }
        .main-nav a {
            color: #dcdde1;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            font-size: 15px;
        }
        .main-nav a:hover {
            color: #ffd93d;
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd93d;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            color: #fff;
            cursor: pointer;
            padding: 5px 10px;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 14px;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #1e3799;
        }
        .breadcrumb i {
            color: #adb5bd;
            font-size: 12px;
        }
        .breadcrumb .current {
            color: #1e3799;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(120deg, #e8f4fc 0%, #d1ecf1 50%, #f0f8ff 100%);
            padding: 50px 0;
            text-align: center;
            border-bottom: 3px solid #1e3799;
        }
        .hero h1 {
            font-size: 42px;
            color: #1e3799;
            margin-bottom: 15px;
            font-weight: 800;
            line-height: 1.3;
        }
        .hero p {
            font-size: 18px;
            color: #555;
            max-width: 750px;
            margin: 0 auto 25px;
        }
        .hero .btn-play {
            display: inline-block;
            background: #e84118;
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(232, 65, 24, 0.4);
            transition: all 0.3s;
        }
        .hero .btn-play:hover {
            background: #c23616;
            transform: translateY(-2px);
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(232, 65, 24, 0.5);
        }
        .search-area {
            background: #fff;
            padding: 25px 0;
            border-bottom: 1px solid #e9ecef;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            position: relative;
        }
        .search-box input {
            flex: 1;
            padding: 14px 50px 14px 20px;
            border: 2px solid #e9ecef;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #1e3799;
        }
        .search-box button {
            background: #1e3799;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0c2461;
        }
        .content-area {
            padding: 40px 0;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 330px;
            gap: 40px;
        }
        .article-main {
            background: #fff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
        }
        .article-main h2 {
            font-size: 28px;
            color: #1e3799;
            margin: 40px 0 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd93d;
            display: inline-block;
        }
        .article-main h3 {
            font-size: 22px;
            color: #2c3e50;
            margin: 30px 0 12px;
            font-weight: 700;
        }
        .article-main h4 {
            font-size: 18px;
            color: #555;
            margin: 22px 0 10px;
            font-weight: 600;
        }
        .article-main p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .article-main ul, .article-main ol {
            margin: 0 0 20px 25px;
        }
        .article-main li {
            margin-bottom: 8px;
        }
        .feature-image {
            width: 100%;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .highlight-box {
            background: linear-gradient(135deg, #f9f9f9, #f0f4ff);
            border-left: 5px solid #1e3799;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box p {
            margin-bottom: 8px;
        }
        .stat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 15px;
        }
        .stat-table th, .stat-table td {
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .stat-table th {
            background: #1e3799;
            color: #fff;
            font-weight: 600;
        }
        .stat-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
        }
        .widget h3 {
            font-size: 20px;
            color: #1e3799;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd93d;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 12px;
            padding: 8px 0;
            border-bottom: 1px dashed #e9ecef;
        }
        .widget-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #333;
            font-size: 15px;
        }
        .widget-links a i {
            color: #e84118;
            font-size: 14px;
        }
        .widget-links a:hover {
            color: #1e3799;
            text-decoration: none;
            padding-left: 5px;
        }
        .rating-section {
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 32px;
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s;
        }
        .rating-stars input:checked + label,
        .rating-stars label:hover {
            color: #ffd93d;
        }
        .rating-btn {
            background: #1e3799;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s;
        }
        .rating-btn:hover {
            background: #0c2461;
        }
        .comment-section {
            margin: 30px 0;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        .comment-section textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }
        .comment-section textarea:focus {
            border-color: #1e3799;
            outline: none;
        }
        .comment-btn {
            background: #27ae60;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 15px;
            margin-top: 12px;
            transition: all 0.3s;
        }
        .comment-btn:hover {
            background: #229954;
        }
        .interviews {
            margin: 30px 0;
        }
        .interview-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 22px;
            margin-bottom: 20px;
            border-left: 4px solid #1e3799;
        }
        .interview-card .player-name {
            font-weight: 700;
            color: #1e3799;
            font-size: 18px;
            margin-bottom: 5px;
        }
        .interview-card .player-loc {
            color: #777;
            font-size: 14px;
            margin-bottom: 12px;
        }
        .interview-card .quote {
            font-style: italic;
            color: #555;
            margin-bottom: 10px;
        }
        .faq-item {
            margin-bottom: 20px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        .faq-item h4 {
            margin-bottom: 8px;
            color: #1e3799;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h3 {
            color: #ffd93d;
            font-size: 18px;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 0;
            border-bottom: 1px solid #333;
        }
        friend-link a {
            color: #ccc;
            font-size: 14px;
        }
        friend-link a:hover {
            color: #ffd93d;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 14px;
            color: #888;
        }
        .float-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #e84118;
            color: #fff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 99;
            transition: all 0.3s;
        }
        .float-btn:hover {
            transform: scale(1.1);
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                background: #0c2461;
                padding: 15px;
                border-radius: 8px;
                margin-top: 10px;
            }
            .main-nav.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .article-main {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .stat-table {
                font-size: 13px;
            }
            .stat-table th, .stat-table td {
                padding: 8px 6px;
            }
            .search-box {
                flex-direction: column;
                padding: 0 15px;
            }
            .search-box button {
                padding: 12px;
                width: 100%;
                border-radius: 10px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 20px;
            }
            .hero {
                padding: 30px 0;
            }
            .hero h1 {
                font-size: 22px;
            }
            .hero .btn-play {
                padding: 10px 20px;
                font-size: 15px;
            }
            .content-area {
                padding: 20px 0;
            }
            .article-main {
                padding: 15px;
                border-radius: 8px;
            }
            .article-main h2 {
                font-size: 22px;
            }
            .article-main h3 {
                font-size: 18px;
            }
            .rating-stars label {
                font-size: 26px;
            }
        }
