<?xml version="1.0" encoding="utf-8"?>
<!-- Premium channel tile selector with focus/current states -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Focused state: gradient white overlay + cyan stroke -->
    <item android:state_focused="true">
        <layer-list>
            <item>
                <shape android:shape="rectangle">
                    <gradient
                        android:startColor="#1FFFFFFF"
                        android:endColor="#0FFFFFFF"
                        android:angle="0" />
                    <corners android:radius="14dp" />
                    <stroke
                        android:width="1.5dp"
                        android:color="#8000E5FF" />
                </shape>
            </item>
        </layer-list>
    </item>

    <!-- Pressed state: solid white overlay -->
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="#1AFFFFFF" />
            <corners android:radius="14dp" />
        </shape>
    </item>

    <!-- Default state: transparent -->
    <item>
        <shape android:shape="rectangle">
            <solid android:color="#00000000" />
            <corners android:radius="14dp" />
        </shape>
    </item>

</selector>
