/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

/* Social Sharing Components */
.social-sharing-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(244, 4, 156, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(244, 4, 156, 0.2);
}

.social-sharing-section h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
}

.social-share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    background: var(--gray);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.twitter-share { background: #1DA1F2; }
.twitter-share:hover { background: #0d8bd9; }

.facebook-share { background: #4267B2; }
.facebook-share:hover { background: #365899; }

.whatsapp-share { background: #25D366; }
.whatsapp-share:hover { background: #1ebe57; }

.linkedin-share { background: #0077B5; }
.linkedin-share:hover { background: #006399; }

.copy-link { background: var(--magenta); }
.copy-link:hover { background: #d1037a; }

.native-share { background: var(--cyan); }
.native-share:hover { background: #00acc1; }

.share-btn i {
    font-size: 16px;
}

.share-btn span {
    color: white;
}

/* Responsive social sharing */
@media (max-width: 768px) {
    .social-share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn i {
        font-size: 18px;
    }
}

/* Enhanced Open Graph Preview */
.og-preview {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--black);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.og-preview.show {
    display: block;
    animation: fadeInScale 0.3s ease-out;
}

.og-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.og-preview h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.3;
}

.og-preview p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.og-preview .domain {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.loader-bubbles {
    display: flex;
    gap: 20px;
}

.bubble {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    position: relative;
}

.bubble1 {
    background: var(--black);
    border: 3px solid var(--white);
    animation: bubble1 1.5s infinite;
}

.bubble2 {
    background: var(--magenta);
    animation: bubble2 1.5s infinite;
}

@keyframes bubble1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes bubble2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(10px) scale(1.1); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s;
}

nav.scrolled {
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

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

.logo {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--magenta);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Player Component */
.player-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s 0.4s backwards;
    position: relative;
    overflow: hidden;
}

.player-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--magenta), transparent);
    animation: shimmer 3s infinite;
    opacity: 0.1;
}

.episode-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--magenta);
}

.custom-player {
    background: var(--black);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--magenta);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid var(--white);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.pause-icon {
    display: none;
    width: 20px;
    height: 24px;
    position: relative;
}

.pause-icon::before,
.pause-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 24px;
    background: var(--white);
}

.pause-icon::after {
    right: 0;
}

.player-info {
    flex: 1;
}

.waveform {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 10px 0;
}

.wave-bar {
    width: 3px;
    background: var(--gray);
    border-radius: 3px;
    transition: all 0.3s;
}

.wave-bar.active {
    background: var(--magenta);
}

/* Platform Links */
.platform-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.6s backwards;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--magenta);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.platform-btn:hover {
    background: var(--magenta);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

/* Episode Card */
.episode-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(233, 30, 99, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

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

.episode-number {
    font-size: 0.9rem;
    color: var(--magenta);
    margin-bottom: 10px;
}

.episode-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.episode-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Clip Card */
.clip-card {
    min-width: 300px;
    aspect-ratio: 9/16;
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.clip-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.clip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.clip-card:hover .clip-overlay {
    transform: translateY(0);
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateX(10px);
    background: rgba(233, 30, 99, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--magenta);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--magenta);
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 50px;
    color: var(--white);
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--magenta);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--magenta);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #C2185B;
    transform: translateY(-2px);
}