:root {
            --giants-blue: #0b2265;
            --giants-red: #a71930;
            --metlife-green: #00a95c;
            --neutral-light: #f8f9fa;
            --neutral-dark: #212529;
            --neutral-gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--neutral-light);
            color: var(--neutral-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--giants-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--giants-red);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--giants-blue) 0%, #1a3a8f 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--metlife-green);
            font-size: 2.5rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        .nav-menu a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-menu a:hover {
            color: #ffd166;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--metlife-green);
            transition: width 0.3s ease;
        }
        .nav-menu a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .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: var(--neutral-gray);
        }
        .search-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 2.5rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 12px;
        }
        .search-section h2 {
            color: var(--giants-blue);
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
        }
        .search-form button {
            background-color: var(--giants-blue);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--giants-red);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h1 {
            color: var(--giants-blue);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--metlife-green);
            padding-bottom: 1rem;
        }
        .article-meta {
            color: var(--neutral-gray);
            font-style: italic;
            margin-bottom: 2.5rem;
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .article-meta i {
            color: var(--metlife-green);
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section h2 {
            color: var(--giants-blue);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #dee2e6;
        }
        .article-section h3 {
            color: var(--giants-red);
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
        }
        .article-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--metlife-green);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--neutral-dark);
        }
        .related-link {
            display: inline-block;
            background-color: #e7f5ff;
            color: var(--giants-blue);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            margin: 0.2rem;
            font-weight: 500;
        }
        .related-link:hover {
            background-color: #d0ebff;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--giants-blue);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--metlife-green);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-widget input, .rating-widget textarea, .comment-widget textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-widget button, .comment-widget button {
            background-color: var(--giants-blue);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background-color: var(--giants-red);
        }
        .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment-item {
            border-bottom: 1px solid #dee2e6;
            padding: 1rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--neutral-gray);
        }
        .site-footer {
            background-color: var(--neutral-dark);
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #adb5bd;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .friend-links-section {
            background-color: #2b3035;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        .friend-links-section h4 {
            color: var(--metlife-green);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-link-item {
            background-color: #495057;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .friend-link-item a {
            color: #dee2e6;
        }
        .friend-link-item a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 85px;
                left: -100%;
                flex-direction: column;
                background-color: var(--giants-blue);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                gap: 1.5rem;
                transition: 0.3s;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active {
                left: 0;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
