/*
Theme Name: Ideality Podcast
Description: Un tema WordPress moderno e professionale per podcast con design elegante, player audio integrato e layout completamente responsive.
Author: Francesco Di Monte
Version: 1.0
Text Domain: ideality-podcast
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 235, 59, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Stili per logo personalizzato WordPress */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .custom-logo-link {
    display: inline-block;
    max-width: 200px;
}

.site-logo .custom-logo {
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.site-logo .custom-logo:hover {
    opacity: 0.8;
}

/* Fallback per testo del sito */
.site-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-logo a {
    color: #ffeb3b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo a:hover {
    color: #fff59d;
}

/* Stili per menu WordPress */
.main-navigation ul,
.main-navigation .main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: #ffeb3b;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffeb3b;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subscribe-btn {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

.search-toggle {
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.search-toggle:hover {
    background: rgba(255, 235, 59, 0.1);
}

/* Hero Section */
.hero-section {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.podcast-cover-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 3px solid #ffeb3b;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cover-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cover-text {
    color: #ffeb3b;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ffeb3b;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffeb3b;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.play-latest-btn {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Play icon styles */
.play-icon, .episode-play-icon, .big-play-icon, .play-pause-icon {
    width: 20px;
    height: 20px;
}

.control-icon {
    width: 18px;
    height: 18px;
}

.big-play-icon {
    width: 40px;
    height: 40px;
}

.play-pause-icon {
    width: 16px;
    height: 16px;
}

.play-latest-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 235, 59, 0.3);
}

.browse-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #ffeb3b;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-btn:hover {
    background: #ffeb3b;
    color: #000;
    transform: translateY(-3px);
}

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

.podcast-cover {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.podcast-cover:hover {
    transform: scale(1.05);
}

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

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

.podcast-cover:hover .play-overlay {
    opacity: 1;
}

.big-play-btn {
    background: #ffeb3b;
    color: #000;
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-play-btn .big-play-icon {
    filter: brightness(0) saturate(100%) invert(20%);
}

.big-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.5);
}

/* Latest Episodes Section */
.latest-episodes {
    padding: 80px 0;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.episodes-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.episode-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 2px solid #ffeb3b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.episode-number {
    color: #ffeb3b;
    font-size: 2rem;
    font-weight: 700;
}

.episode-card {
    background: #000;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.episode-card:hover {
    background: #111;
    transform: none;
    box-shadow: none;
}

.episode-image {
    position: relative;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 20px;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.episode-card:hover .episode-image img {
    transform: none;
}

.episode-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 235, 59, 0.9);
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-play-btn .episode-play-icon {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.episode-card:hover .episode-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.episode-content {
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.episode-meta {
    display: none;
}

.episode-category {
    background: #ffeb3b;
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.episode-date {
    color: #888;
    font-size: 0.9rem;
}

.episode-title {
    margin: 0;
    flex: 1;
}

.episode-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
}

.episode-title a:hover {
    color: #ffeb3b;
}

.episode-description {
    display: none;
}

.episode-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.episode-date {
    color: #888;
    font-size: 0.85rem;
    min-width: 80px;
}

.episode-duration {
    color: #ffeb3b;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
}

.episode-actions {
    display: none;
}

.action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 235, 59, 0.1);
    border-color: #ffeb3b;
    color: #ffeb3b;
}

.view-all-episodes {
    text-align: center;
}

.view-all-btn {
    background: transparent;
    color: #ffeb3b;
    border: 2px solid #ffeb3b;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ffeb3b;
    color: #000;
    transform: translateY(-3px);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 235, 59, 0.1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 235, 59, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
}

.category-description {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.category-count {
    color: #ffeb3b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #000;
}

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

.newsletter-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.subscribe-form input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.subscribe-form button {
    background: #000;
    color: #ffeb3b;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 235, 59, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffeb3b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffeb3b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffeb3b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-top: 1px solid rgba(255, 235, 59, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: bottom 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.player-thumbnail-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 2px solid #ffeb3b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-icon {
    color: #ffeb3b;
    font-size: 1.5rem;
}

.audio-player.active {
    bottom: 0;
}

.fixed-player {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 235, 59, 0.3);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
}

.fixed-player.active {
    bottom: 0;
    animation: slideUpPlayer 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpPlayer {
    from {
        bottom: -120px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 1fr auto 2fr auto auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 235, 59, 0.05) 0%, transparent 50%, rgba(255, 235, 59, 0.05) 100%);
    border-radius: 20px 20px 0 0;
}

.news-banner {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 235, 59, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 235, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.news-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 235, 59, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

.news-banner-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(255, 235, 59, 0.3));
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

.player-close {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.player-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.player-close:hover::before {
    width: 80px;
    height: 80px;
}

.player-close:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    color: #ff4757;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-width: 0;
    padding: 8px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 235, 59, 0.1);
    transition: all 0.3s ease;
}

.player-info:hover {
    background: rgba(255, 235, 59, 0.08);
    border-color: rgba(255, 235, 59, 0.2);
    transform: translateY(-1px);
}

.player-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 235, 59, 0.2);
}

.player-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 235, 59, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-thumbnail:hover::after {
    opacity: 1;
}

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

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

.player-text {
    min-width: 0;
    flex: 1;
}

#playerTitle {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#playerDate {
    color: #aaa;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 235, 59, 0.1);
}

.control-btn {
    background: transparent;
    border: 2px solid rgba(255, 235, 59, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.control-btn:hover::before {
    width: 100px;
    height: 100px;
}

.control-btn:hover {
    background: rgba(255, 235, 59, 0.1);
    color: #ffeb3b;
    border-color: #ffeb3b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.2);
}

.play-button {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 235, 59, 0.3);
    border: 2px solid rgba(255, 235, 59, 0.5);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 235, 59, 0.4);
    background: linear-gradient(135deg, #fff59d 0%, #ffeb3b 100%);
}

.play-button:active {
    transform: scale(0.95);
}

.play-pause-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.player-progress span {
    color: #888;
    font-size: 0.8rem;
    white-space: nowrap;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffeb3b, #ffc107);
    width: 0%;
    transition: width 0.1s ease;
}

.close-player {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-player:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff5555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .podcast-cover {
        width: 300px;
        height: 300px;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .player-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        padding: 15px 20px;
    }
    
    .player-info {
        gap: 0.8rem;
    }
    
    .player-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    #playerTitle {
        font-size: 0.9rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .news-banner {
        width: 60px;
        height: 60px;
        display: none;
    }
    
    .player-progress {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .podcast-cover {
        width: 250px;
        height: 250px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.episode-card,
.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffeb3b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #ffeb3b;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}