        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { text-decoration: none; color: #1e73be; transition: color 0.3s ease; }
        a:hover { color: #e63946; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        h1 { font-size: 2.8rem; color: #0c4a6e; margin: 1.5rem 0; line-height: 1.2; border-left: 5px solid #e63946; padding-left: 1rem; }
        h2 { font-size: 2.2rem; color: #1e73be; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e5e7eb; }
        h3 { font-size: 1.8rem; color: #2d3748; margin: 2rem 0 1rem; }
        h4 { font-size: 1.4rem; color: #4a5568; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        strong { color: #0c4a6e; }
        .highlight { background-color: #fffbdd; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .updated { font-style: italic; color: #6b7280; font-size: 0.9rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: linear-gradient(90deg, #0c4a6e 0%, #1e73be 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i { color: #fbbf24; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f3f4f6;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4b5563; }
        .breadcrumb a:hover { color: #1e73be; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            margin: 0;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #fbbf24;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-box {
            background-color: #f8fafc;
            padding: 2rem 0;
            border-bottom: 1px solid #e5e7eb;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-button:hover { background-color: #c1121f; }
        .main-content {
            flex-grow: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .sidebar {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 { font-size: 1.5rem; margin-top: 0; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .featured-image img { width: 100%; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #6b7280;
            padding: 0.8rem;
            background-color: #f9fafb;
            border-top: 1px solid #e5e7eb;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        .schedule-table th {
            background-color: #0c4a6e;
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 700;
        }
        .schedule-table td {
            padding: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
        .schedule-table tr:nth-child(even) { background-color: #f8fafc; }
        .schedule-table tr:hover { background-color: #e0f2fe; }
        .match-time { color: #e63946; font-weight: 600; }
        .rating-section, .comment-section {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #fbbf24;
        }
        .star { cursor: pointer; transition: transform 0.2s; }
        .star:hover { transform: scale(1.2); }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #1e73be;
            box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .submit-button {
            background-color: #0c4a6e;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover { background-color: #1e73be; }
        .site-footer {
            background-color: #0c4a6e;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-links h3 { color: #fbbf24; font-size: 1.3rem; margin-bottom: 1.2rem; }
        .footer-links ul { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #cbd5e0; }
        .footer-links a:hover { color: white; text-decoration: underline; }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        friend-link:hover { background-color: rgba(255,255,255,0.2); }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: #9ca3af;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; margin-top: 1rem; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
            .main-nav a { display: block; padding: 0.8rem 0; }
            .hamburger { display: block; position: absolute; top: 1rem; right: 1.5rem; }
            .sidebar { position: static; }
        }
