/* index.css - Styles for Homepage */

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(180deg, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(241, 245, 249, 1) 50%,
        rgba(233, 237, 245, 1) 100%
    );
    padding: 5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    animation: floatHero 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation: floatHero 25s ease-in-out infinite reverse;
}

@keyframes floatHero {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 500;
    animation: subtitleFadeIn 1s ease-out 0.2s backwards;
}

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

/* Hero Badges */
.hero-section .badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
    border: 2px solid rgba(99, 102, 241, 0.2);
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    animation: badgeFadeIn 1s ease-out backwards;
}

.hero-section .badge:nth-child(1) { animation-delay: 0.3s; }
.hero-section .badge:nth-child(2) { animation-delay: 0.4s; }
.hero-section .badge:nth-child(3) { animation-delay: 0.5s; }
.hero-section .badge:nth-child(4) { animation-delay: 0.6s; }

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-section .badge:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    border-color: transparent;
}

.hero-section .badge i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Hero Buttons */
.hero-section .btn {
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: buttonFadeIn 1s ease-out 0.7s backwards;
}

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

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-section .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.hero-section .btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.hero-section .btn-outline-light {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

.hero-section .btn-outline-light:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Hero Cards - Carousel */
.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(99, 102, 241, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card h3 {
    font-weight: 700;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.hero-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    position: relative;
    z-index: 1;
}

.hero-card--mint {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(52, 211, 153, 0.3);
}

.hero-card--mint h3 {
    color: #059669;
}

.hero-card--mint i {
    color: #10b981;
}

.hero-card--amber {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

.hero-card--amber h3 {
    color: #d97706;
}

.hero-card--amber i {
    color: #f59e0b;
}

.hero-card--indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.hero-card--indigo h3 {
    color: #6366f1;
}

.hero-card--indigo i {
    color: #8b5cf6;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(8px) !important;
}

.carousel-control-prev {
    left: -60px !important;
}

.carousel-control-next {
    right: -60px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%) !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
}

.hero-app-badges {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-app-store {
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-app-store:hover {
    transform: translateY(-4px);
}

.btn-app-store img {
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.section-padding {
    padding: 4rem 0;
    position: relative;
}

.bg-light {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    font-weight: 500;
}

.section-header .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.section-header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.section-header .btn-outline-primary {
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.section-header .btn-outline-primary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.stats-row {
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-text {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-card {
        min-height: 240px;
        padding: 2.5rem 2rem;
    }
    
    .hero-card h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 0 2.5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section .badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-card {
        min-height: 200px;
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-card h3 {
        font-size: 1.35rem;
    }
    
    .hero-card p {
        font-size: 0.95rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 36px;
    }
    
    .carousel-control-prev {
        left: -50px;
    }
    
    .carousel-control-next {
        right: -50px;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}


.country-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
    position: relative;
}

.country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.country-card:hover::before {
    opacity: 1;
}

.country-flag-container {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.country-flag {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.country-card:hover .country-flag {
    transform: scale(1.05);
}

.country-info {
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.country-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.country-card:hover .country-name {
    color: #6366f1;
}

.country-count {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.country-count i {
    color: #8b5cf6;
}

.search-station-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
    position: relative;
}

.search-station-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.search-station-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.search-station-card:hover::before {
    opacity: 1;
}

.search-station-image-wrapper {
    position: relative;
    overflow: hidden;
}

.search-station-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-station-card:hover .search-station-img {
    transform: scale(1.08);
}

.search-play-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    opacity: 1;
}

.search-play-btn i {
    color: white !important;
    transition: color 0.3s ease;
}

.search-play-btn:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.search-play-btn:hover i {
    color: #6366f1 !important;
}

.search-station-info {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.search-station-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.search-station-card:hover .search-station-name {
    color: #6366f1;
}

.search-station-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.search-stat {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-stat i {
    color: #8b5cf6;
    font-size: 0.85rem;
}

.search-station-info .badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-station-info .badge:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
}

.genre-card {
    background-size: cover !important;
    background-position: center !important;
    min-height: 180px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.genre-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.genre-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.3) 0%, rgba(139,92,246,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.genre-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.genre-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.genre-card:hover::after {
    opacity: 1;
}

.genre-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 3;
    transition: transform 0.4s ease;
}

.genre-card:hover .genre-card-body {
    transform: translateY(-5px);
}

.genre-card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.genre-card-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.podcast-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
    position: relative;
}

.podcast-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.podcast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.podcast-card:hover::before {
    opacity: 1;
}

.podcast-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-card-img {
    transform: scale(1.08);
}

.podcast-card-body {
    padding: 1.25rem;
    position: relative;
    z-index: 1;
}

.podcast-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.podcast-card:hover .podcast-card-title {
    color: #6366f1;
}

.podcast-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
}

.podcast-card-category i {
    color: #fbbf24;
}

.podcast-card-meta i {
    color: #8b5cf6;
}

.podcast-card-meta .btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: white;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.podcast-card-meta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

@media (max-width: 767px) {
    .genre-card {
        min-height: 150px;
    }
    
    .genre-card-title {
        font-size: 1.1rem;
    }
    
    .genre-card-count {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }
    
    .podcast-card-body {
        padding: 1rem;
    }
}