/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #667eea;
    background: #edf2f7;
}

.nav-link.admin-btn {
    background: #667eea;
    color: white;
    margin-left: 8px;
}

.nav-link.admin-btn:hover {
    background: #5a67d8;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #667eea;
}

.hero-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #edf2f7;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.hero-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 12px;
}

.hero-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.hero-card.full-width {
    grid-column: 1 / -1;
}

/* Search Section */
.search-section {
    background: white;
    padding: 0;
    margin: 0;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #2d3748;
}

.search-box input::placeholder {
    color: #a0aec0;
}

.search-box button {
    padding: 12px 16px;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-box button:hover {
    background: #5a67d8;
}

/* Content Sections */
.content-section {
    background: white;
    margin: 0;
    padding: 60px 0;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.section-title i {
    color: #667eea;
}

.view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all:hover {
    color: #5a67d8;
}

/* Content Grid */
.content-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.content-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;

    cursor: pointer;
}

}

.content-thumbnail {
    width: 100%;
    height: 160px;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.content-info {
    padding: 20px;
}

.content-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
    line-height: 1.4;
}

.content-description {
    color: #4a5568;
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #718096;
}

.content-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.content-tags {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.content-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Featured Content */
.featured-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.featured-item:hover {
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.featured-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.featured-description {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.5;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #718096;
}

.no-content {
    text-align: center;
    color: #a0aec0;
    font-style: italic;
    padding: 40px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.media-player {
    padding: 30px;
}

.media-player h3 {
    margin-bottom: 20px;
    color: #333;
}

#mediaContainer {
    margin: 20px 0;
    text-align: center;
}

#mediaContainer audio,
#mediaContainer video,
#mediaContainer iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

#mediaContainer iframe {
    height: 400px;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #a0aec0;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #4a5568;
}

.footer p {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .search-box {
        margin: 0 16px 32px;
    }

    .section-header {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* 
Presentation Video Player */
.presentation-player {
    background: #2d3748;
    border-radius: 12px;
    padding: 40px;
    margin: 20px 0;
    text-align: center;
    color: white;
}

.presentation-player i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.presentation-player h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.presentation-player p {
    color: #a0aec0;
    margin-bottom: 20px;
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    height: 300px;
    border-radius: 12px;
}

.skeleton-text {
    height: 16px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

/* Enhanced Hover Effects */

.hero-card:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Better Typography */
.section-title {
    letter-spacing: -0.025em;
}

.hero-text h1 {
    letter-spacing: -0.025em;
}

/* Improved Spacing */
.content-section:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

/* Better Mobile Experience */
@media (max-width: 640px) {
    .hero-cards {
        grid-template-columns: 1fr;
    }

    .hero-card.full-width {
        grid-column: 1;
    }

    .content-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .content-tags {
        flex-wrap: wrap;
    }
}

/*
 Page-specific styles */
.page-header {
    background: white;
    padding: 100px 0 60px;
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-text h1 i {
    color: #667eea;
}

.header-text p {
    font-size: 1.125rem;
    color: #4a5568;
}

.header-stats {
    display: flex;
    gap: 40px;
}

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

.header-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.header-stats .stat-label {
    font-size: 0.875rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search and Filters */
.search-filters {
    background: #f7fafc;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.search-filters .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.search-filters .search-box {
    flex: 1;
    max-width: 400px;
}

.filters {
    display: flex;
    gap: 16px;
}

.filters select {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #2d3748;
    font-size: 0.875rem;
    min-width: 120px;
}

.filters select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Featured Content */
.featured-content {
    background: white;
    padding: 60px 0;
}

.featured-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.featured-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 32px;
}

.featured-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.featured-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.featured-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.featured-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.featured-item-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-item-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.875rem;
    color: #718096;
}

.featured-item-thumbnail {
    width: 120px;
    height: 80px;
    background: #f7fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1.5rem;
}





/* Load More */
.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Features Section for Home Page */
.features-section {
    background: white;
    padding: 80px 0;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.features-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.features-section .section-header p {
    font-size: 1.125rem;
    color: #4a5568;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-stats {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 24px;
}

.feature-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #667eea;
    font-weight: 500;
}

/* Recent Activity */
.recent-activity {
    background: #f7fafc;
    padding: 80px 0;
}

.recent-activity .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.recent-activity .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.activity-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.activity-meta {
    font-size: 0.875rem;
    color: #718096;
}

/* Active navigation link */
.nav-link.active {
    background: #edf2f7;
    color: #667eea;
}

/* Media Info Enhancements */
.media-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.media-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.media-meta {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 16px;
}

.document-actions {
    display: flex;
    gap: 12px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .header-stats {
        gap: 24px;
    }

    .search-filters .container {
        flex-direction: column;
        gap: 24px;
    }

    .filters {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .featured-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }


}

/* Mode
rn Music Player Styles */
.music-player {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    align-items: center;
    min-height: 300px;
}

.album-art {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-art:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #667eea;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.track-artist {
    font-size: 1.2rem;
    opacity: 0.8;
    margin: 0;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

.progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    left: 0%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: left 0.1s ease;
}

.progress-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.main-play-btn {
    width: 64px;
    height: 64px;
    background: white;
    color: #667eea;
    font-size: 1.5rem;
    border: none;
}

.main-play-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #5a67d8;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.volume-slider {
    width: 80px;
}

.volume-slider input[type="range"] {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Enhanced Modal for Music Player */
.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 20px;
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.media-player {
    padding: 0;
}

.media-player h3 {
    display: none;
    /* Hidden since we have track title in player */
}

.media-info {
    padding: 32px;
    margin-top: 0;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Music Player */
@media (max-width: 768px) {
    .music-player {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 24px;
    }

    .album-art {
        width: 150px;
        height: 150px;
    }

    .track-title {
        font-size: 1.5rem;
    }

    .player-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

    .volume-control {
        margin-left: 0;
        margin-top: 16px;
    }
}

/* Playlist-style layout for podcasts grid */
.podcasts-playlist {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.playlist-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    text-align: center;
}

.playlist-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.playlist-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

.playlist-items {
    max-height: 400px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s ease;
}

.playlist-item:hover {
    background: #f8fafc;
}

.playlist-item:last-child {
    border-bottom: none;
}

.playlist-number {
    width: 32px;
    text-align: center;
    color: #64748b;
    font-weight: 500;
}

.playlist-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
    color: #64748b;
}

.playlist-info {
    flex: 1;
}

.playlist-track-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.playlist-track-meta {
    font-size: 0.875rem;
    color: #64748b;
}

.playlist-duration {
    color: #64748b;
    font-size: 0.875rem;
    margin-left: 16px;
}

.playlist-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    margin-left: 16px;
}

.playlist-item:hover .playlist-play-btn {
    opacity: 1;
}

/*
 Mini Player (Bottom Bar) */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mini-player.active {
    display: flex;
}

.mini-album-art {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-album-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.mini-track-info {
    flex: 1;
    min-width: 0;
}

.mini-track-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-track-artist {
    font-size: 0.8rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mini-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mini-play-btn {
    background: white;
    color: #667eea;
}

.mini-play-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.mini-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.mini-progress-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.1s ease;
}

.mini-close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
}

.mini-close-btn:hover {
    opacity: 1;
}

/* Waveform Animation */
.waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
}

.waveform-bar {
    width: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: waveform 1.5s ease-in-out infinite;
}

.waveform-bar:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.waveform-bar:nth-child(2) {
    height: 8px;
    animation-delay: 0.1s;
}

.waveform-bar:nth-child(3) {
    height: 16px;
    animation-delay: 0.2s;
}

.waveform-bar:nth-child(4) {
    height: 6px;
    animation-delay: 0.3s;
}

.waveform-bar:nth-child(5) {
    height: 10px;
    animation-delay: 0.4s;
}

@keyframes waveform {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.3);
    }
}

/* Enhanced Podcast Cards with Play Button */
.content-card {
    position: relative;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

.content-card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: #667eea;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Floating Action Button for Full Player */
.floating-player-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1400;
}

.floating-player-btn.active {
    display: flex;
}

.floating-player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mini-player {
        padding: 12px 16px;
        gap: 12px;
    }

    .mini-track-info {
        font-size: 0.85rem;
    }

    .mini-controls {
        gap: 8px;
    }

    .floating-player-btn {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Enha
nced Video Player Styles */
.video-player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    min-height: 400px;
}

.video-player {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-overlay {
    opacity: 1;
}

.video-info {
    color: white;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Presentation Viewer Styles */
.presentation-viewer {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.presentation-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.presentation-info {
    flex: 1;
}

.presentation-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.presentation-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.presentation-controls {
    display: flex;
    gap: 12px;
}

.presentation-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.presentation-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.presentation-frame {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f8fafc;
}

.presentation-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Enhanced Modal for Presentations */
.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 20px;
    width: 95%;
    max-width: 1000px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Custom Video Controls Enhancement */
.video-player video::-webkit-media-controls-panel {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.video-player video::-webkit-media-controls-play-button,
.video-player video::-webkit-media-controls-mute-button,
.video-player video::-webkit-media-controls-fullscreen-button {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin: 0 4px;
}

/* Loading Animation for Video */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Presentation Thumbnails */
.presentation-thumbnails {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background: #f8fafc;
    overflow-x: auto;
}

.presentation-thumb {
    width: 80px;
    height: 60px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.8rem;
}

.presentation-thumb:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.presentation-thumb.active {
    border-color: #667eea;
    background: #eef2ff;
}

/* Responsive Video Player */
@media (max-width: 768px) {
    .video-player-container {
        padding: 16px;
        min-height: 300px;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .presentation-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }

    .presentation-controls {
        width: 100%;
        justify-content: center;
    }

    .presentation-frame {
        height: 300px;
    }

    .modal-content {
        width: 98%;
        margin: 1% auto;
    }
}

/* Hide unwanted metadata */
.media-info .media-meta {
    display: none !important;
}

/* Enhanced Tags Display */
.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 20px 32px;
    background: #f8fafc;
    border-radius: 12px;
}

.media-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Floating Video Controls */
.floating-video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .floating-video-controls {
    opacity: 1;
}

.floating-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.floating-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Enh
anced Presentation Viewer */
.presentation-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #64748b;
    font-size: 1rem;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.presentation-footer {
    background: #f8fafc;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
}

.presentation-progress {
    flex: 1;
    margin-right: 20px;
}

.progress-indicator {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: progress-slide 3s ease-in-out infinite;
}

@keyframes progress-slide {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.presentation-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

/* Enhanced Video Player with Glassmorphism */
.video-player-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.video-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.video-player {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animated Background Elements */
.presentation-viewer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.05) 50%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.presentation-frame {
    position: relative;
    z-index: 1;
}

/* Enhanced Modal Animation */
.modal {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Presentation Slide Counter */
.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 20;
}

/* Interactive Presentation Controls */
.presentation-controls-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.presentation-frame:hover .presentation-controls-overlay {
    opacity: 1;
}

.overlay-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.overlay-control-btn:hover {
    background: rgba(102, 126, 234, 0.9);
    transform: scale(1.1);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .presentation-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .presentation-actions {
        justify-content: center;
    }

    .presentation-controls {
        flex-direction: column;
        gap: 8px;
    }

    .presentation-btn {
        width: 100%;
        justify-content: center;
    }
}

/*
 Spotify-like Bottom Music Player */
.bottom-music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1500;
    height: 90px;
    color: white;
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.bottom-music-player.active {
    display: flex;
}

/* Player Left Section */
.player-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 300px;
    min-width: 0;
}

.track-image {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    background: #282828;
    flex-shrink: 0;
}

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

.track-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3;
    font-size: 1.2rem;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-name {
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.track-name:hover {
    text-decoration: underline;
}

.track-artist {
    font-size: 11px;
    color: #b3b3b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.track-artist:hover {
    text-decoration: underline;
    color: white;
}

.like-btn {
    background: none;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.like-btn:hover {
    color: white;
    transform: scale(1.1);
}

.like-btn.liked {
    color: #1db954;
}

/* Player Center Section */
.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 722px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.control-btn {
    background: none;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.control-btn:hover {
    color: white;
    transform: scale(1.1);
}

.play-pause-btn {
    background: white;
    color: black;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
}

.play-pause-btn:hover {
    transform: scale(1.06);
    background: #f0f0f0;
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.time-current,
.time-total {
    font-size: 11px;
    color: #b3b3b3;
    min-width: 40px;
    text-align: center;
}

.progress-bar-container {
    flex: 1;
    height: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #5e5e5e;
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    left: 0%;
}

.progress-bar-container:hover .progress-handle {
    opacity: 1;
}

.progress-bar-container:hover .progress-bar {
    background: #b3b3b3;
}

/* Player Right Section */
.player-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 300px;
    justify-content: flex-end;
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-bar-container {
    width: 93px;
    height: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.volume-bar {
    width: 100%;
    height: 4px;
    background: #5e5e5e;
    border-radius: 2px;
    position: relative;
}

.volume-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 100%;
    transition: width 0.1s ease;
}

.volume-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    right: 0%;
}

.volume-bar-container:hover .volume-handle {
    opacity: 1;
}

.volume-bar-container:hover .volume-bar {
    background: #b3b3b3;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background: #5a67d8;
    transform: scale(1.04);
}

.header-btn.secondary {
    background: transparent;
    color: #b3b3b3;
    border: 1px solid #5e5e5e;
}

.header-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: #b3b3b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bottom-music-player {
        padding: 12px 16px;
        height: 80px;
    }

    .player-left,
    .player-right {
        flex: 0 0 auto;
    }

    .player-right .control-btn:not(.playerVolumeBtn) {
        display: none;
    }

    .volume-section {
        display: none;
    }

    .progress-section {
        max-width: 300px;
    }

    .header-actions {
        flex-direction: column;
        gap: 8px;
    }

    .header-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Active states */
.control-btn.active {
    color: #1db954;
}

.control-btn.shuffle.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #1db954;
    border-radius: 50%;
}

.control-btn.repeat.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #1db954;
    border-radius: 50%;
}

/* Ensure content doesn't get hidden behind player */
body {
    padding-bottom: 90px;
}

/* Hide the old modal styles */
.modal {
    display: none !important;
}

/* Notific
ations */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    color: #2d3748;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 250px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #48bb78;
}

.notification-warning {
    border-left: 4px solid #ed8936;
}

.notification-info {
    border-left: 4px solid #4299e1;
}

.notification i {
    font-size: 1.2rem;
}

.notification-success i {
    color: #48bb78;
}

.notification-warning i {
    color: #ed8936;
}

.notification-info i {
    color: #4299e1;
}

/* Search Message */
.search-message {
    background: #edf2f7;
    color: #4a5568;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9rem;
    border-left: 4px solid #667eea;
}

/* Enhanced Header Actions */
.header-btn.active {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
}

.header-btn.subscribed {
    background: #48bb78 !important;
    border-color: #48bb78 !important;
}

.header-btn.subscribed:hover {
    background: #38a169 !important;
}

/* Enhanced Progress Bars */
.progress-bar {
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar:hover {
    background: rgba(255, 255, 255, 0.3);
}

.volume-bar {
    background: rgba(255, 255, 255, 0.2);
}

.volume-bar:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Track Info */
.track-placeholder {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Better Button States */
.control-btn.active {
    color: white !important;
}

.like-btn.liked {
    color: #f56565 !important;
}

/* Enhanced Playlist Items */
.playlist-item:hover {
    background: rgba(102, 126, 234, 0.1);
}

.playlist-play-btn {
    background: #667eea;
}

.playlist-play-btn:hover {
    background: #5a67d8;
}

/* Loading States */
.loading-podcasts {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #64748b;
}

.loading-podcasts i {
    animation: spin 1s linear infinite;
    margin-right: 12px;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #a0aec0;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.empty-state p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* E
nsure podcast content is visible */
#podcastsGrid {
    display: grid !important;
    min-height: 200px;
}

#podcastsList {
    display: none;
    flex-direction: column;
}

.content-section {
    display: block !important;
}

/* Debug styles */
.debug-info {
    background: #f0f0f0;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

/* Empty state styling */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #a0aec0;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.empty-state p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Ensure grid container has proper styling */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 24px;
    min-height: 100px;
}

/* Make sure content cards are visible */
.content-card {
    display: block !important;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* I
nline Search and Filters */
.search-filters-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.search-filters-inline .search-box {
    flex: 1;
    max-width: 400px;
    display: flex;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.search-filters-inline .search-box:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-filters-inline .search-box input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #2d3748;
    background: transparent;
}

.search-filters-inline .search-box input::placeholder {
    color: #a0aec0;
}

.search-filters-inline .search-box button {
    padding: 12px 16px;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filters-inline .search-box button:hover {
    background: #5a67d8;
}

.search-filters-inline .filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-filters-inline .filters select {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #2d3748;
    font-size: 0.875rem;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-filters-inline .filters select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-filters-inline .filters select:hover {
    border-color: #cbd5e0;
}

/* Filter Labels */
.search-filters-inline .filters::before {
    content: 'Sort by:';
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
    margin-right: 8px;
}

/* Responsive Design for Inline Filters */
@media (max-width: 768px) {
    .search-filters-inline {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .search-filters-inline .search-box {
        max-width: none;
    }

    .search-filters-inline .filters {
        justify-content: center;
        flex-wrap: wrap;
    }

    .search-filters-inline .filters::before {
        display: none;
    }

    .search-filters-inline .filters select {
        min-width: 120px;
        flex: 1;
    }
}

/* Update section header spacing */
.content-section .section-header {
    margin-bottom: 32px;
}

/* Remove old search-filters styles if they exist */
.search-filters {
    display: none !important;
}

/* View
 Toggle Fix */
.content-grid {
    display: grid;
}

.content-list {
    display: none;
    flex-direction: column;
    gap: 16px;
}

/* When list view is active */
.view-list .content-grid {
    display: none !important;
}

.view-list .content-list {
    display: flex !important;
}

/* When grid view is active (default) */
.view-grid .content-grid {
    display: grid !important;
}

.view-grid .content-list {
    display: none !important;
}

/* View button active states */
.view-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
}

.view-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.view-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.view-btn.active:hover {
    background: #5a67d8;
    border-color: #5a67d8;
}

/* 
Fix for view toggle - ensure proper display control */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.content-list {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    gap: 16px;
}

/* Ensure proper spacing for content section */
.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Search filters inline layout */
.search-filters-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.search-filters-inline .search-box {
    flex: 1;
    max-width: 400px;
    margin: 0;
}

.search-filters-inline .filters {
    display: flex;
    gap: 12px;
}

/* Responsive adjustments for search filters */
@media (max-width: 768px) {
    .search-filters-inline {
        flex-direction: column;
        gap: 16px;
    }

    .search-filters-inline .filters {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Sear
ch message styling */
.search-message {
    background: #e6fffa;
    border: 1px solid #81e6d9;
    color: #234e52;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    display: none;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #4a5568;
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.debug-info {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px;
    font-size: 0.75rem;
    color: #718096;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

/* Loading state for podcasts */
.loading-podcasts {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
    font-size: 1.125rem;
}

.loading-podcasts i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 16px;
    display: block;
}

/* G
T Sounds Specific Styles */

/* GT Hero Section */
.gt-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.audio-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,60 T1200,60 V120 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1200px);
    }
}

.gt-hero .hero-content {
    position: relative;
    z-index: 2;
}

.gt-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.hero-tagline .tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sound-visualization {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sound-wave {
    width: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    animation: soundWave 1.5s ease-in-out infinite;
}

.sound-wave:nth-child(1) {
    height: 40px;
    animation-delay: 0s;
}

.sound-wave:nth-child(2) {
    height: 60px;
    animation-delay: 0.1s;
}

.sound-wave:nth-child(3) {
    height: 80px;
    animation-delay: 0.2s;
}

.sound-wave:nth-child(4) {
    height: 60px;
    animation-delay: 0.3s;
}

.sound-wave:nth-child(5) {
    height: 40px;
    animation-delay: 0.4s;
}

@keyframes soundWave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.3);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.highlight-text {
    font-weight: 600;
    color: #667eea !important;
    font-size: 1.25rem !important;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: #f7fafc;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
}

.mission-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 80px 0;
    background: white;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.ecosystem-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: left 0.3s ease;
}

.ecosystem-card:hover::before {
    left: 0;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.ecosystem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.ecosystem-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 16px;
}

.ecosystem-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ecosystem-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
}

/* India Vision Section */
.india-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.india-vision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.india-vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.vision-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    backdrop-filter: blur(10px);
}

.vision-highlight .main-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #f7fafc;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.feature-item p {
    color: #4a5568;
}

/* Roadmap Section */
.roadmap-section {
    padding: 80px 0;
    background: white;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #667eea;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
    max-width: 350px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-content h4 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Join Movement Section */
.join-movement-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.join-content p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* GT Footer */
.gt-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design for GT Sounds */
@media (max-width: 768px) {
    .gt-hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        justify-content: center;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 40px;
    }

    .timeline-content {
        text-align: center !important;
        padding: 20px 0 0 0 !important;
        max-width: none;
    }

    .vision-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .join-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gt-hero .hero-text h1 {
        font-size: 2rem;
    }

    .hero-tagline .tag {
        font-size: 0.875rem;
        padding: 6px 12px;
    }

    .ecosystem-card {
        padding: 24px;
    }

    .timeline-item {
        padding-left: 20px;
    }
}

/* 
Modern GT Sounds Design - Override Previous Styles */

/* Reset Hero Styles */
.hero {
    padding: 0;
    background: none;
}

/* Modern Hero Section - White Background */
.modern-hero {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.modern-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.modern-hero .hero-text {
    color: #1f2937;
}

.modern-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.modern-hero .highlight {
    color: #a7f3d0;
    display: inline-block;
}

.modern-hero .highlight-dark {
    color: #1f2937;
    display: inline-block;
}

.modern-hero .hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-tags .tag {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.modern-hero .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.modern-hero .btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.modern-hero .btn-primary {
    background: #6366f1;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.modern-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    background: #4f46e5;
}

.modern-hero .btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.modern-hero .btn-outline:hover {
    background: #6366f1;
    color: white;
}

/* Floating Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.floating-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1f2937;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.card-music {
    align-self: flex-start;
    animation: float 6s ease-in-out infinite;
}

.card-cloud {
    align-self: center;
    animation: float 6s ease-in-out infinite 2s;
}

.card-ai {
    align-self: flex-end;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #f3f4f6;
    color: #6366f1;
}

.floating-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Sound Bars Visualization */
.modern-hero .hero-visual {
    position: absolute;
    right: 100px;
    bottom: 100px;
    opacity: 0.3;
}

.sound-bars {
    display: flex;
    gap: 6px;
    align-items: end;
    height: 80px;
}

.bar {
    width: 8px;
    background: #6366f1;
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    height: 40px;
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    height: 60px;
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    height: 35px;
    animation-delay: 0.6s;
}

.bar:nth-child(5) {
    height: 25px;
    animation-delay: 0.8s;
}

.bar:nth-child(6) {
    height: 45px;
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}

/* Modern About Section */
.about-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 24px;
}

.about-content .highlight-text {
    font-weight: 700;
    color: #6366f1;
    font-size: 1.375rem;
}

/* Modern Navigation Override */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo {
    color: #6366f1 !important;
    font-weight: 700;
}

.nav-link {
    color: #374151 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #6366f1 !important;
    background: rgba(99, 102, 241, 0.1) !important;
}

.nav-link.admin-btn {
    background: #6366f1 !important;
    color: white !important;
}

.nav-link.admin-btn:hover {
    background: #4f46e5 !important;
}

/* Responsive Design for Modern Layout */
@media (max-width: 1024px) {
    .modern-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .modern-hero .hero-visual {
        position: static;
        opacity: 0.5;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .modern-hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .modern-hero .hero-text p {
        font-size: 1.125rem;
    }

    .hero-tags {
        justify-content: center;
    }

    .modern-hero .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .modern-hero .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        min-width: 150px;
        padding: 16px;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .modern-hero .hero-text h1 {
        font-size: 2rem;
    }

    .hero-tags .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .floating-card {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Modern Ecosystem Section */
.ecosystem-section {
    padding: 120px 0;
    background: #f8fafc;
}

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

.ecosystem-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ecosystem-section .section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.music-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cloud-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.university-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.ai-gradient {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.manufacturing-gradient {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.global-gradient {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.modern-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Update existing sections to be cleaner */
.vision-mission-section,
.india-vision-section,
.why-choose-section,
.roadmap-section,
.join-movement-section {
    display: none;
    /* Hide these sections for cleaner design */
}

/* Modern Footer */
.gt-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 80px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .ecosystem-section {
        padding: 80px 0;
    }

    .ecosystem-section h2 {
        font-size: 2rem;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .modern-card {
        padding: 24px;
    }

    .card-header {
        gap: 12px;
    }

    .card-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .card-header h3 {
        font-size: 1.25rem;
    }
}

/* White B
ackground Sections */

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vision-card h2,
.mission-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
    color: #4b5563;
    line-height: 1.6;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4b5563;
}

.mission-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

/* Ecosystem Section - White Background */
.ecosystem-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.ecosystem-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.ecosystem-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.ecosystem-card .card-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #6366f1;
    font-size: 1.5rem;
}

.ecosystem-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 16px;
    font-weight: 600;
}

.ecosystem-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* India Vision Section */
.india-vision-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.india-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.india-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 32px;
}

.highlight-box {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border: 1px solid #e5e7eb;
}

.highlight-box .main-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin: 0;
}

.india-content p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.why-choose-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.4;
}

/* Enhanced Roadmap Section */
.roadmap-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.roadmap-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.roadmap-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    padding: 0 50px;
    max-width: 400px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 50px;
}

.timeline-content h4 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Join Movement Section */
.join-movement-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
}

.join-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-content .highlight-text {
    font-weight: 700;
    color: #6366f1;
    font-size: 1.25rem;
}

.join-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.join-actions .btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.join-actions .btn-primary {
    background: #6366f1;
    color: white;
}

.join-actions .btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.join-actions .btn-secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.join-actions .btn-secondary:hover {
    background: #6366f1;
    color: white;
}

/* Update About Section */
.about-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 40px;
    }

    .timeline-content {
        text-align: center !important;
        padding: 20px 0 0 0 !important;
        max-width: none;
    }

    .join-actions {
        flex-direction: column;
        align-items: center;
    }

    .join-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/*
 Latest Podcasts Section */
.latest-podcasts-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.section-title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-with-icon i {
    color: #8b5cf6;
    font-size: 1.5rem;
}

.section-title-with-icon h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.latest-podcasts-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #7c3aed;
}

.podcasts-description {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.podcasts-description p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tags .tag {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.podcast-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.podcast-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.podcast-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.podcast-feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Updated Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.why-choose-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .latest-podcasts-section .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .podcast-features-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .feature-tags {
        justify-content: center;
    }

    .podcasts-description {
        padding: 0 20px;
    }
}

/* 
Enhanced Roadmap Responsive Design */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-content {
        text-align: center !important;
        padding: 24px !important;
        margin: 20px 0 0 0 !important;
        max-width: none;
        width: 100%;
    }

    .timeline-year {
        margin-bottom: 0;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .roadmap-timeline {
        padding: 0 20px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-content {
        padding: 20px !important;
    }

    .timeline-content h4 {
        font-size: 1.125rem;
    }
}

/* Roadmap Section Styles */
.roadmap-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.roadmap-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.roadmap-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 400px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 50px;
}

.timeline-content h4 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Roadmap Responsive Design */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-content {
        text-align: center !important;
        padding: 24px !important;
        margin: 20px 0 0 0 !important;
        max-width: none;
        width: 100%;
    }

    .timeline-year {
        margin-bottom: 0;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .roadmap-timeline {
        padding: 0 20px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-content {
        padding: 20px !important;
    }

    .timeline-content h4 {
        font-size: 1.125rem;
    }
}

/* GT 
Sounds Ecosystem Section */
.ecosystem-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.ecosystem-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.ecosystem-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ecosystem-card .card-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8b5cf6;
    font-size: 1.5rem;
}

.ecosystem-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 16px;
    font-weight: 600;
}

.ecosystem-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About GT Sounds Section */
.about-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.about-content .highlight-text {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 1.25rem;
}

/* GT
 Sounds Hero Section */
.hero-section {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid #e5e7eb;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #4b5563;
    max-width: 500px;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-tags .tag {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    background: #7c3aed;
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: white;
}

/* Floating Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.floating-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #f3f4f6;
    color: #8b5cf6;
}

.floating-card span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        min-width: 150px;
        padding: 16px;
    }
}

/* About
 GT Sounds Section */
.about-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.about-content .highlight-text {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 1.25rem;
}

/* Latest Podcasts Section */
.latest-podcasts-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.section-title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-with-icon i {
    color: #8b5cf6;
    font-size: 1.5rem;
}

.section-title-with-icon h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.latest-podcasts-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #7c3aed;
}

.podcasts-description {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.podcasts-description p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tags .tag {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.podcast-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.podcast-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.podcast-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.podcast-feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* 
Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
}

.vision-card h2,
.mission-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.vision-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.125rem;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.mission-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* G
T Sounds Ecosystem Section */
.ecosystem-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.ecosystem-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.ecosystem-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ecosystem-card .card-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8b5cf6;
    font-size: 1.5rem;
}

.ecosystem-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 16px;
    font-weight: 600;
}

.ecosystem-card p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Vi
sion for India & World Section */
.india-vision-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.india-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.india-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 32px;
}

.highlight-box {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border: 1px solid #e5e7eb;
}

.highlight-box .main-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0;
}

.india-content p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.india-content strong {
    color: #1f2937;
}

/* Wh
y Choose GT Sounds Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.why-choose-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Ro
admap Section */
.roadmap-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.roadmap-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.roadmap-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 400px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 50px;
}

.timeline-content h4 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-content {
        text-align: center !important;
        padding: 24px !important;
        margin: 20px 0 0 0 !important;
        max-width: none;
        width: 100%;
    }

    .timeline-year {
        margin-bottom: 0;
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Jo
in the Movement Section */
.join-movement-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
}

.join-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-content .highlight-text {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 1.25rem;
}

.join-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .join-actions {
        flex-direction: column;
        align-items: center;
    }

    .join-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* GT 
Sounds Footer */
.gt-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 80px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* 
Missing Section Styles */

/* Vision for India & World Section */
.india-vision-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.india-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.india-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 32px;
}

.highlight-box {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border: 1px solid #e5e7eb;
}

.highlight-box .main-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0;
}

.india-content p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.india-content strong {
    color: #1f2937;
}

/* Why Choose GT Sounds Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.why-choose-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Roadmap Section */
.roadmap-section {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.roadmap-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.roadmap-section .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 400px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 50px;
}

.timeline-content h4 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Join the Movement Section */
.join-movement-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
}

.join-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-content .highlight-text {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 1.25rem;
}

.join-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Missing Sections */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .roadmap-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-content {
        text-align: center !important;
        padding: 24px !important;
        margin: 20px 0 0 0 !important;
        max-width: none;
        width: 100%;
    }

    .timeline-year {
        margin-bottom: 0;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .join-actions {
        flex-direction: column;
        align-items: center;
    }

    .join-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/*
 Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2001;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close:hover,
.close:focus {
    color: #000;
    background: white;
    transform: scale(1.1);
}

.media-player {
    padding: 30px;
}

.media-player h3 {
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
}

#mediaContainer {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

#mediaDescription {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.media-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.media-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #718096;
    font-size: 0.875rem;
}

/* Video Player Styles */
.video-player-container {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-player {
    position: relative;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-overlay {
    opacity: 1;
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Presentation Viewer Styles */
.presentation-viewer {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.presentation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.presentation-info h3 {
    margin: 0 0 5px 0;
    color: #2d3748;
}

.presentation-subtitle {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

.presentation-controls {
    display: flex;
    gap: 10px;
}

.presentation-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

.presentation-btn:hover {
    background: #5a67d8;
}

.presentation-frame {
    position: relative;
}

.presentation-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f5f5f5;
    color: #718096;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.presentation-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.presentation-progress {
    flex: 1;
    margin-right: 20px;
}

.progress-indicator {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #667eea;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.presentation-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: white;
    border: 1px solid #e9ecef;
    color: #4a5568;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f8f9fa;
    border-color: #cbd5e0;
}

/* Content Card Hover Effects */
.content-card {

    cursor: pointer;
}



.play-overlay {
    transition: all 0.3s ease;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .media-player {
        padding: 20px;
    }

    .presentation-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .presentation-controls {
        width: 100%;
        justify-content: center;
    }

    .presentation-footer {
        flex-direction: column;
        gap: 15px;
    }

    .presentation-progress {
        margin-right: 0;
        width: 100%;
    }
}

/* Modal Styles - Duplicate Section */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10000;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close:hover,
.close:focus {
    color: #000;
    background: white;
    transform: scale(1.1);
}

.media-player {
    padding: 30px;
}

.media-player h3 {
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
}

#mediaContainer {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

#mediaDescription {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.media-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.media-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #718096;
    font-size: 0.875rem;
}

/* Video Player Styles */
.video-player-container {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-player {
    position: relative;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-overlay {
    opacity: 1;
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Presentation Viewer Styles */
.presentation-viewer {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.presentation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.presentation-info h3 {
    margin: 0 0 5px 0;
    color: #2d3748;
}

.presentation-subtitle {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

.presentation-controls {
    display: flex;
    gap: 10px;
}

.presentation-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

.presentation-btn:hover {
    background: #5a67d8;
}

.presentation-frame {
    position: relative;
}

.presentation-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f5f5f5;
    color: #718096;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.presentation-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.presentation-progress {
    flex: 1;
    margin-right: 20px;
}

.progress-indicator {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #667eea;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.presentation-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: white;
    border: 1px solid #e9ecef;
    color: #4a5568;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f8f9fa;
    border-color: #cbd5e0;
}

/* Content Card Hover Effects */
.content-card {

    cursor: pointer;
}



.play-overlay {
    transition: all 0.3s ease;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .media-player {
        padding: 20px;
    }

    .presentation-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .presentation-controls {
        width: 100%;
        justify-content: center;
    }

    .presentation-footer {
        flex-direction: column;
        gap: 15px;
    }

    .presentation-progress {
        margin-right: 0;
        width: 100%;
    }
}

/* Fix pre
sentation card hover effects */
.content-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    cursor: pointer;
}

}

.content-card .play-overlay {
    opacity: 0.7;
    transition: all 0.3s ease;
}


/* Remove any purple/blue tints */
.content-card * {
    color: inherit;
}

.content-card .content-title {
    color: #2d3748;
}

.content-card .content-description {
    color: #4a5568;
}

.content-card .content-tag {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

/* Presentation cards - clean, no effects */
/* FO
RCE REMOVE ALL PRESENTATION HOVER EFFECTS */
.content-card,
[data-content-id]:hover,
[data-content-id]:focus,
[data-content-id]:active,
.featured-item,
.featured-item:hover,
.featured-item:focus,
.featured-item:active {
    cursor: default !important;
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
    background: white !important;
}

.play-overlay,
.play-overlay:hover {
    opacity: 0.8 !important;
    transform: translate(-50%, -50%) !important;
    transition: none !important;
}

/* Disable all hover effects globally for presentations */
.content-section *:hover,
.featured-content *:hover {
    transform: none !important;
    box-shadow: none !important;
    cursor: default !important;
}

/* Cach
e buster - updated at 4:20 PM */
/* 
GT Cloud Deep Dive Sections */
.gt-cloud-section {
    padding: 80px 0;
    background: white;
}

.gt-cloud-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gt-cloud-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.gt-cloud-header h2 i {
    color: #667eea;
    margin-right: 1rem;
}

.gt-cloud-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gt-cloud-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.gt-cloud-purpose {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.purpose-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.purpose-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.purpose-card h3 i {
    margin-right: 0.8rem;
}

.purpose-mission {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.purpose-card blockquote {
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.gt-cloud-capabilities {
    margin-top: 4rem;
}

.gt-cloud-capabilities h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.gt-cloud-capabilities h3 i {
    color: #667eea;
    margin-right: 0.8rem;
}

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

.capability-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.capability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.capability-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.capability-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Ecosystem Deep Dive */
.ecosystem-deep-dive {
    padding: 80px 0;
    background: #f8f9fa;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ecosystem-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.ecosystem-header h2 i {
    color: #667eea;
    margin-right: 1rem;
}

.ecosystem-header p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.ecosystem-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    font-style: italic;
}

.ecosystem-table-container {
    margin: 4rem 0;
}

.ecosystem-table-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.ecosystem-table-container h3 i {
    color: #667eea;
    margin-right: 0.8rem;
}

.ecosystem-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ecosystem-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #e9ecef;
}

.ecosystem-row:last-child {
    border-bottom: none;
}

.ecosystem-header-row {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.ecosystem-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.ecosystem-row:not(.ecosystem-header-row):nth-child(even) {
    background: #f8f9fa;
}

.ecosystem-row:not(.ecosystem-header-row) .ecosystem-cell:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.ecosystem-row:not(.ecosystem-header-row) .ecosystem-cell:first-child i {
    color: #667eea;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.ecosystem-connections {
    margin-top: 4rem;
}

.ecosystem-connections h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.ecosystem-connections h3 i {
    color: #667eea;
    margin-right: 0.8rem;
}

.connection-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.connection-step {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.connection-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

/* GT Vision Section */
.gt-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.vision-content h2 i {
    color: #667eea;
    margin-right: 1rem;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.vision-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.vision-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
}

/* Responsive Design for GT Cloud Sections */
@media (max-width: 768px) {
    .gt-cloud-header h2 {
        font-size: 2rem;
    }

    .gt-cloud-intro {
        font-size: 1.1rem;
    }

    .purpose-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .purpose-card blockquote {
        font-size: 1.2rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ecosystem-row {
        grid-template-columns: 1fr;
    }

    .ecosystem-cell {
        padding: 1rem;
    }

    .connection-flow {
        flex-direction: column;
    }

    .connection-arrow {
        transform: rotate(90deg);
    }

    .connection-step {
        min-width: 250px;
    }

    .vision-content h2 {
        font-size: 2rem;
    }

    .vision-text {
        font-size: 1.1rem;
    }

    .vision-highlight {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .vision-highlight h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    .gt-cloud-section,
    .ecosystem-deep-dive,
    .gt-vision-section {
        padding: 60px 0;
    }

    .gt-cloud-header h2 {
        font-size: 1.8rem;
    }

    .purpose-card {
        padding: 1.5rem;
    }

    .capability-card {
        padding: 1.5rem;
    }

    .connection-step {
        min-width: 200px;
        padding: 1rem;
    }
}

/* 
Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mission-content h2 i {
    color: #667eea;
    margin-right: 1rem;
}

.mission-intro {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.mission-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mission-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.mission-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.mission-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Aurora Codec Section */
.aurora-codec-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.aurora-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aurora-header h2 i {
    color: #667eea;
    margin-right: 1rem;
}

.aurora-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.aurora-description {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.aurora-main {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.aurora-quote {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    backdrop-filter: blur(10px);
}

.aurora-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.aurora-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.aurora-feature i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.aurora-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.aurora-feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Global Impact Section */
.global-impact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.impact-header h2 i {
    color: #667eea;
    margin-right: 1rem;
}

.impact-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-stat {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.impact-stat p {
    color: #6c757d;
    line-height: 1.6;
}

/* GT Sounds for India Section */
.gt-india-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9933 0%, #138808 50%, #000080 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gt-india-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.india-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.india-flag {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #fff;
}

.india-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.india-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.india-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
}

.india-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.india-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.india-highlight i {
    font-size: 2rem;
    color: #fff;
}

.india-highlight span {
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .mission-content h2 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-item {
        padding: 1.5rem;
    }

    .aurora-header h2 {
        font-size: 2rem;
    }

    .aurora-quote {
        font-size: 1.4rem;
        padding: 1.5rem;
    }

    .aurora-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-header h2 {
        font-size: 2rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .india-content h2 {
        font-size: 2rem;
    }

    .india-tagline {
        font-size: 1.3rem;
    }

    .india-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {

    .mission-section,
    .aurora-codec-section,
    .global-impact-section,
    .gt-india-section {
        padding: 60px 0;
    }

    .mission-content h2 {
        font-size: 1.8rem;
    }

    .aurora-header h2 {
        font-size: 1.8rem;
    }

    .aurora-quote {
        font-size: 1.2rem;
    }

    .impact-header h2 {
        font-size: 1.8rem;
    }

    .india-content h2 {
        font-size: 1.8rem;
    }

    .india-highlights {
        grid-template-columns: 1fr;
    }

    .india-flag {
        font-size: 3rem;
    }
}
/* =
==== MOBILE RESPONSIVE STYLES ===== */

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 56px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-logo i {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
        gap: 4px;
    }

    .nav-link i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        height: 52px;
    }

    .nav-logo span {
        display: none;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .nav-link span {
        display: none;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cards {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Media Modal Styles */
.media-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.media-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.media-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.media-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.media-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.media-modal-close:hover {
    background: #e2e8f0;
    color: #2d3748;
}

.media-modal-body {
    padding: 0;
}

.media-container {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.media-container audio,
.media-container video {
    width: 100%;
    max-width: 100%;
    outline: none;
}

.media-container audio {
    height: 60px;
    background: #1a202c;
}

.media-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.media-description {
    padding: 20px 24px;
    color: #4a5568;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

/* Mobile Media Modal */
@media (max-width: 768px) {
    .media-modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }

    .media-modal-header {
        padding: 16px 20px;
    }

    .media-modal-title {
        font-size: 1.1rem;
    }

    .media-container {
        min-height: 200px;
    }

    .media-container iframe {
        height: 400px;
    }

    .media-description {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .media-modal-content {
        margin: 5% auto;
        width: 98%;
        max-height: 95vh;
        border-radius: 8px;
    }

    .media-modal-header {
        padding: 12px 16px;
    }

    .media-modal-title {
        font-size: 1rem;
    }

    .media-container {
        min-height: 180px;
    }

    .media-container audio {
        height: 50px;
    }

    .media-container iframe {
        height: 300px;
    }

    .media-description {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* Enhanced Mobile Audio Controls */
.mobile-audio-controls {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px 8px 12px;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-audio-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.mobile-audio-thumbnail {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.mobile-audio-details {
    flex: 1;
    min-width: 0;
}

.mobile-audio-title {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-bottom: 1px;
}

.mobile-audio-artist {
    font-size: 0.7rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.mobile-audio-controls-row {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
}

.mobile-play-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.mobile-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    min-width: 60px;
}

.mobile-progress-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.1s ease;
}

.mobile-time {
    font-size: 0.65rem;
    opacity: 0.8;
    min-width: 28px;
    text-align: center;
    font-weight: 500;
}

.mobile-control-buttons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.mobile-control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-volume-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-volume-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Show mobile controls only on mobile */
@media (max-width: 768px) {
    .mobile-audio-controls.active {
        display: block;
    }
}

/* Content Cards Mobile Optimization */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .content-card {
        display: flex;
        gap: 12px;
        padding: 12px;
    }

    .content-thumbnail {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .content-info {
        flex: 1;
        min-width: 0;
    }

    .content-title {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .content-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .content-meta {
        font-size: 0.75rem;
    }

    .content-tags {
        margin-top: 6px;
    }

    .content-tag {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
}

/* Floating Cards Mobile */
@media (max-width: 768px) {
    .floating-card {
        padding: 16px;
        min-height: 80px;
    }

    .floating-card .card-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .floating-card span {
        font-size: 0.9rem;
    }
}

/* Button Mobile Optimization */
@media (max-width: 768px) {
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn i {
        font-size: 0.9rem;
    }
}

/* Section Padding Mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 12px;
    }
}/* Ext
ra Small Mobile Devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .mobile-audio-controls {
        padding: 6px 8px;
    }

    .mobile-audio-info {
        gap: 8px;
        margin-bottom: 4px;
    }

    .mobile-audio-thumbnail {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .mobile-audio-title {
        font-size: 0.8rem;
    }

    .mobile-audio-artist {
        font-size: 0.65rem;
    }

    .mobile-audio-controls-row {
        gap: 6px;
        height: 36px;
    }

    .mobile-play-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .mobile-control-btn,
    .mobile-volume-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        padding: 4px;
    }

    .mobile-progress-container {
        gap: 4px;
    }

    .mobile-time {
        font-size: 0.6rem;
        min-width: 24px;
    }

    .mobile-progress-bar {
        min-width: 50px;
        height: 2px;
    }

    .mobile-control-buttons {
        gap: 2px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-audio-controls {
        padding: 6px 12px;
    }

    .mobile-audio-info {
        margin-bottom: 4px;
    }

    .mobile-audio-controls-row {
        height: 36px;
    }

    .mobile-audio-title {
        font-size: 0.8rem;
    }

    .mobile-audio-artist {
        font-size: 0.65rem;
    }
}

/* Touch Target Improvements */
@media (max-width: 768px) {
    .mobile-play-btn,
    .mobile-control-btn,
    .mobile-volume-btn {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
    }

    .mobile-progress-bar {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        padding: 8px 0;
        margin: -8px 0;
    }
}