/* Additional Styles */

/* Podcast Section */
.podcast-section {
    margin-top: 50px;
}

.podcast-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.podcast-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.podcast-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.podcast-thumbnail {
    position: relative;
    height: 200px;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(232, 177, 42, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.podcast-item:hover .play-icon {
    opacity: 1;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin: 50px 0;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-item {
    background-color: #151515;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.audience-icon {
    margin-bottom: 20px;
}

.audience-icon img {
    height: 80px;
    width: auto;
}

.audience-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.audience-item p {
    color: #aaa;
}

/* Warning Text */
.warning {
    color: #ff4d4d;
    font-weight: 700;
    margin: 20px 0;
}

/* Section Logo */
.section-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Active State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 20px;
    z-index: 100;
}

.nav-links.active li {
    margin: 10px 0;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    background-color: #151515;
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
}

.countdown-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 14px;
    color: #aaa;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Pricing Card */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    transform: rotate(45deg);
    z-index: 1;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced FAQ */
.faq-item {
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.faq-item.active::before {
    height: 100%;
}