/* Professional Landing Page Redesign */

.landing-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    flex-shrink: 0;
}

.carousel-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Force full coverage on all screen sizes */
@media (max-width: 768px) {
    .carousel-background {
        background-size: cover;
        background-position: center center;
    }
}

@media (min-width: 769px) {
    .carousel-background {
        background-size: cover;
        background-position: center center;
    }
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 50%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 60px 32px 80px;
    z-index: 2;
}

@media (max-width: 768px) {
    .carousel-overlay {
        padding: 40px 24px 60px;
    }
}

@media (min-width: 1024px) {
    .carousel-overlay {
        padding: 80px 80px 100px;
    }
}

@media (min-width: 1920px) {
    .carousel-overlay {
        padding: 80px 80px 120px;
    }
}

.carousel-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 100%;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

@media (min-width: 480px) {
    .carousel-title {
        font-size: 42px;
    }
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 56px;
        margin-bottom: 20px;
        max-width: 70%;
    }
}

@media (min-width: 1024px) {
    .carousel-title {
        font-size: 72px;
        max-width: 60%;
    }
}

@media (min-width: 1280px) {
    .carousel-title {
        font-size: 84px;
        max-width: 55%;
    }
}

.carousel-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

@media (min-width: 480px) {
    .carousel-description {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .carousel-description {
        font-size: 20px;
        margin-bottom: 40px;
        max-width: 60%;
    }
}

@media (min-width: 1024px) {
    .carousel-description {
        font-size: 22px;
        max-width: 50%;
    }
}

@media (min-width: 1280px) {
    .carousel-description {
        font-size: 24px;
        max-width: 45%;
    }
}

.carousel-overlay .carousel-cta {
    display: none;
}

.carousel-cta {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff3366, #ff6b9d);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4);
}

@media (min-width: 768px) {
    .carousel-cta {
        padding: 16px 40px;
        font-size: 18px;
    }
}

.carousel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 51, 102, 0.6);
}

.carousel-cta:active {
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    color: #ffffff;
    font-size: 24px;
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-nav-prev {
    left: 24px;
}

.carousel-nav-next {
    right: 24px;
}

@media (max-width: 768px) {
    .carousel-nav-prev {
        left: 12px;
    }
    .carousel-nav-next {
        right: 12px;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

@media (max-width: 768px) {
    .carousel-dots {
        bottom: 24px;
        gap: 8px;
    }
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: #ff3366;
    width: 28px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Featured Content Section */
.landing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
}

@media (min-width: 768px) {
    .landing-content {
        padding: 80px 32px;
    }
}

@media (min-width: 1024px) {
    .landing-content {
        padding: 100px 48px;
    }
}

.content-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.podcast-card {
    background: rgba(18, 18, 24, 0.6);
    backdrop-filter: blur(40px);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.podcast-card:hover {
    background: rgba(18, 18, 24, 0.8);
    border-color: rgba(255, 51, 102, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(255, 51, 102, 0.2);
}

.podcast-card:active {
    transform: translateY(-2px);
}

.podcast-cover {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-info {
    padding: 20px;
}

.podcast-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.podcast-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.podcast-author {
    color: #ff3366;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    color: #ff3366;
}

.empty-state h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .empty-state h2 {
        font-size: 40px;
    }
}

.empty-state p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .empty-state p {
        font-size: 18px;
    }
}

.empty-state .carousel-cta {
    display: inline-block;
}

/* Recent Podcasts Ticker */
.recent-ticker {
    padding: 32px 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .recent-ticker {
        padding: 48px 32px 32px;
    }
}

.ticker-header {
    margin-bottom: 16px;
}

.ticker-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.ticker-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

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

.ticker-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    max-width: 320px;
    padding: 10px 14px;
    background: rgba(18, 18, 24, 0.6);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: all 0.15s;
}

.ticker-card:hover {
    background: rgba(18, 18, 24, 0.85);
    border-color: rgba(255, 51, 102, 0.25);
}

.ticker-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.ticker-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticker-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ticker-card-title {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.ticker-meta a {
    color: #ff3366;
    text-decoration: none;
}
