/* Section Headers Styling */
.section-header h2,
.podcast-description h2,
.host-info .host-header h2,
.feature-section .feature-header h2,
.reviews-section h3,
.guest-speaker-header .header-content h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

/* New Standardized Section Title Styling */
.social-media-links {
    position: relative;
    gap: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons-container {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    background-color: rgba(0,0,0,0.75);
    color: #fff;
    user-select: none;
    animation: fadeIn 1s ease forwards;
    white-space: nowrap;
}

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


.section-header h2::after,
.podcast-description h2::after,
.host-info .host-header h2::after,
.feature-section .feature-header h2::after,
.reviews-section h3::after,
.guest-speaker-header .header-content h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header .btn-view-all {
    margin-top: 0.5rem;
}

.feature-section .feature-header p,
.podcast-description p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Redesigned Podcast Info Section */
.podcast-info {
     padding: 5rem 0 3rem;
    overflow: hidden;
    border-radius: 0 0 2.5rem 2.5rem;

 }

@keyframes floatCircle1 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatCircle2 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.podcast-info::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    animation: floatCircle1 12s ease-in-out infinite;
}

.podcast-info::after {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: -4rem;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    animation: floatCircle2 15s ease-in-out infinite;
}

.podcast-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.podcast-header {
    display: grid;
    grid-template-columns: minmax(280px, 320px) 1fr;
    gap: 3rem;
}

.podcast-image-wrapper {
    position: relative;
    border-radius: 8px;
}

.podcast-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0);
}

.podcast-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.podcast-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.podcast-main-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.social-media-links {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.listen-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-icon-link:hover .social-icon-circle {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Social media specific colors */
.social-icon-link.twitter .social-icon-circle {
    background: linear-gradient(135deg, #1DA1F2, #0D8ECF);
    color: white;
}

.social-icon-link.instagram .social-icon-circle {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icon-link.facebook .social-icon-circle {
    background: linear-gradient(135deg, #3B5998, #2B4170);
    color: white;
}

.social-icon-link.youtube .social-icon-circle {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.social-icon-link.linkedin .social-icon-circle {
    background: linear-gradient(135deg, #0077B5, #0056A3);
    color: white;
}

.social-icon-link.spotify .social-icon-circle {
    background: linear-gradient(135deg, #1DB954, #1AA34A);
    color: white;
}

/* Dark theme adjustments */
[data-theme="dark"] .social-icon-link {
    color: var(--text-on-primary);
}

/* Responsive styles for social media links */
@media (max-width: 768px) {
    .social-icons-container {
        gap: 0.6rem;
    }

    .social-icon-circle {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .social-icons-container {
        gap: 0.5rem;
    }

    .social-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

.social-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.social-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.social-icon-link span {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon-link:hover span {
    opacity: 1;
}

.podcast-title-wrapper h1 {
    color: var(--primary-color);

    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

[data-theme="light"] .podcast-title-wrapper h1 {
      color: var(--primary-color);
}

.podcast-host {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

[data-theme="light"] .podcast-host {
    color: var(--primary-color);
}

.host-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.podcast-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.podcast-actions {
    margin-top: 2rem;
}

.action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.action-group button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-group button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Podcast Description Section */
.podcast-description {
    padding: 4rem 0;
    background: var(--background);
}

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

.description-content h2 {
    font-size: 2rem;
    background:  var(--background-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .description-content h2 {
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: var(--primary-color);
    font-weight: 700;
}

.description-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

[data-theme="light"] .description-content p {
    color: var(--text-color);
}

.podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.meta-item span {
    font-size: 1rem;
}

/* Host Info Section */
.host-info {
    padding: 4rem 0;
}

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

.host-header {
    margin-bottom: 2rem;
}

.host-header h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.host-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.host-bio {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

[data-theme="light"] .host-bio {
    color: var(--primary-color);
    opacity: 0.85;
}

/* Feature Section */
.feature-section {
    padding: 4rem 0;
    background: var(--background);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-header {
    margin-bottom: 2.5rem;
}

.feature-header h2 {
    font-size: 2.5rem;
     -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

.feature-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.social-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-share span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: var(--transform-hover-sm);
}

.share-btn.twitter {
    background: var(--twitter-color);
}

.share-btn.linkedin {
    background: var(--linkedin-color);
}

.share-btn.facebook {
    background: var(--facebook-color);
}

.share-btn.whatsapp {
    background: var(--whatsapp-color);
}

.share-option i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .feature-actions {
        gap: 1.5rem;
    }

    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Guest Speaker Section */
.guest-speaker-section {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, rgba(var(--primary-rgb-values), 0.95) 100%);
    border-radius: 20px;
    margin: 3rem auto;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb-values), 0.2);
    backdrop-filter: blur(10px);
}

@keyframes floatCircle3 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatCircle4 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-15px, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.guest-speaker-section::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: floatCircle3 12s ease-in-out infinite;
}

.guest-speaker-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: floatCircle4 15s ease-in-out infinite;
}

.guest-speaker-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb-values), 0.3);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.header-icon i {
    font-size: 2rem;
    color: var(--text-color);

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-content {
    text-align: left;
    flex: 1;
}

.header-content h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -0.02em;
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.package-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.btn-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    height: 380px;
    padding: 2rem;
    border-radius: 20px;
    background:  var(--background-color);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    text-decoration: none;
    gap: 1rem;
}

[data-theme="light"] .btn-package {
    background: #ffffff;
    border: 1px solid #e9ecef;
    color: var(--primary-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.03);
}

.btn-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

[data-theme="light"] .btn-package:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb-values), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

[data-theme="light"] .package-icon {
    background: rgba(228, 168, 83, 0.1);
}

.package-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .package-icon i {
    color: var(--secondary-color);
}

.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: inherit;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: inherit;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.package-feature {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.package-cta {
    margin-top: auto;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.package-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:  var(--background-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-package:hover .package-cta {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-2px);
}

.btn-package:hover .package-cta::before {
    opacity: 1;
}

.discount {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 5;
    border-radius: 0 20px 0 12px;
}

.package-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:  var(--background-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-package:hover .package-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Podcast Episodes Section */
.podcast-episodes {
    padding: 4rem 0;
    background: var(--background);
    position: relative;
}

@keyframes floatCircle5 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25px, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatCircle6 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -25px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.podcast-episodes::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: floatCircle5 9s ease-in-out infinite;
}

.podcast-episodes::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: floatCircle6 11s ease-in-out infinite;
}

.podcast-episodes .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.podcast-episodes .section-header h2 {
    font-size: 2.5rem;
    background:  var(--background-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

[data-theme="light"] .podcast-episodes .section-header h2 {
    background: none;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.podcast-episodes .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.episode-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 15px;
    padding: 20px;
    background:  var(--background-color);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    align-items: center;
}

[data-theme="light"] .episode-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.episode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    background:  var(--background-color);
}

[data-theme="light"] .episode-item:hover {
    background: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.episode-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--primary-rgb-values), 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary-color);

}

.episode-item:hover::before {
    opacity: 1;
}

.episode-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb-values), 0.3);
    margin-right: 10px;
}

.episode-icon i {
    font-size: 18px;
    color: var(--primary-color);

}

.episode-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.episode-info h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

[data-theme="light"] .episode-info h3 {
    color: var(--primary-color);
}

.episode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

[data-theme="light"] .episode-meta {
    color: #4b5563;
}

.episode-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.episode-date i {
    color: var(--primary);
}

[data-theme="light"] .episode-date i {
    color: var(--secondary-color);
}

.episode-guests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.guest-label {
    font-weight: 600;
    color: var(--text-primary);
}

.guest-name {
    background: rgba(var(--primary-rgb-values), 0.1);
    padding: 0.25rem 0.1rem;
    font-size: 0.85rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

[data-theme="light"] .guest-name {
    background: rgba(228, 168, 83, 0.1);
    color: var(--primary-color);
}

.guest-name:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

[data-theme="light"] .guest-name:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.episode-platforms {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    border: none;
    text-decoration: none;
}

.platform-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
}

.platform-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.platform-link.spotify {
    background: #1DB954;
    color: white;
}

.platform-link.spotify:hover {
    background: #1ed760;
    transform: translateY(-5px) scale(1.1);
}

.platform-link.apple {
    background: #b23ed4;
    color: white;
}

.platform-link.apple:hover {
    background: #b150e2 ;
    transform: translateY(-5px) scale(1.1);
}


.platform-link.youtube {
    background: #df142b;
    color: white;
}

.platform-link.youtube:hover {
    background: #df142b;
    transform: translateY(-5px) scale(1.1);
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-link:hover::before {
    opacity: 1;
}


/* دکمه‌های اول و آخر (قبلی و بعدی) */
.page-item:first-child .page-link {
    border-radius: 50% 0 0 50%; /* گرد در سمت چپ، تیز در سمت راست */
}

.page-item:last-child .page-link {
    border-radius: 0 50% 50% 0; /* گرد در سمت راست، تیز در سمت چپ */
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    border: 1px solid var(--border-color);
}

.page-item:not(.disabled) .page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.youtube-videos-section {
    padding: 5rem 0;
    background:  var(--background-color);
    position: relative;
}

.youtube-videos-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.youtube-videos-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.youtube-video {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.youtube-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--primary-rgb-values), 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.youtube-video:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(var(--primary-rgb-values), 0.3);
}

.youtube-video:hover::before {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.5s ease;
}

.youtube-video:hover .video-wrapper iframe {
    transform: scale(1.05);
}

.video-info {
    padding: 1.8rem;
    background: var(--card-bg);
    position: relative;
    z-index: 2;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.youtube-video:hover .video-info h3 {
    color: var(--primary-color);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .youtube-videos-section {
        padding: 4rem 0;
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .youtube-videos-section {
        padding: 3rem 0;
    }

    .video-info {
        padding: 1.2rem;
    }

    .video-info h3 {
        font-size: 1.1rem;
    }

    .video-info p {
        font-size: 0.9rem;
    }
}
.page-item:not(.disabled):not(.active) .page-link {
    background: transparent;
    color: var(--text-secondary);
}

.page-item.active .page-link {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* نقاط (ellipsis) */
.page-item .page-link[aria-label="..."] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: default;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* استایل‌های تم لایت */
[data-theme="light"] .page-link {
    color: var(--primary-color);
    border-color: #e9ecef;
}

[data-theme="light"] .page-item:not(.disabled):not(.active) .page-link:hover {
    background: rgba(228, 168, 83, 0.2);
    color: #333;
    border-color: var(--secondary-color);
}

[data-theme="light"] .page-item.active .page-link {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}
.podcast-location {
    color: var(--primary-color);
}


i.location-icon , i.headphones-icon, .video-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.guest-register-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: white;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(238, 9, 121, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.guest-register-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    transition: all 0.6s ease;
    z-index: 0;
}

.guest-register-btn:hover::before {
    left: 0;
}

.guest-register-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(238, 9, 121, 0.4);
    color: white;
}

.guest-register-btn i {
    font-size: 1.4rem;
    z-index: 1;
}

@media (max-width: 576px) {
    .guest-register-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        border-radius: 40px;
        gap: 0.4rem;
    }
}

@media (max-width: 768px) {
    .episode-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .episode-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .episode-platforms {
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }

    .episode-meta {
        flex-direction: column;
        gap: 10px;
    }

    .platform-link {
        width: 46px;
        height: 46px;
    }

    .platform-link i {
        font-size: 20px;
    }
}

/* Related Podcasts Section */
.related-section {
    padding: 4rem 0;
    background: var(--background);
}

.related-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.related-section .section-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

[data-theme="light"] .related-section .section-header h2,
[data-theme="light"] .previous-guests .section-header h2 {
    color: var(--primary-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}



.podcast-info  .action-btn {
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
 background: transparent;
}

.podcast-info .action-btn i {
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.podcast-info  .action-btn.active i {
    color: var(--primary);
}



[data-theme="light"] .podcast-title h3 {
    color: var(--primary-color);
}

.podcast-host {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

[data-theme="light"] .podcast-host {
    color: #4b5563;
}

.podcast-card:hover .podcast-host i {
    transform: var(--transform-scale);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .podcast-info {
        padding: 4rem 0 2.5rem;
        border-radius: 0 0 2rem 2rem;
    }

    .podcast-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .podcast-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
        transform: none;
    }

    .podcast-cover {
        max-width: 100%;
    }


}

@media (max-width: 768px) {
    .podcast-info {
        padding: 3rem 0 2rem;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .podcast-cover {
        max-width: 220px;
        margin: 0 auto;
    }

    .podcast-title-wrapper h1 {
        font-size: 2.25rem;
    }

    .guest-speaker-section {
        margin: 1.5rem;
        max-width: 95%;
    }

    .guest-speaker-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .header-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .header-icon i {
        font-size: 1.75rem;
    }

    .header-content h3 {
        font-size: 1.75rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .package-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn-package {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 1.5rem;
    }

    .episode-item {
        grid-template-columns: 48px 1fr;
        padding: 16px;
        gap: 12px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .episode-platforms {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 16px;
        justify-content: flex-start;
        padding-top: 16px;
        border-top: 1px solid var(--border-color);
    }

    .episode-content {
        margin-right: 0;
    }

    .episode-icon, .platform-link {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .episode-icon i, .platform-link i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .podcast-info {
        padding: 2rem 0 1.5rem;
        border-radius: 0 0 1rem 1rem;
    }

    .podcast-cover {
        max-width: 180px;
    }

    .podcast-title-wrapper h1 {
        font-size: 2rem;
    }

    .episode-item {
        padding: 12px;
        margin-bottom: 12px;
    }

    .episode-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .episode-icon i {
        font-size: 16px;
    }

    .episode-title {
        font-size: 16px;
    }

    .episode-date {
        font-size: 12px;
    }

    .episode-guests {
        gap: 6px;
        margin-top: 12px;
    }

    .episode-platforms {
        margin-top: 12px;
        padding-top: 12px;
    }

    .platform-link {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .platform-link i {
        font-size: 16px;
    }
}

/* Guest Section */
.guest-section {
    padding: 4rem 0;
    background: var(--background);
}

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

.guest-section .section-header h2 {
    font-size: 2rem;
    background:  var(--background-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.guest-section .section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.guest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background:  var(--background-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

[data-theme="light"] .guest-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
}

.guest-card:hover {
    transform: var(--transform-hover);
    box-shadow: var(--shadow-lg);
    background:  var(--background-color);
}

[data-theme="light"] .guest-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.guest-card .guest-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.guest-card .guest-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.guest-card:hover .guest-name {
    transform: translateY(0);
    opacity: 1;
}

.guest-card .guest-name h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .guests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .guests-grid {
        grid-template-columns: 1fr;
    }
}

/* Podcast Image Actions */
.podcast-image-actions {

    display: flex;
    gap: 8px;
    z-index: 10;
}




[data-theme="dark"] .share-btn:hover i {
    color: #4da3ff;
}

[data-theme="dark"] .bookmark-btn:hover i {
    color: #ff8a8a;
}

/* Previous Guests Section */
.previous-guests {
    padding: 4rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

@keyframes floatCircle7 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatCircle8 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-25px, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.previous-guests::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: floatCircle7 13s ease-in-out infinite;
}

.previous-guests::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: floatCircle8 14s ease-in-out infinite;
}

.previous-guests .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.play-icon-always {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
    pointer-events: none;
}

.host-media-appearances {
    margin-top: 2rem;
}

.media-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.media-grid:has(.media-item:only-child) {
    grid-template-columns: 1fr;
}

.media-grid:has(.media-item:only-child) .media-item {
    max-width: 75%;
    margin: 0 auto;
}

.media-grid:has(.media-item:first-child:nth-last-child(2)) {
    grid-template-columns: repeat(2, 1fr);
}

.media-grid:has(.media-item:first-child:nth-last-child(3)) {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1.5rem;
}

.media-grid:has(.media-item:first-child:nth-last-child(3)) .media-item:nth-child(1) {
    grid-row: span 2;
    height: 100%;
}

.media-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary, #f8f9fa);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 3 / 2;
    max-width: 600px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.media-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.media-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.media-item:hover .media-image img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 1rem;
    text-align: center;
    color: white;
    z-index: 1;
}

.media-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr !important;
    }

    .media-item {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .play-icon-always {
        font-size: 2.5rem;
    }

    .media-description {
        font-size: 0.8rem;
    }
}

.previous-guests .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.btn-view-all {
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background:  var(--background-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

[data-theme="light"] .btn-view-all {
    background: rgba(228, 168, 83, 0.1);
    color: var(--secondary-color);
    border-color: rgba(228, 168, 83, 0.2);
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-view-all:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .previous-guests .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .previous-guests .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-view-all {
        margin: 0 auto;
    }
}

.card-actions {
    right: -166px
}
.comment {
    background:  var(--background-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .comment {
    background: var(--card-background);
      border: 1px solid #e9ecef;
}

[data-theme="light"] .podcast-info {
    background:  var(--background-color-color)  ;

 }

[data-theme="light"] .podcast-details {
    color: var(--primary-color);
}

[data-theme="light"] .podcast-host {
    color: var(--primary-color);
}

[data-theme="light"] .podcast-content .podcast-host {
    color: #4b5563;
}

[data-theme="light"] .podcast-host i {
    color: var(--secondary-color);
}

[data-theme="light"] .meta-item {
    color: var(--text-color);
}

[data-theme="light"] .meta-item i {
    color: var(--secondary-color);
}

.btn-view-all i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}
.episode-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    border-radius: 10px;
    padding: 10px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.modal-content{
    background: var(--background);
    color: var(--primary-color);
}
#loginRegisterModal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

#loginRegisterModal .modal-header {
    padding: 1.5rem 1.5rem 0;
}

#loginRegisterModal .modal-body {
    padding: 1.5rem;
}

#loginRegisterModal .modal-footer {
    padding: 0 1.5rem 1.5rem;
}

#loginRegisterModal .btn-auth {
    border-radius: 8px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    height: 50px !important; /* Fixed height for all buttons */
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.875rem;
}

#loginRegisterModal .btn-primary {
    background-color: var(--bs-primary, #4361ee);
    border-color: var(--bs-primary, #4361ee);
}

#loginRegisterModal .btn-primary:hover {
    background-color: var(--bs-primary-dark, #3a56d4);
    border-color: var(--bs-primary-dark, #3a56d4);
    transform: translateY(-2px);
}

#loginRegisterModal .btn-outline-primary {
    color: var(--bs-primary, #4361ee);
    border-color: var(--bs-primary, #4361ee);
}

#loginRegisterModal .btn-outline-primary:hover {
    background-color: var(--bs-primary, #4361ee);
    color: white;
    transform: translateY(-2px);
}

#loginRegisterModal .display-4 {
    color: var(--bs-primary, #4361ee);
}

#loginRegisterModal .lead {
    font-size: 1.1rem;
    color: var(--primary-color);
}

#loginRegisterModal .text-muted a {
    color: var(--bs-primary, #4361ee);
    text-decoration: none;
}

#loginRegisterModal .text-muted a:hover {
    text-decoration: underline;
}

/* Dark mode specific styles */
[data-bs-theme="dark"] #loginRegisterModal .modal-content {
    background-color: var(--bs-dark, #212529);
    color: var(--bs-light, #f8f9fa);
}

[data-bs-theme="dark"] #loginRegisterModal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] #loginRegisterModal .modal-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] #loginRegisterModal .lead {
    color: var(--bs-light, #f8f9fa);
}

[data-bs-theme="dark"] #loginRegisterModal .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-bs-theme="dark"] #loginRegisterModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
