@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Premium Dark Navy */
    --bg-dark: #090C13;
    --sidebar-bg: #0D121F;
    --surface-light: rgba(255, 255, 255, 0.03);
    --accent-blue: #3E6EEB;
    --accent-red: #FF3B30;
    --text-primary: #FFFFFF;
    --text-secondary: #949BA6;
    --text-tertiary: #5D636E;

    /* Styling */
    --radius-lg: 28px;
    --radius-md: 18px;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 1.5rem;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand h2 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.brand-icon {
    padding: 0.4rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05); /* Subtle background for desktop */
}

.brand-icon i {
    width: 20px;
    color: white;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.sidebar {
    width: 250px;
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.sidebar .brand {
    margin-bottom: 3rem;
}

.close-sidebar {
    display: none;
}

.sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.sidebar nav ul li a:hover,
.sidebar nav ul li a.active,
.sidebar nav ul li a.webradios-trigger:hover {
    color: white;
}

.sidebar nav ul li a.webradios-trigger {
    background: none;
    border: none;
    margin-top: 1rem;
}

.sidebar nav ul li a i {
    width: 20px;
    height: 20px;
}

.main-content {
    flex: 1;
    padding: 2rem 3rem;
    padding-bottom: 140px;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--surface-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Typography */
h1 {
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -0.04em;
    color: white;
    background: linear-gradient(135deg, #FFFFFF 0%, #A5A5A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #A5A5A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Components */
/* Header & Search */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.search-container {
    background: #151A26;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 320px;
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    width: 100%;
}

.search-input:focus {
    outline: none;
}

/* Filters */
.filter-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--surface-glass);
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-pill.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Station Grid */
.station-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 6rem 4rem !important;
    margin-top: 5rem !important;
    padding-left: 70px !important;
    overflow: visible !important;
}

.station-card {
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.station-rank {
    position: absolute !important;
    left: -80px !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    font-size: 15rem !important;
    font-weight: 800 !important;
    line-height: .7 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-family: 'Outfit', sans-serif !important;
    opacity: 0.25 !important;
    display: block !important;
    -webkit-text-stroke: 0 !important;
}

/* Exact colors and logic from the screenshot */
/* Gradients from graphic charter */
.station-card:nth-child(1) .station-rank {
    background: linear-gradient(135deg, var(--accent-red), #FF708D) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    opacity: 0.4 !important;
}

.station-card:nth-child(2) .station-rank {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    opacity: 0.35 !important;
}

.station-card:nth-child(3) .station-rank {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    opacity: 0.35 !important;
}

.station-card:nth-child(n+4) .station-rank {
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.4), transparent) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    opacity: 0.15 !important;
}

.station-card:hover {
    transform: none;
}

.station-card:hover p {
    text-decoration: underline;
}

.station-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: #151A26;
    margin-bottom: 0.8rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.station-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.station-status-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.station-card.is-playing .station-status-text {
    color: var(--accent-red);
    font-weight: 600;
}

.live-indicator {
    display: none;
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    position: relative;
}

.station-card.is-playing .live-indicator {
    display: block;
    box-shadow: 0 0 10px var(--accent-red);
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.favourite-btn {
    position: absolute !important;
    bottom: 0.8rem !important;
    left: 0.8rem !important;
    top: auto !important;
    right: auto !important;
    width: 32px !important;
    height: 32px !important;
    background: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition-smooth) !important;
    z-index: 10 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.favourite-btn i {
    width: 16px !important;
    color: #0A0D14 !important;
    fill: none !important;
    stroke: #0A0D14 !important;
}

.favourite-btn.active i {
    fill: var(--accent-red) !important;
    color: var(--accent-red) !important;
    stroke: var(--accent-red) !important;
}

.station-name-label {
    font-weight: 700;
    margin-top: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    color: white;
}

.favourite-btn:hover {
    transform: scale(1.1);
}

.play-badge {
    display: none;
    /* Already playing on card click */
}

/* Audio Player */
.player-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    min-width: 800px;
    height: 85px;
    background: #0D121F;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.player-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    max-width: 450px;
    margin: 0 2rem;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn i {
    width: 20px !important;
    fill: #0A0D14 !important;
    color: #0A0D14 !important;
}

.progress-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.1s linear;
}

.player-extra {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 250px;
    justify-content: flex-end;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .main-content {
        padding: 2rem;
    }

    .player-extra {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 2500;
        background: rgba(9, 12, 19, 0.98);
        backdrop-filter: blur(30px);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        padding: 6rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow-x: hidden;
    }

    .sidebar.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Submenu active: keep sidebar frozen in place, overlay covers it */
    body.submenu-active .sidebar.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: none;
    }

    .sidebar .brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 4rem !important;
        gap: 1rem;
    }

    .sidebar .brand h2 {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .mobile-header .brand {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .mobile-header .brand h2 {
        font-size: 1.5rem;
    }

    .sidebar nav ul li a {
        justify-content: center;
        font-size: 1.5rem;
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .sidebar .user-profile {
        margin-top: auto;
        width: 100%;
        justify-content: center;
    }

    .close-sidebar {
        display: flex !important;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-smooth);
    }

    .close-sidebar:hover {
        background: var(--accent-red);
        transform: rotate(90deg);
    }

    .main-content {
        padding: 5rem 1rem 120px 1rem;
    }

    .content-header h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        width: 100%;
    }

    .search-container {
        max-width: 100%;
    }

    .mobile-header .brand h2 {
        font-size: 1.9rem;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .station-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
        gap: 2rem 1rem !important;
        padding-left: 0 !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
    }

    .station-thumb {
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .station-rank {
        display: none !important;
    }

    .station-status-text {
        font-size: 0.75rem;
    }

    .player-bar {
        bottom: 1rem;
        width: calc(100% - 1.5rem);
        height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    #player-track-info {
        width: 100%;
        justify-content: center;
    }

    .player-controls {
        max-width: 100%;
    }

    .player-extra {
        display: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Genre Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 12, 19, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile Radio Sub-menu ─────────────────────────────── */
@media (max-width: 768px) {

    /* Overlay always in DOM, hidden off-screen to the right */
    .overlay {
        display: flex !important;
        flex-direction: column;
        background: #090C13 !important;   /* solid — no page bleed */
        backdrop-filter: none !important;
        transform: translateX(100%) !important;
        opacity: 1 !important;
        pointer-events: none;
        transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: 3000 !important;          /* above sidebar (2500) */
    }

    /* Slide in when submenu-active */
    body.submenu-active .overlay {
        transform: translateX(0) !important;
        pointer-events: auto;
    }

    /* Sidebar stays in place — overlay covers it from the right */
    body.submenu-active .sidebar.active {
        pointer-events: none;
    }

    /* ── Overlay content layout ── */
    .overlay-content {
        padding: 0 !important;
        height: 100% !important;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    /* ── Header bar ── */
    .overlay-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 0.7rem !important;
        margin-bottom: 0 !important;
        padding: 1.1rem 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        flex-shrink: 0;
        position: sticky;
        top: 0;
        background: #090C13;
        z-index: 10;
    }

    .overlay-header h2 {
        font-size: 1.4rem !important;
        letter-spacing: -0.02em;
    }

    .overlay-title-block {
        text-align: left;
    }

    /* ── Back button (top-left) ── */
    .back-to-menu {
        display: flex !important;
        align-items: center;
        gap: 0.8rem;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        color: white;
        padding: 0.4rem 0.85rem;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.78rem;
        cursor: pointer;
        transition: var(--transition-smooth);
        margin: 0;
        white-space: nowrap;
    }

    .back-to-menu:hover {
        background: var(--accent-blue);
        border-color: var(--accent-blue);
    }

    /* Hide desktop close-X on mobile */
    .close-overlay {
        display: none !important;
    }

    .back-to-menu.mobile-only {
        display: flex !important;
    }

    /* ── Genre grid — 2-column compact ── */
    .genre-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        padding: 0.5rem 0 6rem 0;
        flex: 1;
    }

    /* Each category item */
    .genre-item {
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        border-right: 1px solid rgba(255,255,255,0.05) !important;
        padding: 1.8rem 1.2rem !important; /* Balanced vertical padding */
        border-radius: 0 !important;
        align-items: center !important; /* Centered horizontally */
        justify-content: center !important; /* Centered vertically in a way */
        text-align: center !important; /* Centered text */
        gap: 0.4rem !important;
        transition: background 0.2s ease !important;
        box-shadow: none !important;
        transform: none !important;
    }

    /* Remove right border from right-column items */
    .genre-item:nth-child(2n) {
        border-right: none !important;
    }

    .genre-item:hover {
        background: rgba(255,255,255,0.04) !important;
        transform: none !important;
    }

    /* Station name */
    .genre-name {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        color: white !important;
        letter-spacing: 0.02em !important;
        word-break: break-word !important;
    }

    .genre-item:hover .genre-name {
        color: var(--accent-blue) !important;
    }

    /* Station count badge */
    .genre-count {
        font-size: 0.75rem !important;
        font-weight: 500 !important;
        color: var(--text-secondary) !important;
        background: rgba(255,255,255,0.05) !important;
        padding: 0.25rem 0.65rem !important;
        border-radius: 100px !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        margin-top: 4px !important;
        margin-left: auto; /* Centering helper */
        margin-right: auto; /* Centering helper */
        width: fit-content !important;
    }

    .genre-item:hover .genre-count {
        color: white !important;
        border-color: var(--accent-blue) !important;
        background: rgba(62,110,235,0.12) !important;
    }
}

.overlay-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    height: 100%;
    overflow-y: auto;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.overlay-header h2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
}

.close-overlay {
    background: var(--surface-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-overlay:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

/* ── Genre Grid (Desktop) ─────────────────────────────── */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem 2rem;
}

.genre-item {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
}

.genre-item:hover {
    transform: translateX(10px);
}

.genre-name {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    transition: color 0.3s ease;
}

.genre-item:hover .genre-name {
    color: var(--accent-blue);
}

.genre-count {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5px;
    width: fit-content;
}

.genre-item:hover .genre-count {
    color: white;
    border-color: var(--accent-blue);
    background: rgba(62, 110, 235, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Android Download Banner */
.android-banner {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 2rem);
    max-width: 500px;
    background: rgba(24, 25, 32, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.android-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.android-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.android-icon-box {
    width: 42px;
    height: 42px;
    background: #3DDC84; /* Android Green */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.android-text h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.android-text p {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.android-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-apk {
    background: white;
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    transition: transform 0.2s;
}

.btn-apk:active {
    transform: scale(0.95);
}

.btn-later {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .android-banner {
        bottom: 100px;
    }
}