* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f0f2f5;
            color: #2c3e50;
            line-height: 1.75;
        }
        a {
            color: #1a2a6c;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #b21f1f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #173a6b);
            color: #fff;
            padding: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            filter: brightness(1.1);
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        .nav-menu li a {
            color: #ddd;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .breadcrumb {
            background: #f8f9fa;
            padding: 10px 20px;
            font-size: 0.85rem;
            border-bottom: 1px solid #e9ecef;
            max-width: 100%;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb ol li::after {
            content: "›";
            margin-left: 5px;
            color: #999;
        }
        .breadcrumb ol li:last-child::after {
            content: "";
        }
        .breadcrumb a {
            color: #1a2a6c;
            text-decoration: none;
        }
        main {
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
                padding: 15px;
            }
        }
        article {
            background: #fff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        @media (max-width: 768px) {
            article {
                padding: 20px;
            }
        }
        article h1 {
            font-size: 2.2rem;
            color: #1a2a6c;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        article h2 {
            font-size: 1.6rem;
            color: #1a2a6c;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e9ecef;
        }
        article h3 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin: 25px 0 10px;
        }
        article h4 {
            font-size: 1rem;
            color: #495057;
            margin: 15px 0 8px;
        }
        article p {
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #868e96;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .featured-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .img-caption {
            font-size: 0.85rem;
            color: #868e96;
            text-align: center;
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .info-box {
            background: #f8f9fa;
            border-left: 4px solid #1a2a6c;
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .info-box.team-box {
            border-left-color: #b21f1f;
        }
        .info-box.hot-tip {
            border-left-color: #28a745;
        }
        .team-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #dee2e6;
        }
        .team-card.giants {
            border-top: 4px solid #0b2265;
        }
        .team-card.jets {
            border-top: 4px solid #125740;
        }
        .team-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-card h3 i {
            font-size: 1.5rem;
            color: #1a2a6c;
        }
        .team-card.jets h3 i {
            color: #125740;
        }
        ul,
        ol {
            margin: 10px 0 20px 25px;
        }
        li {
            margin-bottom: 8px;
        }
        .faq-item {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 12px;
        }
        .faq-item h4 {
            margin: 0 0 5px;
            color: #1a2a6c;
        }
        .comment-section,
        .rating-section,
        .search-section {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            margin-top: 25px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .comment-section form,
        .rating-section form,
        .search-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-section textarea,
        .rating-section select,
        .search-section input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
        .comment-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-section textarea:focus,
        .rating-section select:focus,
        .search-section input:focus {
            outline: none;
            border-color: #1a2a6c;
        }
        .btn {
            background: #1a2a6c;
            color: #fff;
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn:hover {
            background: #0f1a4a;
        }
        .btn-secondary {
            background: #6c757d;
        }
        .btn-secondary:hover {
            background: #5a6268;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating i.active {
            color: #f9d423;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .sidebar-widget h3 {
            font-size: 1.1rem;
            color: #1a2a6c;
            margin-bottom: 12px;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 8px;
        }
        .sidebar-widget ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-widget ul li {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        .sidebar-widget ul li i {
            color: #1a2a6c;
            margin-right: 8px;
            font-size: 0.8rem;
        }
        .sidebar-widget ul li a {
            text-decoration: none;
            color: #2c3e50;
        }
        .sidebar-widget ul li a:hover {
            color: #1a2a6c;
        }
        .weather-widget {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: #fff;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        .weather-widget h3 {
            border-bottom: none;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .weather-widget .temp {
            font-size: 2.5rem;
            font-weight: 800;
        }
        .weather-widget .condition {
            font-size: 0.95rem;
        }
        footer {
            background: #1a2a6c;
            color: #ccc;
            padding: 40px 20px 20px;
            margin-top: 40px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
        }
        .footer-col ul li a:hover {
            color: #f9d423;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #aaa;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #f9d423;
            text-decoration: none;
            margin-right: 15px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 8px;
                padding: 10px 0;
            }
            .nav-menu.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb ol {
                font-size: 0.78rem;
            }
        }
        @media (max-width: 480px) {
            article h1 {
                font-size: 1.6rem;
            }
            article h2 {
                font-size: 1.3rem;
            }
            article {
                padding: 15px;
            }
        }
