.whatsapp-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0e27 100%);
}

.whatsapp-hero {
    margin-bottom: 3rem;
}

.whatsapp-profile {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.bot-card-container {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 280px;
    height: fit-content;
}

.bot-image-container {
    display: inline-block;
    margin-bottom: 1rem;
}

.bot-image {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2);
    display: block;
}

.hero-description-side {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.hero-description-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.hero-description-side p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.btn-sm-hero {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.button-wrapper .btn-sm-hero {
    display: inline-flex;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

.bot-info {
    text-align: center;
}

.bot-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.bot-name span {
    color: var(--accent-pink);
}

.bot-subtitle {
    color: var(--accent-green);
    font-size: 0.95rem;
    font-weight: 500;
}

.whatsapp-name {
    font-size: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    padding: 0.75rem 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: var(--accent-green);
    color: var(--text-light);
}

.btn-primary {
    background: var(--accent-pink);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 20, 147, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.whatsapp-profile .btn-primary {
    background: var(--accent-pink);
    color: white;
}

.whatsapp-profile .btn-primary:hover {
    background: #ff1493;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

/* Content Section */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Tags and Badges */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 500;
}

.tag:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: var(--accent-green);
}

.tag.pink {
    background: rgba(255, 20, 147, 0.1);
    border-color: rgba(255, 20, 147, 0.2);
    color: var(--accent-pink);
}

.tag.pink:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: var(--accent-pink);
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.2), transparent);
    margin: 2rem 0;
}

/* Responsive WhatsApp */
@media (max-width: 768px) {
    .whatsapp-profile {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .bot-card-container {
        width: 100%;
        padding: 1.5rem;
    }

    .bot-image {
        width: 140px;
        height: 140px;
    }

    .hero-right-column {
        width: 100%;
        gap: 1.5rem;
    }

    .bot-name {
        font-size: 1.5rem;
    }

    .hero-description-side {
        margin-top: 0;
        width: 100%;
        text-align: center;
    }

    .hero-description-side h3 {
        font-size: 1.25rem;
    }

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

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

    .feature-item {
        padding: 1.25rem;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
    }

    .social-link {
        width: 100%;
        text-align: center;
    }
}

/* ===== MUSIC PLAYER CARD (ROSA) ===== */
.music-player-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.12) 0%, rgba(255, 20, 147, 0.06) 100%);
    border: 1.5px solid rgba(255, 20, 147, 0.3);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.1);
}

.player-song-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.mini-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.mini-player-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.15);
    color: var(--accent-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mini-player-btn:hover {
    background: rgba(255, 20, 147, 0.28);
    transform: scale(1.12);
}

.mini-player-btn.play-pause {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.28), rgba(255, 20, 147, 0.12));
    border: 2px solid var(--accent-pink);
}

.mini-player-btn.play-pause:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.38), rgba(255, 20, 147, 0.22));
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.35);
}

#loopBtn.active {
    background: rgba(255, 20, 147, 0.3);
    color: var(--accent-pink);
    box-shadow: 0 0 12px rgba(255, 20, 147, 0.4);
}

.mini-progress-section {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.mini-progress-bar-container {
    position: relative;
    height: 6px;
    background: rgba(255, 20, 147, 0.15);
    border-radius: 10px;
    overflow: visible;
    cursor: pointer;
    margin: 0.6rem 0;
}

.mini-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-pink), #ff69b4);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

.mini-progress-heart {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    transition: left 0.1s linear;
    z-index: 3;
    filter: drop-shadow(0 2px 5px rgba(255, 20, 147, 0.45));
    line-height: 1;
}

.mini-time-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.mini-time-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    min-width: 40px;
}

.mini-time-current {
    color: var(--accent-pink);
    font-weight: 700;
    text-align: left;
}

/* Audio Element (Hidden) */
#audioPlayer {
    display: none;
}

/* Responsive Music Player */
@media (max-width: 768px) {
    .music-player-card {
        padding: 1.25rem;
        gap: 1rem;
        border-radius: 12px;
    }

    .player-song-title {
        font-size: 1rem;
    }

    .mini-player-controls {
        gap: 1rem;
    }

    .mini-player-btn {
        width: 34px;
        height: 34px;
    }

    .mini-player-btn.play-pause {
        width: 42px;
        height: 42px;
    }

    .mini-progress-bar-container {
        height: 5px;
        margin: 0.5rem 0;
    }

    .mini-progress-heart {
        font-size: 1.2rem;
    }

    .mini-time-text {
        font-size: 0.75rem;
        min-width: 35px;
    }
}
