        /* Centralized Color Variables - Green Primary */
        :root {
            /* Greens - primary */
            --sham-green: #16a34a;
            --sham-green-hover: #15803d;
            --sham-green-dark: #064e3b;
            
            /* Gold - accent only (stars, trophies) */
            --sham-gold: #d6b25e;
            --sham-gold-muted: #bfa76a;
            
            /* Status colors */
            --sham-red: #e0565b;
            --sham-blue: #2563eb;
            
            /* Neutrals - light theme */
            --sham-bg: #f7f7f9;
            --sham-card: #ffffff;
            --sham-line: #e7e7ee;
            --sham-text: #111216;
            --sham-muted: #6a717c;
            
            /* Utility values */
            --radius: 12px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --focus-ring: 0 0 0 3px rgba(22, 163, 74, 0.2);
        }

        /* ============================================
           Skeleton Loader Animation
           ============================================ */
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .skeleton {
            background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s ease-in-out infinite;
            border-radius: 4px;
        }

        .skeleton-text {
            height: 1em;
            width: 100%;
            margin-bottom: 0.5em;
        }

        .skeleton-text.short { width: 60%; }
        .skeleton-text.medium { width: 80%; }

        .skeleton-card {
            height: 120px;
            border-radius: var(--radius, 12px);
        }

        .skeleton-row {
            height: 48px;
            margin-bottom: 8px;
            border-radius: 6px;
        }

        /* ============================================
           Fade-In Animation
           ============================================ */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.25s ease-out forwards;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--sham-bg);
            color: var(--sham-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .shamlock-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Skip to main content for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--sham-green);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Team Logos */
        .team-logo-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: block;
        }

        .team-logo-wrapper {
            width: 50px;
            height: 50px;
            background: var(--sham-bg);
            border: 1px solid var(--sham-line);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Header Schedule Section (Sport-agnostic) */
        .nfl-schedule-section,
        .nba-schedule-section,
        .ncaam-schedule-section,
        [class*="-schedule-section"] {
            background: var(--sham-card);
            padding: 40px 0;
            box-shadow: var(--shadow);
            border-top: 3px solid var(--sham-green);
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-align: center;
            color: var(--sham-text);
        }

        .schedule-date-label {
            font-size: 1rem;
            font-weight: 400;
            color: #6b7280;
            text-align: center;
            margin-bottom: 24px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            color: var(--sham-text);
        }

        .accent {
            color: var(--sham-green);
        }

        /* Week Dropdown Selector */
        .shamlock-week-selector-wrapper {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 30px;
        }

        .shamlock-week-dropdown {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: var(--sham-card);
            border: 2px solid var(--sham-green);
            border-radius: 8px;
            padding: 10px 48px 10px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.5;
            min-height: 48px;
            color: var(--sham-text);
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            width: auto;
            min-width: 140px;
            max-width: 200px;
            transition: all 0.2s ease;
            box-shadow: var(--shadow);
        }

        .shamlock-week-dropdown:hover {
            border-color: var(--sham-green-hover);
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }

        .shamlock-week-dropdown:focus {
            outline: none;
            box-shadow: var(--focus-ring);
            border-color: var(--sham-green);
        }

        .shamlock-week-dropdown option {
            padding: 10px;
            font-weight: 500;
        }

        /* Date picker for NCAAM/NBA (date-based navigation) */
        .shamlock-date-picker {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: var(--sham-card);
            border: 2px solid var(--sham-green);
            border-radius: 12px;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--sham-green);
            cursor: pointer;
            min-width: 200px;
            text-align: center;
            transition: all 0.2s ease;
            box-shadow: var(--shadow);
        }

        .shamlock-date-picker:hover {
            border-color: var(--sham-green-hover);
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }

        .shamlock-date-picker:focus {
            outline: none;
            box-shadow: var(--focus-ring);
            border-color: var(--sham-green);
        }

        /* Style the calendar icon */
        .shamlock-date-picker::-webkit-calendar-picker-indicator {
            cursor: pointer;
            filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(107deg) brightness(90%) contrast(95%);
        }

        .week-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 15px;
            flex-wrap: wrap;
        }

        .week-btn {
            padding: 10px 20px;
            background: var(--sham-card);
            border: 2px solid var(--sham-line);
            color: var(--sham-text);
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .week-btn:hover {
            background: var(--sham-green);
            border-color: var(--sham-green);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .week-btn:focus {
            outline: none;
            box-shadow: var(--focus-ring);
            border-color: var(--sham-green);
        }

        .week-btn.active {
            background: var(--sham-green);
            border-color: var(--sham-green);
            color: white;
        }

        /* Updated schedule grid - responsive based on game count */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
            padding: 20px;
            background: var(--sham-bg);
            border-radius: var(--radius);
            border: 1px solid var(--sham-line);
            border-top: 3px solid var(--sham-green);
            justify-content: center; /* Center the grid items */
        }

        /* Fixed column layouts based on game count - cards centered in container */
        .schedule-grid.grid-cols-4 {
            grid-template-columns: repeat(4, minmax(280px, 320px));
            justify-content: center;
        }

        .schedule-grid.grid-cols-3 {
            grid-template-columns: repeat(3, minmax(280px, 350px));
            justify-content: center;
        }

        .schedule-grid.grid-cols-2 {
            grid-template-columns: repeat(2, minmax(280px, 400px));
            justify-content: center;
        }

        .schedule-grid.grid-cols-1 {
            grid-template-columns: minmax(280px, 500px);
            justify-content: center;
        }

        /* Clickable game card links */
        .game-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .game-card-link:hover {
            transform: translateY(-2px);
        }

        .game-card-link:hover .game-card {
            box-shadow: var(--shadow-hover);
        }

        .game-card-link:focus {
            outline: 2px solid var(--sham-green);
            outline-offset: 2px;
            border-radius: var(--radius);
        }

        .game-card-link:focus:not(:focus-visible) {
            outline: none;
        }

        /* Ensure card content doesn't interfere with link */
        .game-card-link .game-card * {
            pointer-events: none;
        }

        .game-card {
            background: var(--sham-card);
            border: 1px solid var(--sham-line);
            border-radius: 8px;
            padding: 12px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(22, 163, 74, 0.12);
            border-color: var(--sham-green);
        }

        .game-card:focus {
            outline: none;
            box-shadow: var(--focus-ring);
            border-color: var(--sham-green);
        }

        /* Game Status Badge */
        .game-status-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .game-status-badge.scheduled {
            background: var(--sham-bg);
            color: var(--sham-muted);
            border: 1px solid var(--sham-line);
        }

        .game-status-badge.live {
            background: var(--sham-red);
            color: white;
            animation: pulse 2s infinite;
        }

        .game-status-badge.final {
            background: var(--sham-muted);
            color: white;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .game-time {
            color: var(--sham-green);
            font-size: 0.8rem;
            margin-bottom: 8px;
            font-weight: 600;
            padding-right: 60px; /* Space for status badge */
        }

        .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            gap: 8px;
        }

        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
        }

        .team-logo-compact {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .team-code {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--sham-text);
        }

        .team-score {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--sham-text);
            font-feature-settings: 'tnum';
        }

        .vs {
            color: var(--sham-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Odds Overlay Container (compact) */
        .game-odds-overlay {
            display: flex;
            justify-content: space-around;
            gap: 6px;
            margin-bottom: 8px;
            padding: 6px 0;
            border-top: 1px solid var(--sham-line);
        }

        .game-odds-overlay.hidden {
            display: none;
        }

        .odds-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            flex: 1;
        }

        .odds-label {
            font-size: 0.65rem;
            color: var(--sham-muted);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            font-weight: 500;
        }

        .odds-value {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--sham-text);
            font-feature-settings: 'tnum';
        }

        .odds-value.snapshot {
            color: var(--sham-muted);
            font-weight: 600;
        }

        .odds-value.live {
            color: var(--sham-green);
        }

        .odds-change {
            font-size: 0.7rem;
            font-weight: 600;
        }

        .odds-change.up {
            color: var(--sham-red);
        }

        .odds-change.down {
            color: var(--sham-green);
        }

        /* Line badge (smaller for compact cards) */
        .game-line-badge {
            display: inline-block;
            background: var(--sham-bg);
            border: 1px solid var(--sham-line);
            color: var(--sham-text);
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin: 4px 0;
        }

        .game-snapshot-indicator {
            font-size: 0.65rem;
            color: var(--sham-muted);
            text-align: center;
            margin-top: 4px;
            font-weight: 500;
        }

        /* Weather chip */
        .game-weather-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--sham-bg);
            border: 1px solid var(--sham-line);
            color: var(--sham-muted);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            margin: 4px 0;
        }

        .game-weather-chip.dome {
            background: var(--sham-green);
            color: white;
            border-color: var(--sham-green-dark);
        }

        /* Predicted score with blur */
        .game-prediction {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--sham-line);
            position: relative;
            text-align: center;
        }

        .game-prediction-score {
            color: var(--sham-green);
            font-size: 1.1rem;
            font-weight: 700;
            font-feature-settings: 'tnum';
        }

        .game-prediction.locked .game-prediction-score {
            filter: blur(8px);
            user-select: none;
        }

        .game-prediction-unlock {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 12px;
            border-radius: 20px;
            color: var(--sham-green);
            font-size: 0.75rem;
            font-weight: 600;
            display: none;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .game-prediction.locked .game-prediction-unlock {
            display: block;
        }

        /* Free Picks Section */
        .free-picks-section {
            padding: 60px 0;
        }

        .free-picks-section .shamlock-container {
            background: var(--sham-bg);
            padding: 40px;
            border-radius: var(--radius);
        }

        .picks-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .pick-card {
            background: var(--sham-card);
            border: 1px solid var(--sham-line);
            border-top: 3px solid var(--sham-green);
            border-radius: var(--radius);
            padding: 12px;
            box-shadow: var(--shadow);
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
            width: 200px;
            min-height: 220px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }

        .pick-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(22, 163, 74, 0.12);
            border-color: var(--sham-green);
        }

        .pick-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--sham-line);
        }

        .pick-type {
            background: var(--sham-green);
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid var(--sham-green-dark);
        }

        .confidence-stars {
            display: flex;
            gap: 1px;
        }

        .star {
            color: #FF8C00 !important;
            font-size: 0.9rem;
        }

        /* Empty stars no longer rendered - styling kept for reference
        .star.empty {
            opacity: 0.3;
        }
        */

        .pick-matchup {
            margin-bottom: 8px;
        }

        .pick-matchup h3 {
            color: var(--sham-text);
            font-size: 0.9rem;
        }

        .pick-teams {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 8px 0;
            gap: 4px;
        }

        .pick-teams .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .pick-teams .team-logo-wrapper {
            width: 28px;
            height: 28px;
        }

        .pick-teams .team-logo-img {
            width: 28px;
            height: 28px;
        }

        .pick-teams .team-name {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--sham-text);
            text-align: center;
            max-width: 75px;
            height: 2.4em;
            line-height: 1.2em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .pick-teams .vs {
            font-size: 0.7rem;
            color: var(--sham-muted);
        }

        .pick-prediction {
            background: var(--sham-bg);
            padding: 10px 8px;
            border-radius: 6px;
            text-align: center;
            border: 1px solid var(--sham-line);
        }

        .prediction-label {
            color: var(--sham-muted);
            font-size: 0.65rem;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .prediction-value {
            color: var(--sham-green);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            min-height: 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .prediction-value .picked-team-logo {
            width: 32px;
            height: 32px;
        }

        .predicted-label {
            font-size: 0.6rem;
            color: var(--sham-muted);
            text-align: center;
            margin-top: 6px;
            margin-bottom: 2px;
        }

        .predicted-score {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--sham-text);
            text-align: center;
        }

        /* RSS Feeds Section */
        .rss-section {
            padding: 60px 0;
            background: var(--sham-card);
        }

        /* RSS grid styles moved to shamlock-rss-rotator.css */

        .rss-item {
            background: var(--sham-card);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.2s ease;
            border: 1px solid var(--sham-line);
            box-shadow: var(--shadow);
        }

        .rss-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--sham-green);
        }

        .rss-image {
            width: 100%;
            height: 180px;
            background: var(--sham-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sham-muted);
            border-bottom: 1px solid var(--sham-line);
        }

        .rss-content {
            padding: 20px;
        }

        .rss-source {
            color: var(--sham-green);
            font-size: 0.85rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .rss-title {
            color: var(--sham-text);
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .rss-link {
            color: var(--sham-green);
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.2s ease;
            font-weight: 500;
        }

        .rss-link:hover {
            gap: 10px;
            color: var(--sham-green-hover);
        }

        .rss-link:focus {
            outline: none;
            box-shadow: var(--focus-ring);
        }

        /* Blog Section */
        .blog-section {
            padding: 60px 0;
        }

        .blog-section .shamlock-container {
            background: var(--sham-bg);
            padding: 40px;
            border-radius: var(--radius);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .blog-card {
            background: var(--sham-card);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.2s ease;
            border: 1px solid var(--sham-line);
            box-shadow: var(--shadow);
        }

        .blog-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(22, 163, 74, 0.12);
            border-color: var(--sham-green);
        }

        .blog-image {
            width: 100%;
            height: 160px;
            background: linear-gradient(135deg, var(--sham-green), var(--sham-green-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .blog-content {
            padding: 16px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--sham-muted);
            font-size: 0.75rem;
        }

        .blog-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--sham-text);
            line-height: 1.3;
        }

        .blog-title a {
            color: var(--sham-text);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .blog-title a:hover {
            color: var(--sham-green);
        }

        .blog-excerpt {
            color: var(--sham-muted);
            line-height: 1.5;
            margin-bottom: 12px;
            font-size: 0.875rem;
        }

        .blog-link {
            display: inline-block;
            color: var(--sham-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }

        .blog-link:hover {
            color: var(--sham-green-hover);
            transform: translateX(3px);
        }

        .blog-link:focus {
            outline: none;
            box-shadow: var(--focus-ring);
        }

        /* Empty States */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--sham-muted);
        }

        .empty-state-icon {
            font-size: 3rem;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        .empty-state h3 {
            color: var(--sham-text);
            margin-bottom: 8px;
        }

        /* Loading States */
        .loading-spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 3px solid var(--sham-line);
            border-top-color: var(--sham-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            /* 4-column grids drop to 3 on medium-large screens */
            .schedule-grid.grid-cols-4 {
                grid-template-columns: repeat(3, minmax(280px, 350px));
            }
        }

        @media (max-width: 1100px) {
            /* 3+ column grids drop to 2 on medium screens */
            .schedule-grid.grid-cols-4,
            .schedule-grid.grid-cols-3 {
                grid-template-columns: repeat(2, minmax(280px, 400px));
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            /* All grids go to single column on mobile */
            .schedule-grid,
            .schedule-grid.grid-cols-4,
            .schedule-grid.grid-cols-3,
            .schedule-grid.grid-cols-2,
            .schedule-grid.grid-cols-1 {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 12px;
            }

            .game-card {
                padding: 10px;
            }

            .game-status-badge {
                font-size: 0.65rem;
                padding: 2px 6px;
            }

            .team-logo-compact {
                width: 28px;
                height: 28px;
            }

            .team-code {
                font-size: 0.8rem;
            }

            .odds-label {
                font-size: 0.6rem;
            }

            .odds-value {
                font-size: 0.75rem;
            }

            .picks-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }

            .week-selector {
                flex-wrap: wrap;
            }

            .shamlock-week-dropdown {
                width: 100%;
                max-width: none;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Print Styles */
        @media print {
            body {
                background: white;
                color: black;
            }

            .week-selector,
            .blog-link {
                display: none;
            }

            .pick-card,
            .rss-item,
            .blog-card {
                border: 1px solid #000;
                box-shadow: none;
            }
        }

        /* Accessibility - Screen Reader Only */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ================================================
           API-SPORTS WIDGET OVERRIDES
           ================================================
           These styles override the default API-Sports widget
           styling to match Shamlock branding.
           ================================================ */

        /* Widget Container Styling */
        [id^="wg-api-football"],
        [id^="wg-api-nfl"] {
            font-family: inherit !important;
            border-radius: 12px !important;
            overflow: hidden !important;
        }

        /* Widget Primary Color Override (Shamlock Green) */
        [id^="wg-api-football"] .widget-header,
        [id^="wg-api-nfl"] .widget-header,
        [id^="wg-api-football"] .widget-title,
        [id^="wg-api-nfl"] .widget-title {
            background-color: var(--sham-green) !important;
            color: white !important;
        }

        /* Widget Links */
        [id^="wg-api-football"] a,
        [id^="wg-api-nfl"] a {
            color: var(--sham-green) !important;
            transition: color 0.2s ease !important;
        }

        [id^="wg-api-football"] a:hover,
        [id^="wg-api-nfl"] a:hover {
            color: var(--sham-green-hover) !important;
        }

        /* Widget Button Styling */
        [id^="wg-api-football"] .widget-btn,
        [id^="wg-api-nfl"] .widget-btn,
        [id^="wg-api-football"] button,
        [id^="wg-api-nfl"] button {
            background-color: var(--sham-green) !important;
            border-color: var(--sham-green) !important;
            color: white !important;
            transition: all 0.2s ease !important;
        }

        [id^="wg-api-football"] .widget-btn:hover,
        [id^="wg-api-nfl"] .widget-btn:hover,
        [id^="wg-api-football"] button:hover,
        [id^="wg-api-nfl"] button:hover {
            background-color: var(--sham-green-hover) !important;
            border-color: var(--sham-green-hover) !important;
        }

        /* Widget Card Backgrounds */
        [id^="wg-api-football"] .widget-card,
        [id^="wg-api-nfl"] .widget-card,
        [id^="wg-api-football"] .fixture-item,
        [id^="wg-api-nfl"] .fixture-item,
        [id^="wg-api-football"] .news-item,
        [id^="wg-api-nfl"] .news-item {
            background-color: var(--sham-card) !important;
            border: 1px solid var(--sham-line) !important;
            border-radius: 8px !important;
            transition: all 0.2s ease !important;
        }

        [id^="wg-api-football"] .widget-card:hover,
        [id^="wg-api-nfl"] .widget-card:hover,
        [id^="wg-api-football"] .fixture-item:hover,
        [id^="wg-api-nfl"] .fixture-item:hover,
        [id^="wg-api-football"] .news-item:hover,
        [id^="wg-api-nfl"] .news-item:hover {
            border-color: var(--sham-green) !important;
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15) !important;
        }

        /* Widget Text Colors */
        [id^="wg-api-football"] .widget-text,
        [id^="wg-api-nfl"] .widget-text,
        [id^="wg-api-football"] p,
        [id^="wg-api-nfl"] p,
        [id^="wg-api-football"] span,
        [id^="wg-api-nfl"] span {
            color: var(--sham-text) !important;
        }

        /* Widget Accent Colors (Gold for highlights) */
        [id^="wg-api-football"] .widget-accent,
        [id^="wg-api-nfl"] .widget-accent,
        [id^="wg-api-football"] .highlight,
        [id^="wg-api-nfl"] .highlight {
            color: var(--sham-gold) !important;
        }

        /* Widget Loading State */
        [id^="wg-api-football"] .widget-loading,
        [id^="wg-api-nfl"] .widget-loading {
            color: var(--sham-green) !important;
        }

        /* Widget Error State */
        [id^="wg-api-football"] .widget-error,
        [id^="wg-api-nfl"] .widget-error {
            background-color: rgba(239, 68, 68, 0.1) !important;
            color: var(--sham-red) !important;
            border: 1px solid var(--sham-red) !important;
            border-radius: 8px !important;
            padding: 16px !important;
        }

        /* Responsive Widget Adjustments */
        @media (max-width: 768px) {
            [id^="wg-api-football"],
            [id^="wg-api-nfl"] {
                font-size: 0.9rem !important;
            }

            [id^="wg-api-football"] .widget-card,
            [id^="wg-api-nfl"] .widget-card {
                padding: 12px !important;
            }
        }

        /* End of API-Sports Widget Overrides */

/* Game Odds Line Styles */
.game-odds-line {
    display: flex;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 8px;
    margin-top: 8px;
    padding-left: 55px;
    padding-right: 45px;
}

.game-bookmakers {
    display: flex;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 4px;
}

/* Mobile adjustments for odds alignment */
@media (max-width: 768px) {
    .game-odds-line {
        padding-left: 46px;
        padding-right: 47px;
    }

    .game-bookmakers {
        padding-left: 47px;
        padding-right: 48px;
    }
}

/* ================================================
   PICK TRACKER - Simplified Design
   ================================================
   Shared header with "PICK TRACKER" + game status
   Two side-by-side inner cards for picks
   ================================================ */

/* Controls row - flex container for date selector, hidden notice, and tracker */
.shamlock-controls-row {
    display: flex;
    justify-content: flex-start; /* Left-align items */
    align-items: flex-start; /* Top-align all items */
    align-content: flex-start; /* Align wrapped rows to start */
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Left column: date selector wrapper */
.shamlock-week-selector-wrapper {
    margin-bottom: 0; /* Override default margin-bottom: 30px */
    flex: 0 0 auto; /* Don't grow, don't shrink, auto width */
}

/* Hidden games notice - stays left, bottom aligned with tracker */
#hiddenGamesNotice {
    align-self: flex-end; /* Bottom-align with tracker */
    flex: 0 0 auto; /* Don't grow, don't shrink, auto width (content-based) */
    /* Stays left - no margin-right: auto to avoid competing with tracker's margin-left */
}

/* Tracker goes to far right */
#liveRecordCard {
    margin-left: auto; /* Push tracker to the right - this pulls all space to the left of it */
    flex: 0 0 auto; /* Don't grow, don't shrink, auto width */
}

/* Main Pick Tracker Container */
.pick-tracker-container {
    background: var(--sham-card);
    border: 1px solid var(--sham-line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 580px; /* Wider to prevent wrapping */
}

/* Shared Header */
.pick-tracker-header {
    background: var(--sham-bg);
    padding: 10px 16px;
    text-align: center;
    border-bottom: 1px solid var(--sham-line);
}

.pick-tracker-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sham-text);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.pick-tracker-status {
    font-size: 0.75rem;
    color: var(--sham-muted);
}

.pick-tracker-status .status-live {
    color: var(--sham-red);
    font-weight: 600;
}

/* Live dot animation */
.record-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--sham-red);
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 2s infinite;
}

/* Inner Cards Container - side by side */
.pick-tracker-cards {
    display: flex;
    flex-direction: row;
}

/* Individual Inner Card */
.tracker-inner-card {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
}

/* Separator between cards */
.tracker-inner-card + .tracker-inner-card {
    border-left: 1px solid var(--sham-line);
}

/* Colored top border for tracker type */
.tracker-inner-card[data-tracker="picker"] {
    border-top: 3px solid var(--sham-green);
}

.tracker-inner-card[data-tracker="user"] {
    border-top: 3px solid var(--sham-gold);
}

/* Inner Card Title */
.tracker-inner-title {
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tracker-inner-card[data-tracker="picker"] .tracker-inner-title {
    color: var(--sham-green);
}

.tracker-inner-card[data-tracker="user"] .tracker-inner-title {
    color: var(--sham-gold);
}

/* Records Row */
.tracker-records-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.tracker-record-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tracker-record-label {
    font-weight: 600;
    color: var(--sham-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.tracker-record-value {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sham-text);
    font-feature-settings: 'tnum';
}

.tracker-record-value.positive {
    color: var(--sham-green);
}

.tracker-record-value.negative {
    color: var(--sham-red);
}

.tracker-record-value.neutral {
    color: var(--sham-muted);
}

.tracker-divider {
    color: var(--sham-line);
    font-weight: 300;
    font-size: 0.8rem;
}

/* Percentages Row - aligned under records */
.tracker-pcts-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 4px;
}

.tracker-pct {
    font-size: 0.65rem;
    color: var(--sham-muted);
    font-weight: 500;
    min-width: 40px;
}

/* Mobile responsive - stack cards vertically */
@media (max-width: 480px) {
    .shamlock-controls-row {
        flex-direction: column;
        align-items: stretch;
    }

    /* Override min-width to prevent bleeding on mobile */
    .pick-tracker-container {
        min-width: 0;
        width: 100%;
    }

    .pick-tracker-cards {
        flex-direction: column;
    }

    .tracker-inner-card + .tracker-inner-card {
        border-left: none;
        border-top: 1px solid var(--sham-line);
    }

    .tracker-records-row {
        gap: 6px;
    }

    .tracker-pcts-row {
        gap: 16px;
    }
}

/* End of Pick Tracker styles */

/* ================================================
   HIDE GAME BUTTON - Hover to reveal (desktop)
   Swipe left to reveal (mobile)
   ================================================ */

/* Game card container needs position relative for absolute button */
.shamlock-game-card {
    position: relative;
    overflow: visible;
}

/* Hide button - hidden by default, shows on hover */
.hide-game-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 15;
    background: var(--sham-card, #ffffff);
    border: 1px solid var(--sham-line, #e5e7eb);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, right 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Show on card hover (desktop) */
.shamlock-game-card:hover .hide-game-btn {
    opacity: 1;
    transform: scale(1);
}

/* Hover state for the button itself */
.hide-game-btn:hover {
    background: var(--sham-red, #ef4444);
    border-color: var(--sham-red, #ef4444);
    color: white;
}

/* Active/pressed state */
.hide-game-btn:active {
    background: var(--sham-red, #ef4444);
    border-color: var(--sham-red, #ef4444);
    transform: scale(0.95);
}

/* Mobile: button hidden by default, revealed via swipe */
@media (hover: none) and (pointer: coarse) {
    .hide-game-btn {
        opacity: 0;
        transform: scale(1);
        right: -36px; /* Hidden off-screen to the right */
        transition: opacity 0.2s ease, right 0.2s ease;
    }

    /* Revealed state via swipe - added by JS */
    .shamlock-game-card.swipe-revealed .hide-game-btn {
        opacity: 1;
        right: 8px;
    }

    .hide-game-btn:active {
        opacity: 1;
        background: var(--sham-red, #ef4444);
        border-color: var(--sham-red, #ef4444);
    }
}

/* ============================================
   Marketing CTA Section (Non-Members Only)
   Task 137: Clean, concise pitch for each sport
   ============================================ */
.marketing-cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(214, 178, 94, 0.05) 100%);
    border-top: 1px solid var(--sham-line);
    border-bottom: 1px solid var(--sham-line);
}

.marketing-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.marketing-pitch {
    font-size: 1.1rem;
    color: var(--sham-text);
    line-height: 1.6;
    margin: 0;
}

.marketing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--sham-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.marketing-cta-btn:hover {
    background: var(--sham-green-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.marketing-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .marketing-cta-section {
        padding: 30px 0;
    }

    .marketing-pitch {
        font-size: 1rem;
    }

    .marketing-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* ============================================
   Result Badges for Final Games
   ============================================ */
.result-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
}

.result-win {
    background: #16a34a;
    color: white;
}

.result-loss {
    background: #dc2626;
    color: white;
}

.result-push {
    background: #6b7280;
    color: white;
}

/* ============================================
   Pill Action Buttons (Track Units, Parlay, Delete)
   ============================================ */
.sham-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
    white-space: nowrap;
    line-height: 1.4;
    vertical-align: middle;
}

.sham-pill-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Track Units variant — muted gray, green on hover */
.sham-pill-track {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #d1d5db;
}

.sham-pill-track:hover {
    background: #f0fdf4;
    color: var(--sham-green);
    border-color: var(--sham-green);
}

.sham-pill-track.active {
    background: #f0fdf4;
    color: var(--sham-green);
    border-color: var(--sham-green);
}

/* Parlay variant — gold outline, green fill on hover */
.sham-pill-parlay {
    background: rgba(214, 178, 94, 0.1);
    color: var(--sham-gold, #d6b25e);
    border-color: var(--sham-gold, #d6b25e);
}

.sham-pill-parlay:hover {
    background: var(--sham-green);
    border-color: var(--sham-green);
    color: #fff;
}

/* Parlay "added" feedback state */
.sham-pill-parlay.added {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

/* Parlay "already in" feedback state */
.sham-pill-parlay.already {
    opacity: 0.6;
}

/* Delete variant — subtle red */
.sham-pill-delete {
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.25);
    padding: 3px 8px;
}

.sham-pill-delete:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.sham-pill-delete:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   NFL Offseason Countdown
   ============================================ */
.offseason-hero {
    padding: 60px 0 40px;
}

.offseason-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.offseason-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--sham-text);
}

.offseason-subtitle {
    color: var(--sham-muted);
    font-size: 1rem;
    margin: 0 0 36px;
    line-height: 1.5;
}

/* Countdown timer */
.offseason-countdown {
    margin: 0 auto 36px;
}

.countdown-event {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sham-green);
    margin-bottom: 16px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.countdown-value {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--sham-text);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sham-muted);
    margin-top: 4px;
    font-weight: 600;
}

.countdown-sep {
    font-size: 2rem;
    font-weight: 300;
    color: var(--sham-muted);
    opacity: 0.4;
    margin-top: -18px;
}

/* Milestone timeline */
.countdown-milestones {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    position: relative;
}

.countdown-milestones::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--sham-line);
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    max-width: 140px;
}

.milestone-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sham-line);
    border: 2px solid #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.milestone.passed .milestone-dot {
    background: var(--sham-green);
}

.milestone.active .milestone-dot {
    background: var(--sham-green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

.milestone-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sham-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.milestone.active .milestone-label {
    color: var(--sham-green);
}

.milestone.passed .milestone-label {
    color: var(--sham-muted);
    opacity: 0.6;
}

.milestone-date {
    font-size: 0.65rem;
    color: var(--sham-muted);
    opacity: 0.7;
    margin-top: 2px;
}

/* CTA links to active sports */
.offseason-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.offseason-sport-link {
    display: inline-block;
    padding: 10px 28px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid var(--sham-green);
    color: var(--sham-green);
    transition: all 0.2s;
}

.offseason-sport-link:hover {
    background: var(--sham-green);
    color: #fff;
}

@media (max-width: 600px) {
    .offseason-title {
        font-size: 1.6rem;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-unit {
        min-width: 48px;
    }

    .countdown-milestones {
        flex-wrap: wrap;
        gap: 16px;
    }

    .countdown-milestones::before {
        display: none;
    }

    .milestone {
        flex: 0 0 auto;
    }
}

/* ── + Props button on game cards ── */
.landing-add-props-btn {
    display: block;
    width: 100%;
    padding: 5px 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--sham-green);
    background: var(--sham-card);
    border: 1px solid var(--sham-line);
    border-top: none;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s;
}
.landing-add-props-btn:hover {
    background: #f0fdf4;
    color: var(--sham-green-hover);
}
.landing-add-props-btn.landing-props-disabled {
    color: #9ca3af;
    background: #f9fafb;
    cursor: not-allowed;
    opacity: 0.6;
}
.landing-add-props-btn.landing-props-disabled:hover {
    background: #f9fafb;
    color: #9ca3af;
}

.landing-props-panel {
    background: var(--sham-card);
    border: 1px solid var(--sham-line);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 8px 10px;
}

.landing-props-inner select,
.landing-props-inner input[type="number"] {
    border: 1px solid var(--sham-line);
    border-radius: 4px;
    background: #fff;
    color: #1f2937;
    font-size: 11px;
}
.landing-props-inner select:focus,
.landing-props-inner input:focus {
    outline: none;
    border-color: var(--sham-green);
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

/* Saved props summary (always visible below game card) */
.landing-props-summary {
    border: 1px solid var(--sham-line, #e5e7eb);
    border-top: none;
    padding: 4px 8px;
    background: var(--sham-card, #fff);
}
.prop-summary-row {
    display: flex;
    align-items: baseline;
    padding: 4px 8px;
    margin-bottom: 2px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    transition: background 0.3s;
}
.prop-summary-row:last-child {
    margin-bottom: 0;
}
.prop-summary-cell {
    flex-shrink: 0;
    white-space: nowrap;
}
.prop-summary-name {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}
.prop-summary-team {
    font-weight: 700;
    opacity: 0.6;
    font-size: 10px;
    margin-right: 2px;
}
.prop-summary-type {
    width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 10px;
}
.prop-summary-line {
    width: 70px;
    text-align: left;
}
.prop-summary-actual {
    width: 28px;
    text-align: right;
    font-weight: 700;
}
.prop-summary-delete {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1;
    padding: 0 0 0 6px;
    margin-left: 4px;
    transition: color 0.15s;
}
.prop-summary-delete:hover {
    color: #ef4444;
}

/* ============================================================
   MLB tiles: pitcher names, doubleheader, lineup pending
   ============================================================ */
.tile-pitcher {
    font-size: 0.62rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
    display: block;
    margin-top: 1px;
}

.tile-pitcher.tile-pitcher-scratched {
    color: #dc2626;
    text-decoration: line-through;
}

.tile-game-number {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: #374151;
    border-radius: 3px;
    padding: 1px 5px;
    display: inline-block;
    margin-bottom: 4px;
}

.tile-lineup-pending {
    font-size: 8px;
    font-weight: 600;
    color: #d97706;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 3px;
    padding: 1px 5px;
    text-align: center;
    margin-top: 4px;
}
