:root {
    --primary: #FF8C00;
    --primary-dark: #E65100;
    --gold: #FFC107;
    --gold-border: #D4AF37;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --text-main: #222222;
    --text-muted: #757575;
    --drawer-bg: #ffffff;
    --saffron-light: #FFF8E1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
}

#app {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: var(--bg-light);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    /* Added minimal padding for desktop breathing room */
    padding: 0 15px;
}

@media (max-width: 768px) {
    #app {
        padding: 0;
    }
}

/* Header */
.header {
    background: linear-gradient(180deg, #FF9800, #FF8C00);
    padding: 16px 20px;
    padding-top: 24px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    /* Removed rounded corners for web view */
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.greeting {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.greeting .subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.greeting .title {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-download-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 12px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.header-download-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.3);
}

.header-download-btn .material-symbols-outlined {
    font-size: 18px;
}

.rewards-icon {
    font-size: 32px;
    animation: pulse 2s infinite;
}

.notification-container {
    position: relative;
}

.notification-container .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tabs */
.tabs-wrapper {
    padding: 16px 20px;
}

.tabs-container {
    display: flex;
    background: #EEEEEE;
    border-radius: 50px;
    padding: 4px 6px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: white;
    color: var(--text-main);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Main Content */
.content {
    padding-bottom: 20px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* Common Section Layouts */
.section-header {
    display: flex;
    align-items: center;
    padding: 24px 16px 8px;
    gap: 8px;
}

.section-icon {
    color: var(--primary);
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.list-section {
    margin-top: 24px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
}

.green-text {
    color: #2E7D32;
}

.see-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.see-all:active {
    opacity: 0.7;
}

.icon-small {
    font-size: 16px;
}

/* Horizontal Scroll Generic */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 16px;
    gap: 16px;
    scroll-snap-type: x mandatory;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Cards (Hero/Recommended) */
.card {
    margin: 10px 16px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.recommended-card {
    height: 220px;
}

.darshan-card {
    height: 300px;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.more-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.more-btn span {
    font-size: 14px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
}

.play-btn span {
    font-size: 42px;
}

.card-content-bottom {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    color: white;
}

.pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}

.bg-orange {
    background: var(--primary);
    color: white;
}

.bg-white {
    background: white;
    color: var(--text-main);
}

.new-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.card-content-bottom h3 {
    font-size: 20px;
    font-weight: 700;
}

.subtitle-text {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 4px;
}

.small-text {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
}

/* Quotes Section */
.quotes-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

#quotes-container {
    padding-left: 0;
    padding-right: 0;
    gap: 0;
}

.scroll-wrapper {
    position: relative;
    width: 100%;
}

.scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.2s ease;
}

.scroll-nav.prev {
    left: 8px;
}

.scroll-nav.next {
    right: 8px;
}

.scroll-nav:active {
    scale: 0.9;
}

.scroll-nav span {
    font-size: 24px;
}

/* Dots removed as per request */

.quote-card {
    min-width: 100%;
    background: #FFFEFA;
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    scroll-snap-align: center;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hindi-title {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 188, 116, 0.4);
    flex-grow: 1;
}

.share-btn {
    color: #D46868;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.share-btn span {
    font-size: 16px;
}

.quote-sanskrit {
    font-size: 22px;
    font-weight: bold;
    color: #8B4513;
    line-height: 1.4;
    margin-bottom: 8px;
}

.quote-transliteration {
    font-size: 14px;
    font-style: italic;
    color: #A0522D;
    line-height: 1.4;
    margin-bottom: 8px;
}

.quote-hindi {
    font-size: 16px;
    color: #5D4037;
    line-height: 1.4;
    margin-bottom: 8px;
}

.quote-english {
    font-size: 15px;
    color: #4E342E;
    line-height: 1.4;
}

/* Skeleton Loaders */
.quote-skeleton {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-line {
    background: #e0e0e0;
    background: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-text-lg {
    height: 20px;
    width: 100%;
}

.skeleton-text-md {
    height: 16px;
    width: 80%;
}

/* Darshan Mini Skeleton */
.darshan-skeleton {
    min-width: 140px;
}

.skeleton-img-sq {
    height: 140px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 8px;
}

/* Live Darshan Skeleton */
.live-skeleton {
    min-width: 240px;
}

.skeleton-img-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    margin-bottom: 8px;
}

/* News Card Skeleton */
.news-skeleton {
    min-width: 260px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.skeleton-img-news {
    width: 100%;
    height: 140px;
}

.news-skeleton-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-tag {
    height: 14px;
    width: 40px;
}

/* Quote Error / Empty State */
.quote-empty,
.quote-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.retry-btn {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background-color: #fce4ec;
    color: #c2185b;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Aaj Ke Darshan Mini Card */
.darshan-mini-card {
    min-width: 140px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    scroll-snap-align: start;
    padding-bottom: 8px;
}

.darshan-mini-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.darshan-mini-info {
    padding: 8px 10px;
}

.darshan-mini-info h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.darshan-mini-info h4::-webkit-scrollbar {
    display: none;
}

.darshan-mini-info p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Live Darshan Media Card */
.media-card {
    min-width: 240px;
    background: transparent;
    scroll-snap-align: start;
}

.media-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-overlay span {
    font-size: 28px;
}

.live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}

.media-title {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blessings Section */
.blessings-section {
    padding-top: 0;
}

.blessing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle span {
    font-size: 30px;
    color: var(--text-main);
}

.blessing-item span {
    font-size: 13px;
    font-weight: 500;
}

/* Explore Banner */
.explore-banner {
    background: #E1F5FE;
    margin: 10px 16px;
    border-radius: 16px;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.explore-banner .banner-text {
    flex: 1;
    font-size: 25px;
    color: #0277BD;
    font-weight: 600;
    padding: 0 10px;
}

.icon-large {
    font-size: 40px;
    color: #0288D1;
}

/* Event Chips */
.events-section {
    padding-top: 0;
}

.event-chip {
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
}

/* Panchang Card */
.panchang-card {
    margin: 24px 16px;
    border-radius: 22px;
    padding: 18px;
    position: relative;
    background: linear-gradient(180deg, #FFF8E1, #FFF3E0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.panchang-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.panchang-card .hindi-title {
    text-align: center;
    margin-bottom: 10px;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
}

.location-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
}

.panchang-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 16px;
}

.sun-times {
    display: flex;
    justify-content: space-between;
    background: #F8F8F8;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 14px;
}

.time-block,
.time-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block span.material-symbols-outlined,
.time-row span.material-symbols-outlined {
    color: var(--primary-dark);
}

.time-row {
    margin-bottom: 10px;
}

.label {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 16px 0;
}

.view-full-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Latest News Card */
.news-card {
    min-width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    scroll-snap-align: start;
}

.news-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.news-info {
    padding: 12px;
}

.news-tag {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.news-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* Drawer & Overlay */
.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: absolute;
    top: 0;
    left: -85%;
    width: 80%;
    height: 100vh;
    background: var(--drawer-bg);
    z-index: 20;
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer.open {
    transform: translateX(106.25%);
}

.drawer-profile {
    position: relative;
    height: 150px;
    background: #E3F2FD;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 30%;
    margin-bottom: 40px;
}

.profile-card {
    position: absolute;
    bottom: -25px;
    left: 16px;
    right: 16px;
    background: white;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #BBDEFB;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-icon {
    color: #1976D2;
    font-size: 18px;
}

.profile-name {
    color: #0D47A1;
    font-weight: 700;
    font-size: 16px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.drawer-content {
    padding: 0 16px 20px;
}

.drawer-header {
    font-size: 22px;
    font-weight: 700;
}

.drawer-subheader {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.orange-icon {
    color: var(--primary);
}

.icon-green {
    color: #2E7D32;
}

.drawer-divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 12px 0;
}

.drawer-collapsible {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

.collapsible-title {
    flex: 1;
    margin-left: 12px;
    font-weight: 600;
    font-size: 14px;
}

.chevron {
    color: var(--text-muted);
    transition: transform 0.2s;
}

.drawer-collapsible.active .chevron {
    transform: rotate(180deg);
}

.collapsible-content {
    display: none;
    padding-left: 36px;
}

.drawer-collapsible.active+.collapsible-content {
    display: block;
}

.sub-item {
    padding: 8px 0;
    font-size: 14px;
}

.logout-btn {
    color: #D32F2F;
}

.logout-btn span.material-symbols-outlined {
    color: #D32F2F;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Darshan Dialog */
.darshan-dialog {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: white;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 1001;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.darshan-dialog.open {
    bottom: 0;
}

.darshan-dialog-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    background: white;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.darshan-dialog-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.darshan-dialog-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* Dialog details */
.darshan-detail-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.darshan-detail-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.4;
}

.darshan-detail-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.meta-row .material-symbols-outlined {
    font-size: 16px;
    color: var(--primary);
    margin-top: 2px;
}

.darshan-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
}

.stat-item .material-symbols-outlined {
    font-size: 20px;
    color: #e91e63;
}

.stat-item .material-symbols-outlined.comment-icon {
    color: #2196f3;
}

.comments-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-item {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.comment-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.comment-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.4;
}

.comment-time {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    text-align: right;
}

.no-comments {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 14px;
    background: #f9f9f9;
    border-radius: 12px;
}

.navigate-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e3f2fd;
    color: #1976d2;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.navigate-btn:active {
    transform: scale(0.95);
}

.navigate-btn .material-symbols-outlined {
    font-size: 16px;
    color: inherit;
    margin-top: 0;
}

.dialog-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--primary);
    transition: all 0.2s;
}

.dialog-nav-btn:active {
    transform: scale(0.9);
}

.dialog-nav-btn .material-symbols-outlined {
    font-size: 24px;
}

/* App Download Banner */
.download-app-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FF6B00 0%, #FFB300 100%);
    margin: 16px;
    border-radius: 20px;
    padding: 18px 20px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-app-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-app-banner:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-app-banner:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.download-content {
    flex: 1;
    padding-right: 16px;
    z-index: 1;
}

.download-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.download-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.download-icon-wrapper {
    background: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.download-icon-wrapper span {
    font-size: 32px;
    color: #FF6B00;
    background: linear-gradient(135deg, #FF6B00, #FFB300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}