
        :root {
            --bg-color: #0d0e12;
            --card-bg: #16171d;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --accent-green: #10b981;
            
            --imdb-yellow: #f5c518;
            --rt-red: #fa320a;
            --meta-green: #00ce6a;
            
            /* Typography Variables */
            --font-main: 'Inter', sans-serif;
            --font-strong-names: 'Plus Jakarta Sans', sans-serif; /* Bold/fun font just for the talent names */
        }

      

        /* 100% Fluid Card Container */
        .movie-card {
            background: var(--card-bg);
            border-radius: 16px;
            width: 100%; 
            margin:20px 0;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-sizing: border-box;
        }

        /* Ratings Bar (Kept original Inter font styling) */
        .ratings-bar {
            display: flex;
            flex-wrap: wrap; 
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(0, 0, 0, 0.15);
        }

        .rating-item {
            flex: 1;
            min-width: 80px; 
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 14px 8px;
            text-align: center;
            box-sizing: border-box;
            text-decoration: none;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .rating-item:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .rating-item:hover {
            background-color: rgba(255, 255, 255, 0.03);
            transform: translateY(-1px);
        }

        .rating-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-secondary);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .rating-value {
            font-size: 1.15rem;
            font-weight: 700;
        }

        .imdb .rating-value { color: var(--imdb-yellow); }
        .rotten .rating-value { color: var(--rt-red); }
        .metacritic .rating-value { color: var(--meta-green); }

        .card-content {
            padding: 24px;
        }

        .movie-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .year-badge {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .info-grid {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .info-row {
            display: flex;
            flex-direction: row; 
            align-items: flex-start;
        }

        .info-label {
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            width: 110px; 
            flex-shrink: 0; 
            padding-top: 4px; /* Perfectly aligns baseline with larger text */
        }

        /* Targeted styling for the Director/Actor section */
        .info-value {
            font-family: var(--font-strong-names);
            font-size: 1.1rem; /* Expanded size */
            font-weight: 700;   /* Strong bold presence */
            line-height: 1.6;  /* Comfortable reading space */
            flex-grow: 1;
        }

        .separator {
            color: var(--text-primary);
            padding: 0 2px;
            font-weight: 900;
        }

        .person-link {
            color: var(--text-primary);
            text-decoration: none;
            display: inline-block;
            border-bottom: 2px solid transparent; 
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .person-link:hover {
            color: #38bdf8; 
            border-color: rgba(56, 189, 248, 0.5);
        }

        /* Left-aligned Footer */
        .card-footer {
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: flex-start; 
        }

        /* Restored original styling for the Capsule Button */
        .watch-location-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent-green);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap; 
            text-decoration: none;
            border: 1px solid rgba(16, 185, 129, 0.15);
            transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .watch-location-capsule::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 5px;
            background-color: var(--accent-green);
            border-radius: 50%;
            transition: background-color 0.2s ease, box-shadow 0.2s ease;
        }

        .watch-location-capsule:hover {
            background: rgba(16, 185, 129, 0.18);
            color: #34d399; 
            border-color: rgba(52, 211, 153, 0.4);
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
        }

        .watch-location-capsule:hover::before {
            background-color: #34d399;
            box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
        }

        @media (max-width: 480px) {
            .card-content {
                padding: 16px; 
            }
            
            .info-row {
                flex-direction: column; 
                gap: 4px;
            }

            .info-label {
                width: 100%; 
                padding-top: 0;
                font-size: 0.75rem;
            }

            .info-value {
                font-size: 1.05rem; /* Slightly adjusts for mobile screens */
            }

            .card-footer {
                margin-top: 20px;
                padding-top: 14px;
            }
        }