/* WataMusic Modern Styles - Inspired by Groover */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Groover-inspired color palette */
    --wata-primary: #6366f1; /* Modern indigo */
    --wata-secondary: #8b5cf6; /* Purple accent */
    --wata-accent: #f59e0b; /* Warm amber */
    --wata-success: #10b981; /* Emerald green */
    --wata-danger: #ef4444; /* Red */
    --wata-dark: #0f172a; /* Deep slate */
    --wata-light: #f8fafc;
    --wata-gray: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cool: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

/* Trust Icons Container with subtle background */
.trust-icons-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Trust Icons Grid - 3x2 Mobile Layout */
.trust-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-icon-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem;
    transition: transform 0.2s ease;
}

.trust-icon-item:hover {
    transform: scale(1.1);
}

/* Desktop layout for trust icons */
@media (min-width: 768px) {
    .trust-icons-container {
        max-width: 800px;
        padding: 2rem;
    }
    
    .trust-icons-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
    }
    
    .trust-icon-item {
        padding: 1rem;
    }
}

/* Mobile-First Responsive Spotify Player */
.spotify-embed-container {
    position: relative;
    width: 100%;
    background: #1ed760;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    /* Mobile first: optimal height for small screens */
    height: 180px;
}

.spotify-embed-container iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 12px;
    background: #121212;
    display: block;
}

/* Desktop version */
@media (min-width: 769px) {
    .spotify-embed-container {
        height: 352px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .spotify-embed-container iframe {
        height: 352px;
    }
}

/* Mobile Navigation Styles - Alineado correctamente */
.mobile-profile-btn {
    background: #f4a261;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-profile-btn:hover {
    background: #e76f51;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.mobile-login-btn {
    background: #f4a261;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-login-btn:hover {
    background: #e76f51;
    color: #000;
    transform: translateY(-1px);
}

/* Navbar mobile fixes */
@media (max-width: 991px) {
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 15px;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .d-flex.d-lg-none {
        display: flex !important;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 8px;
        margin-left: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        display: block;
        margin: 0 auto;
    }
}

/* Mobile dropdown improvements - Sistema unificado */
@media (max-width: 991px) {
    /* Dropdowns móviles consistentes */
    .dropdown-menu {
        min-width: 280px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        background: rgba(33, 37, 41, 0.95) !important;
        border-radius: 12px;
        margin-top: 8px;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-header {
        font-weight: 600;
        color: #ffd700 !important;
        background: rgba(255, 215, 0, 0.15);
        border-radius: 8px;
        margin: 0.5rem;
        padding: 0.75rem;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        border-radius: 8px;
        margin: 2px 8px;
    }
    
    .dropdown-item:hover, .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        transform: translateX(4px);
    }
    
    .dropdown-divider {
        margin: 0.5rem 0;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Mejoras para botones de votación móvil */
    .mobile-vote-btn {
        min-height: 50px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-vote-btn:active {
        transform: scale(0.95);
    }
    
    .mobile-vote-btn:disabled {
        opacity: 0.6;
        pointer-events: none;
    }
}
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 576px) {
    .wallet-amount {
        font-size: 0.8rem;
    }
    
    .mobile-wallet-display {
        padding: 6px 8px;
        min-width: 70px;
    }
    
    .mobile-profile-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Featured Action Cards */
.featured-action {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.featured-action:hover::before {
    left: 100%;
}

.featured-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.featured-action .card-header {
    position: relative;
    z-index: 2;
}

.featured-action .stat-item {
    padding: 0.5rem;
}

.featured-action .stat-item:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Mobile-First Responsive WataMapa */
.watamapa-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.watamapa-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    text-align: center;
}

.watamapa-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.watamapa-title-wrapper i {
    color: white;
    font-size: 1.5rem;
}

.watamapa-title {
    color: white;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
}

.watamapa-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.watamapa-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
}

.watamapa-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.watamapa-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.watamapa-message {
    background: rgba(59, 130, 246, 0.1);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive Adjustments */
/* Mobile tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .spotify-embed-container {
        height: 220px;
        background: #1ed760;
    }
    
    .spotify-embed-container iframe {
        height: 220px;
    }
}
    
    .watamapa-card {
        margin: 0;
        border-radius: 12px;
    }
    
    .watamapa-header {
        padding: 1rem;
    }
    
    .watamapa-title {
        font-size: 1.5rem;
    }
    
    .watamapa-title-wrapper {
        gap: 0.5rem;
    }
    
    .watamapa-title-wrapper i {
        font-size: 1.25rem;
    }
    
    .watamapa-container {
        height: 300px;
    }
    
    .watamapa-message {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* General mobile improvements */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .text-center h3 {
        font-size: 1.25rem;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .spotify-embed-container {
        height: 180px;
        border-radius: 8px;
        background: #1ed760;
        margin: 0 -10px;
        box-shadow: none;
    }
    
    .spotify-embed-container iframe {
        height: 180px;
        border-radius: 8px;
    }
}
    
    .watamapa-container {
        height: 250px;
    }
    
    .watamapa-title {
        font-size: 1.25rem;
    }
    
    .watamapa-subtitle {
        font-size: 0.85rem;
    }
    
    .watamapa-header {
        padding: 0.75rem;
    }
    
    /* Additional mobile optimizations */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    h1, h2, h3 {
        font-size: 1.25rem;
    }
    
    .text-gradient-primary {
        font-size: 1.5rem !important;
    }
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #f8fafc;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 800;
}

/* Navigation */
.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.navbar {
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand i {
    color: var(--wata-primary);
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: white;
}

.btn-success {
    background: var(--gradient-cool);
    color: white;
}

.btn-success:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-cool);
    color: white;
}

.btn-warning {
    background: var(--gradient-gold);
    color: #92400e;
}

.btn-warning:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-gold);
    color: #92400e;
}

.btn-outline-primary {
    border: 2px solid var(--wata-primary);
    color: var(--wata-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--wata-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    font-weight: 600;
    border-radius: 20px 20px 0 0;
}

.card-body {
    padding: 2rem;
}

/* Enhanced card variations */
.card.border-warning {
    border-left: 4px solid var(--wata-accent) !important;
}

.card.border-success {
    border-left: 4px solid var(--wata-success) !important;
}

.voting .card {
    border-left: 4px solid var(--wata-primary);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Music Cards */
.music-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.music-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.music-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.music-genre, .music-city {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Vote Button */
.vote-btn {
    background: var(--gradient-warm);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vote-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: white;
}

.vote-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Status Badges */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.status-pending, .badge.bg-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-approved, .badge.bg-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-rejected, .badge.bg-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-featured, .badge.bg-primary {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* WataCoins */
.watacoins, .badge.bg-warning.text-dark {
    background: var(--gradient-gold) !important;
    color: #92400e !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.watacoins-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.watacoins-icon {
    color: #f59e0b;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.watacoins-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.watacoins-amount {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.watacoins-euro-value {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: -0.5rem;
    line-height: 1;
}

/* Forms */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--wata-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    color: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 16px;
    border: none;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-left: 4px solid var(--wata-success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid var(--wata-danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid var(--wata-accent);
}

.alert-info {
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-left: 4px solid var(--wata-primary);
}

/* Admin Dashboard */
.admin-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-filters {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Custom color classes */
.text-purple {
    color: #9c27b0 !important;
}

.bg-purple {
    background-color: #9c27b0 !important;
}

.border-purple {
    border-color: #9c27b0 !important;
}

/* Music card styling for WataDescubrimientos */
.music-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced Wallet Styling */
.wata-wallet {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wallet-icon {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.wallet-title {
    color: white;
    font-weight: 600;
    margin: 0;
}

.balance-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
    margin-bottom: 0.25rem;
}

.balance-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.wallet-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.detail-item:last-child {
    margin-bottom: 0;
}

/* Premium Benefits Section */
.benefits-section {
    padding: 2rem 0;
}

.benefits-header {
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 2.25rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

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

.benefit-card.border-warning::before {
    background: var(--gradient-gold);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for benefits */
@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
}

/* Premium Pricing Section */
.pricing-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.price-card::before {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.reward-card::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.pricing-amount {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency, .price {
    font-weight: 900;
    color: #6366f1;
}

.currency {
    font-size: 1.5rem;
}

.price {
    font-size: 3.5rem;
    text-shadow: 0 2px 20px rgba(99, 102, 241, 0.3);
}

.reward-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #f59e0b;
    text-shadow: 0 2px 20px rgba(245, 158, 11, 0.3);
}

.reward-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f59e0b;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-features {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
    min-width: 1rem;
}

.reward-card .feature-item i {
    color: #f59e0b;
}

.guarantee-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-icon {
        font-size: 3rem;
    }
    
    .price, .reward-number {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .reward-currency {
        font-size: 1rem;
    }
}
}

/* Table Styles */
.table {
    color: rgba(255, 255, 255, 0.9);
}

.table th {
    border-top: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 1rem 0.75rem;
}

.table td {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

/* Music Links */
a[href*="youtube.com"], 
a[href*="youtu.be"], 
a[href*="spotify.com"] {
    color: var(--wata-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

a[href*="youtube.com"]:hover, 
a[href*="youtu.be"]:hover, 
a[href*="spotify.com"]:hover {
    color: var(--wata-secondary);
    text-decoration: underline;
}

/* Modal Enhancements */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
}

/* Payment Section */
.submission-details {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pricing h3 {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Empty State */
.text-center.py-5 i {
    opacity: 0.5;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        margin: 1rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .admin-dashboard, .admin-filters {
        padding: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .music-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
}

/* Utilities */
.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-warm {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--wata-primary) !important;
}

.bg-primary {
    background-color: var(--wata-primary) !important;
}

.glass-effect {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Sticky Elements */
.sticky-top {
    z-index: 1020;
}

/* Modern Features Section - Inspired by the provided image */
.features-modern-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    margin: 2rem 0;
}

.modern-feature-card {
    background: transparent;
    border: none;
    padding: 2rem 1rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-feature-card:hover {
    transform: translateY(-8px);
}

.modern-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #ec4899 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.modern-feature-card:hover .modern-feature-icon {
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
    transform: scale(1.05);
}

.modern-feature-icon i {
    font-size: 1.75rem;
    color: white;
    font-weight: 600;
}

.modern-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modern-feature-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive adjustments for modern features */
@media (max-width: 768px) {
    .modern-feature-card {
        padding: 1.5rem 1rem;
    }
    
    .modern-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .modern-feature-icon i {
        font-size: 1.5rem;
    }
    
    .modern-feature-title {
        font-size: 1rem;
    }
    
    .modern-feature-text {
        font-size: 0.85rem;
    }
}

/* Statistics Cards Styling */
.stats-card-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card-purple:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.stats-card-orange {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(245, 101, 101, 0.2) 100%);
    border: 1px solid rgba(251, 146, 60, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card-orange:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2);
    border-color: rgba(251, 146, 60, 0.5);
}

/* Statistics Icons */
.stats-icon-feedback {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.stats-icon-feedback i {
    font-size: 1.75rem;
    color: white;
}

.stats-icon-coin,
.stats-icon-watacoins {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.wc-coin,
.watacoin-symbol {
    font-size: 1rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.stats-card-brown {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.3) 0%, rgba(92, 27, 3, 0.3) 100%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card-brown:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
    border-color: rgba(217, 119, 6, 0.5);
}

/* Responsive adjustments for stats icons */
@media (max-width: 768px) {
    .stats-icon-feedback,
    .stats-icon-coin,
    .stats-icon-watacoins {
        width: 50px;
        height: 50px;
    }
    
    .stats-icon-feedback i {
        font-size: 1.5rem;
    }
    
    .wc-coin,
    .watacoin-symbol {
        font-size: 0.9rem;
    }
}

/* CTA Block Section */
.cta-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .cta-block {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* WataMapa Message */
.watamapa-message {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.watamapa-message p {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}

.watamapa-message i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Map Touch Alert */
.map-touch-alert {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    position: relative;
}

.map-alert-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #dc3545;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.2s ease;
}

.map-alert-close:hover {
    background: #c82333;
    transform: scale(1.1);
}

.map-touch-alert.show {
    opacity: 1;
    pointer-events: auto;
    animation: pulseAlert 2s ease-in-out infinite;
}

.map-touch-alert i {
    color: #fbbf24;
    font-size: 1.2rem;
}

@keyframes pulseAlert {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Solo mostrar en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .map-touch-alert {
        display: flex;
    }
}

@media (hover: hover) and (pointer: fine) {
    .map-touch-alert {
        display: none !important;
    }
}

/* Responsive adjustments for WataMapa message */
@media (max-width: 768px) {
    .watamapa-message {
        padding: 0.875rem 1rem;
    }
    
    .watamapa-message p {
        font-size: 0.9rem;
    }
    
    .watamapa-message i {
        font-size: 1rem;
    }
}

/* Detailed Benefits Section */
.benefits-detailed-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-detailed-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.benefit-detailed-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-detailed-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive adjustments for detailed benefits */
@media (max-width: 768px) {
    .benefits-detailed-section {
        padding: 2rem 1.5rem;
    }
    
    .benefits-detailed-title {
        font-size: 1.5rem;
    }
    
    .benefit-detailed-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .benefit-emoji {
        font-size: 1.25rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}

/* YouTube Video Embed Section */
.video-embed-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-embed-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.3);
}

.video-embed-container iframe {
    border-radius: 12px;
}

/* Responsive adjustments for video embed */
@media (max-width: 768px) {
    .video-embed-container {
        padding: 1rem;
    }
}

/* Spotify Embed Section */
.spotify-embed-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotify-embed-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(30, 215, 96, 0.3);
}

.spotify-embed-container iframe {
    width: 100%;
    border-radius: 12px;
}

/* Responsive adjustments for Spotify embed */
@media (max-width: 768px) {
    .spotify-embed-container {
        padding: 1rem;
    }
    
    .spotify-embed-container iframe {
        height: 300px;
    }
}

/* Instagram Reels Section */
.instagram-embed-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instagram-reel-card {
    background: rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.instagram-reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(225, 48, 108, 0.3);
}

.instagram-reel-card::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 1;
    opacity: 0.9;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 1rem;
    z-index: 2;
}

.reel-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-item i {
    font-size: 0.9rem;
    color: #ff6b9d;
}

.reel-info h6 {
    font-weight: bold;
    margin: 0;
}

.reel-info p {
    margin: 0;
    opacity: 0.8;
}

.instagram-reel-card .instagram-media {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
}



/* Responsive adjustments for Instagram reels */
@media (max-width: 768px) {
    .instagram-embed-container {
        padding: 1rem;
    }
    
    .instagram-reel-card {
        min-height: 300px;
        margin-bottom: 1rem;
    }
    
    .instagram-reel-card::before {
        width: 50px;
        height: 50px;
    }
    
    .instagram-reel-card::after {
        font-size: 1.2rem;
    }
}

/* WataPartners Dashboard - Commission Breakdown Styles */
.commission-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.commission-icon i {
    font-size: 1.2rem;
}

/* Enhanced card styles for partner dashboard */
.card.commission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card.commission-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Feature icon improvements for smaller cards */
.feature-icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.1rem;
}

/* Responsive improvements for partner stats */
@media (max-width: 768px) {
    .commission-icon {
        width: 35px;
        height: 35px;
    }
    
    .commission-icon i {
        font-size: 1rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
}

/* Fix for form inputs with white text on white background */
.form-control, .form-select, .form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

.form-control:focus {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.form-label {
    color: #f8fafc !important;
    font-weight: 500 !important;
}

/* Dark theme compatibility for forms */
.card .form-control, .card .form-select {
    background-color: #ffffff !important;
    color: #212529 !important;
}

/* Input groups */
.input-group-text {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important;
}

/* Textarea specific fixes */
textarea.form-control {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #212529 !important;
    min-height: 100px;
}

/* File inputs */
.form-control[type="file"] {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #212529 !important;
}

/* Select dropdowns */
.form-select option {
    background-color: #ffffff !important;
    color: #212529 !important;
}

/* Nuevo diseño de precio alternativo */
.pricing-alternative-new {
    margin-top: 0.5rem;
}

.pricing-amount-alt {
    text-align: center;
    margin-top: 0.3rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-alt {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6f42c1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.currency-alt {
    font-size: 1.2rem;
    font-weight: 600;
    color: #20c997;
    margin-left: 0.2rem;
}

/* Widget Wallet Rueda de la Suerte */
.wallet-rueda-widget {
    display: inline-flex;
    align-items: center;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wallet-rueda-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
}

.wallet-icon {
    color: #fbbf24;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.wallet-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.wallet-amount {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive wallet */
@media (max-width: 768px) {
    .wallet-rueda-widget {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .wallet-icon {
        font-size: 1rem;
    }
    
    .wallet-amount {
        font-size: 1rem;
    }
}