        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #003366;
            --giants-red: #a6192e;
            --giants-blue: #0b2265;
            --accent-gold: #d4af37;
            --light-gray: #f5f7fa;
            --dark-gray: #333333;
            --text-color: #222;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--giants-blue);
            transition: var(--transition);
        }
        a:hover {
            color: var(--giants-red);
        }
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--giants-blue) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo span {
            color: var(--accent-gold);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--accent-gold);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background-color: var(--primary-blue);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 999;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: white;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: var(--accent-gold);
            padding-left: 10px;
        }
        .close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            top: 1rem;
            right: 1rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--giants-blue);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--dark-gray);
            margin: 0 0.5rem;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            article {
                padding: 1.5rem;
            }
        }
        h1 {
            color: var(--primary-blue);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.8rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            color: var(--giants-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 0.5rem;
        }
        h3 {
            color: var(--giants-red);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--dark-gray);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: rgba(212, 175, 55, 0.08);
            border-left: 4px solid var(--accent-gold);
        }
        .highlight {
            background-color: rgba(166, 25, 46, 0.08);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--giants-red);
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            margin: 2.5rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .cta-box {
            background: linear-gradient(to right, var(--giants-blue), var(--primary-blue));
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin: 3rem 0;
        }
        .cta-box h3 {
            color: white;
            margin-top: 0;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .cta-button:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .search-section {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ccc;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: var(--giants-blue);
        }
        .search-button {
            background-color: var(--giants-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--giants-red);
        }
        .user-interaction {
            background-color: #f9f9f9;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
            border: 1px solid #eee;
        }
        .rating-section, .comment-section {
            margin-bottom: 2.5rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            padding: 0 0.1rem;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            padding: 0.9rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-control:focus {
            border-color: var(--giants-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(11, 34, 101, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            align-self: flex-start;
            background-color: var(--giants-red);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-button:hover {
            background-color: var(--primary-blue);
            transform: translateY(-2px);
        }
        footer {
            background-color: var(--dark-gray);
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-heading {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
            display: inline-block;
        }
        .footer-links a {
            color: #bbb;
            display: block;
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            color: #bbb;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #bbb;
        }
        friend-link a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        .last-updated {
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-italic {
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .float-left {
            float: left;
            margin: 0 1.5rem 1rem 0;
            max-width: 50%;
        }
        @media (max-width: 768px) {
            .float-left {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
        }
