/**
 * RAJU TV — Live TV Streaming Platform
 * Core Dark Theme & Responsive Stylesheet
 */

:root {
    --bg-main: #0a0e17;
    --bg-surface: #111827;
    --bg-surface-elevated: #1a2234;
    --bg-hover: #222d42;
    --border-color: #1f293d;
    --border-color-light: #2c384e;
    --primary-color: #e50914;
    --primary-hover: #b20710;
    --accent-cyan: #00d2ff;
    --accent-emerald: #10b981;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
}

[data-bs-theme="light"] {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f1f5f9;
    --bg-hover: #e2e8f0;
    --border-color: #e2e8f0;
    --border-color-light: #cbd5e1;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Base resets */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #28354d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b4d6e;
}

/* Sticky Header */
.site-header {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition);
}

[data-bs-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.9);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.brand-logo .brand-badge {
    background: linear-gradient(135deg, var(--primary-color), #ff3b47);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
    font-size: 1.1rem;
}

/* Header Live Search */
.header-search {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.header-search input {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 50px;
    padding: 0.55rem 1.2rem 0.55rem 2.6rem;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
}

.header-search input:focus {
    background: var(--bg-surface-elevated);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
    outline: none;
    color: var(--text-primary);
}

.header-search .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    z-index: 1050;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--bg-hover);
}

.search-result-logo {
    width: 44px;
    height: 32px;
    object-fit: contain;
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

/* Category Pills Bar */
.category-scroller {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.4rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.category-scroller::-webkit-scrollbar {
    display: none;
}

.category-pill {
    white-space: nowrap;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.35);
}

/* Hero Section */
.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.7) 60%, rgba(10, 14, 23, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    max-width: 600px;
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 240px;
        margin-bottom: 1.25rem;
        border-radius: var(--radius-md);
    }
    .hero-content {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Channel Grid & Cards — Modern IPTV App Grid System (Matching HridoyTV Design)
   ========================================================================== */

/* 3 Columns on Mobile (Matching User Screenshot), Scaling up on Larger Devices */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .channel-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .channel-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

@media (min-width: 992px) {
    .channel-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1400px) {
    .channel-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

/* Grid Column Item Wrapper */
.channel-card-col {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Channel Card Container */
.channel-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: #141a24;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 6px 6px 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Hover & Active Glowing Green State (Matching HridoyTV Sports in Screenshot) */
.channel-card:hover,
.channel-card.active {
    transform: translateY(-3px);
    border-color: #00C853 !important; /* Vibrant Emerald Green */
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.28), 0 0 10px rgba(0, 200, 83, 0.15) !important;
}

/* White Logo Box Canvas */
.channel-logo-box {
    width: 100%;
    aspect-ratio: 16 / 11;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.08);
}

/* Channel Image Inside Canvas — Covers entire white box edge-to-edge with no white borders */
.channel-logo-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease;
}

/* Fallback vector SVGs — contained cleanly inside canvas */
.channel-logo-img.is-svg-logo,
.channel-logo-img[src*=".svg"] {
    width: 88%;
    height: 82%;
    max-width: 88%;
    max-height: 82%;
    object-fit: contain;
    margin: auto;
}

.channel-card:hover .channel-logo-img {
    transform: scale(1.05);
}

/* Badge (NEW / LIVE) — Top Right of Logo Box (Matching Geo Super & Cricbuzz in Screenshot) */
.badge-card-new {
    position: absolute;
    top: 0;
    right: 0;
    background: #e50914;
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
    padding: 3px 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 9px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.badge-card-live {
    position: absolute;
    top: 0;
    right: 0;
    background: #e50914;
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    padding: 3px 5px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 9px;
    letter-spacing: 0.4px;
    z-index: 3;
}

.badge-card-offline {
    position: absolute;
    top: 0;
    right: 0;
    background: #475569;
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1;
    padding: 3px 5px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 9px;
    z-index: 3;
}

/* Favorite Heart Toggle Button (Top-Left of Logo Box) */
.btn-card-fav {
    position: absolute;
    top: 3px;
    left: 3px;
    background: rgba(15, 23, 42, 0.4);
    border: none;
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    z-index: 3;
    opacity: 0.65;
    transition: all 0.2s ease;
    cursor: pointer;
}

.channel-card:hover .btn-card-fav,
.btn-card-fav.is-favorited {
    opacity: 1;
}

.btn-card-fav:hover {
    background: #e50914;
    color: #ffffff;
    transform: scale(1.15);
}

.btn-card-fav.is-favorited {
    color: #ff1744;
    background: rgba(0, 0, 0, 0.7);
}

/* Hover Play Overlay & Glowing Green Play Button */
.channel-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 9px;
    z-index: 2;
}

.channel-card:hover .channel-play-overlay,
.channel-card.active .channel-play-overlay {
    opacity: 1;
}

.channel-play-glow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00C853; /* Glowing Emerald Green matching screenshot */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 22px rgba(0, 200, 83, 0.95), 0 0 8px rgba(0, 200, 83, 0.8);
    transform: scale(0.88);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-play-glow-btn i {
    margin-left: 2px;
}

.channel-card:hover .channel-play-glow-btn {
    transform: scale(1.05);
}

/* Channel Card Name (Single-line centered below logo box) */
.channel-card-name {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
    color: #f1f5f9;
    letter-spacing: 0.1px;
    box-sizing: border-box;
    padding: 0 2px;
}

.channel-card-name a {
    color: inherit;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: color 0.2s ease;
}

.channel-card:hover .channel-card-name a {
    color: #00e676;
}

/* Mobile Fine-Tuning (< 576px) */
@media (max-width: 575px) {
    .channel-card {
        padding: 5px 5px 6px 5px;
        border-radius: 12px;
    }
    .channel-logo-box {
        border-radius: 8px;
        padding: 0;
    }
    .badge-card-new,
    .badge-card-live {
        font-size: 0.52rem;
        padding: 2px 4px;
    }
    .channel-play-glow-btn {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
        box-shadow: 0 0 12px rgba(0, 200, 83, 0.9);
    }
    .channel-card-name {
        font-size: 0.72rem;
        margin-top: 4px;
        line-height: 1.2;
    }
}

.play-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.7);
    transform: scale(0.85);
    transition: var(--transition);
}

.channel-card:hover .play-circle-btn {
    transform: scale(1);
}

/* Badges */
.badge-live-pulse {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(229, 9, 20, 0.92);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.5);
}

@media (max-width: 575px) {
    .badge-live-pulse {
        top: 6px;
        left: 6px;
        font-size: 0.64rem;
        padding: 0.12rem 0.38rem;
    }
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: livePulse 1.4s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.badge-stream-offline {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(100, 116, 139, 0.9);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    z-index: 2;
}

.badge-stream-maint {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(217, 119, 6, 0.9);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    z-index: 2;
}

@media (max-width: 575px) {
    .badge-stream-offline,
    .badge-stream-maint {
        top: 6px;
        left: 6px;
        font-size: 0.62rem;
        padding: 0.12rem 0.35rem;
    }
}

/* Favorite Button */
.btn-fav-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(15, 23, 42, 0.8);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    z-index: 2;
    transition: var(--transition);
}

@media (max-width: 575px) {
    .btn-fav-toggle {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
        font-size: 0.82rem;
    }
}

.btn-fav-toggle:hover {
    background: rgba(229, 9, 20, 0.9);
    transform: scale(1.12);
}

.btn-fav-toggle.is-favorited {
    color: #ff3366;
}

/* Channel Card Body */
.channel-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (max-width: 575px) {
    .channel-body {
        padding: 0.5rem 0.55rem;
    }
    .channel-avatar-box {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        padding: 2px;
    }
}

/* Channel Details Card Wrapper (Watch Page) */
.channel-details-wrapper {
    background: #141a24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.15rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 575px) {
    .channel-details-wrapper {
        padding: 0.85rem;
        border-radius: 12px;
    }
}

/* Channel Header Avatar (Watch Page) */
.channel-header-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    flex-shrink: 0;
    box-sizing: border-box;
}

.channel-header-avatar img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.channel-header-avatar img.is-svg-logo,
.channel-header-avatar img[src*=".svg"] {
    object-fit: contain;
    width: 86%;
    height: 86%;
    margin: auto;
}

@media (max-width: 575px) {
    .channel-header-avatar {
        width: 46px;
        height: 46px;
        min-width: 46px;
        max-width: 46px;
        border-radius: 10px;
        padding: 0;
    }
    .channel-header-avatar img {
        border-radius: 10px;
    }
}

.channel-title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

@media (max-width: 575px) {
    .channel-title {
        font-size: 0.82rem;
        line-height: 1.25;
    }
}

.channel-meta {
    font-size: 0.76rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .channel-meta {
        font-size: 0.68rem;
    }
}

/* Streaming Channel Actions & Info */
.channel-meta-unified {
    padding: 1rem 0;
}

.action-pills-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.35rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.action-pills-row::-webkit-scrollbar {
    display: none;
}

.action-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.action-pill-btn:hover {
    background: var(--bg-hover);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.action-pill-btn.is-favorited,
.action-pill-btn.btn-fav-active {
    background: rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.5);
    color: #ff3344;
}

.channel-desc-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom, 0px));
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    body {
        padding-bottom: calc(85px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.35rem 0.5rem;
    gap: 0.2rem;
    min-width: 58px;
    position: relative;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.15s ease;
}

.mobile-nav-item:active i {
    transform: scale(0.9);
}

.mobile-nav-item.active {
    color: #ff3344;
}

.mobile-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 16px;
    height: 3px;
    border-radius: 3px;
    background: #ff3344;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
}

.mobile-nav-item:hover {
    color: var(--primary-color);
}

/* Auth Cards */
.auth-container {
    max-width: 440px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.auth-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
}

@media (max-width: 575px) {
    .auth-container {
        margin: 1.25rem auto;
        padding: 0 0.5rem;
    }
    .auth-card {
        padding: 1.5rem 1.15rem;
        border-radius: var(--radius-md);
    }
}

.auth-card .form-control {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color-light);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
}

.auth-card .form-control:focus {
    background: var(--bg-surface-elevated);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.25);
    color: var(--text-primary);
}

/* Toast Notifications */
.raju-toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .raju-toast {
        bottom: calc(75px + env(safe-area-inset-bottom, 0px));
        left: 1rem;
        right: 1rem;
        justify-content: center;
    }
}

.raju-toast.show {
    transform: translateY(0);
    opacity: 1;
}
