/* YouTube Logo Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 0, 0, 0);
    }
}

.logo i.fab.fa-youtube {
    display: inline-block;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.logo:hover i.fab.fa-youtube {
    animation: none;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

/* Base Styles */
:root {
    --primary-color: #ff0000;
    --secondary-color: #282828;
    --accent-color: #ff4d4d;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

p {
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #ff0000; /* YouTube red */
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    color: var(--light-text);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    text-align: left;
    animation: fadeInLeft 1s ease;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin-right: 15px;
}

.hero-title {
    font-size: 4rem;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.cta-button i {
    font-size: 1.1rem;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 0, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    height: 300px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-logo {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.channel-profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-logo:hover .channel-profile-pic {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.channel-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-top: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-image:hover .hero-image-container {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-image:hover .hero-image-overlay {
    opacity: 1;
}

.hero-image-overlay i {
    font-size: 4rem;
    color: white;
    background: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.hero-image:hover .hero-image-overlay i {
    transform: scale(1);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: white;
}

.scroll-down i {
    margin-top: 10px;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Videos Section */
.videos {
    background: var(--light-bg);
}

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

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .video-play {
    opacity: 1;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
}

.video-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 0; /* Allows flex items to shrink below their content size */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 18px 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: #ff4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.15);
}

.stat-card:nth-child(1) .stat-icon {
    background: #ff4d4d; /* Red for videos */
}

.stat-card:nth-child(2) .stat-icon {
    background: #4d79ff; /* Blue for subscribers */
    box-shadow: 0 4px 8px rgba(77, 121, 255, 0.15);
}

.stat-card:nth-child(3) .stat-icon {
    background: #4dff4d; /* Green for views */
    box-shadow: 0 4px 8px rgba(77, 255, 77, 0.15);
}

.stat-content {
    min-width: 0; /* Prevents flex item from overflowing */
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 2px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stat-card {
        min-width: calc(33.333% - 10px);
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px 12px;
        min-width: calc(50% - 6px);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        min-width: 100%;
    }
    
    .hero-stats {
        gap: 10px;
    }
}

/* Team Section */
.about {
    background-color: #f0f8ff; /* Light blue background for team section */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.podcasts {
    padding: 80px 0;
    position: relative;
    background-color: #f9f9f9; /* Slightly off-white background for podcast section */
    overflow: hidden;
}

.about .container {
    max-width: 100%;
    padding: 0 30px;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.team-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.team-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.team-track {
    display: inline-flex;
    gap: 25px;
    padding: 0 15px;
}

.team-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-card:hover::after {
    width: 8px;
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    flex: 1;
    text-align: left;
    padding-right: 15px;
}

.team-content h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.position {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Scroll hint */
.team-container {
    position: relative;
}

.team-container::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.5;
    animation: bounceRight 2s infinite;
    display: none;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0) translateY(-50%); }
    50% { transform: translateX(10px) translateY(-50%); }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .team-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .team-container::after {
        display: block;
    }
    
    .about .container {
        padding: 0 20px;
    }
    
    .team-track {
        padding: 0 10px 20px;
    }
    
    .team-card {
        flex: 0 0 260px;
        padding: 12px;
    }
    
    .team-image {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
    
    .team-content h3 {
        font-size: 1rem;
    }
    
    .position {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .team-card {
        flex: 0 0 240px;
    }
}

/* Podcasts Section */
.podcasts {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.podcasts .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podcasts h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    width: 100%;
}

.podcasts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

/* Podcasts Container */
#podcasts-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
}

.podcast-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.podcast-thumbnail {
    position: relative;
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.podcast-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

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

.play-icon i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.podcast-title {
    padding: 15px 10px;
    font-size: 0.95rem;
    color: #222;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    text-align: center;
    word-break: break-word;
    white-space: normal;
    overflow: visible;
    height: auto;
}

.podcast-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    flex-grow: 1;
}

.podcast-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    color: #888;
    font-size: 0.85rem;
}

.podcast-meta i {
    margin-right: 5px;
}

.view-more {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}

.view-more .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
}

.view-more .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.2);
    background: #e60000;
}

.view-more .cta-button i {
    margin-left: 8px;
    font-size: 0.9em;
}

/* Loading and Error States */
.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-spinner p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #fff8f8;
    border-radius: 10px;
    border-left: 4px solid #ff4d4d;
    margin: 20px 0;
}

.error i {
    font-size: 3rem;
    color: #ff4d4d;
    margin-bottom: 15px;
    display: block;
}

.error h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.error p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .podcast-grid {
        padding: 0 20px;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .podcasts {
        padding: 80px 0;
    }
    
    .podcasts h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
}

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

@media (max-width: 768px) {
    .podcasts {
        padding: 60px 0;
    }
    
    .podcasts h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    
    .view-more {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .podcasts {
        padding: 50px 0;
    }
    
    .podcasts h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .podcast-card {
        max-width: 100%;
        margin: 0;
    }
    
    .view-more .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-podcasts,
.error {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem 0;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .podcast-info h3 {
        font-size: 1rem;
    }
    
    .podcast-info p {
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.social-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-icon:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: white;
}

.social-icon:hover i {
    color: white;
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.social-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.social-card.instagram::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.facebook::before { background: #1877f2; }
.social-card.twitter::before { background: #000; }

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-card:hover::before {
    width: 8px;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-card.instagram .social-icon { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.social-card.facebook .social-icon { 
    background: #1877f2;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.social-card.twitter .social-icon { 
    background: #14171A;  /* Darker Twitter/X blue for better contrast */
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.social-card:hover .social-icon {
    transform: rotate(10deg) scale(1.1);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.social-content {
    flex: 1;
}

.social-content h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.social-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: #666;
    transition: all 0.3s ease;
}

.social-card:hover .social-arrow {
    transform: translateX(5px);
    background: var(--primary-color);
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-card {
        padding: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .social-content h3 {
        font-size: 1.1rem;
    }
    
    .social-content p {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #aaa;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-legal h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-legal a {
    display: block;
    color: #bbb;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.developer-credit {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.developer-credit a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        margin-top: 3rem;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;
    }
    
    .social-icon {
        padding: 0.8rem;
    }
    
    .social-icon span {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
