* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blue: #0a2e6b;
            --baseball-red: #d50032;
            --field-green: #2a7a3b;
            --warning-yellow: #ffc107;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-blue);
            transition: var(--transition);
        }
        a:hover {
            color: var(--baseball-red);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4a8f 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span {
            color: var(--warning-yellow);
            transform: rotate(-10deg);
            display: inline-block;
        }
        .my-logo:hover {
            color: white;
        }
        #mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--warning-yellow);
        }
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-top: 1rem;
            border-radius: 4px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "/";
            margin-left: 0.5rem;
            color: #888;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-blue);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--warning-yellow);
        }
        h2 {
            color: var(--field-green);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--baseball-red);
        }
        h3 {
            color: var(--dark-gray);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-blue);
            background-color: rgba(10, 46, 107, 0.05);
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--primary-blue);
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed var(--warning-yellow);
            margin: 1.5rem 0;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image img:hover {
            transform: scale(1.01);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .quote {
            font-style: italic;
            padding: 1.5rem;
            background: linear-gradient(to right, #f0f8ff, #e6f2ff);
            border-left: 5px solid var(--primary-blue);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-author {
            text-align: right;
            font-weight: bold;
            color: var(--dark-gray);
            margin-top: 1rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: #f0f8ff;
            border-radius: 10px;
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--baseball-red);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            margin-top: 0.5rem;
        }
        .interactive-section {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-gray);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(10, 46, 107, 0.1);
        }
        button, .btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover, .btn:hover {
            background-color: var(--baseball-red);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--warning-yellow);
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background-color: #f9f9f9;
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.2rem;
            border-left: 3px solid var(--field-green);
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #777;
            margin-left: auto;
        }
        .comment-rating {
            color: var(--warning-yellow);
            margin: 0.3rem 0;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--warning-yellow);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .related-links a:hover {
            color: var(--baseball-red);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .tag {
            background-color: #e9ecef;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--dark-gray);
            transition: var(--transition);
        }
        .tag:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        footer {
            background-color: var(--dark-gray);
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #bbb;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            margin: 1rem 0;
            border-left: 4px solid var(--warning-yellow);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            #mobile-menu-toggle {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                padding: 0.8rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            article, aside {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
        .key-term {
            background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 700;
            color: #000;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background-color: var(--baseball-red);
            transform: translateY(-5px);
        }
