<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Main solid dark gradient background - Netflix/HBO Max style - 100% OPAQUE -->
    <item>
        <shape android:shape="rectangle">
            <!-- Fully solid gradient from dark charcoal to deeper black - NO transparency -->
            <gradient
                android:angle="90"
                android:startColor="@color/netflix_deep_black"
                android:endColor="@color/netflix_dark_charcoal"
                android:type="linear" />
        </shape>
    </item>

    <!-- Top border highlight for subtle depth -->
    <item>
        <shape android:shape="rectangle">
            <stroke
                android:width="1dp"
                android:color="@color/netflix_border_highlight" />
        </shape>
    </item>

</layer-list>
