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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    background-repeat: no-repeat;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
    border-bottom: 2px solid #071B3F;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo h2 {
    color: #071B3F;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #071B3F;
    text-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.nav-link.active {
    color: #071B3F;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #071B3F;
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
.btn-primary {
    background: #071B3F;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.btn-nav-primary {
    background: #071B3F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.btn-nav-secondary {
    background: transparent;
    color: #071B3F;
    border: 2px solid #071B3F;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

.btn-nav-primary:hover {
    background: #071B3F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-nav-secondary:hover {
    background: #071B3F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: #071B3F;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 9px 19px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    border: 1px solid #dc2626;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-large {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1rem 0;
}

/* Profile Edit Page Button Colors */
.profile-edit-page .btn-secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #071B3F;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-edit-page .btn-secondary:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #071B3F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #94a3b8;
}

/* Upcoming Shows Section */
.upcoming-shows-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 64px 0; /* Reduced from 80px to 64px (20% reduction) */
}

.shows-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; /* Reduced from 50px to 40px (20% reduction) */
}

.shows-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #071B3F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
}


/* Shows Carousel Wrapper */
.shows-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Arrows */
.shows-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #071B3F;
    color: #071B3F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.shows-nav-arrow:hover {
    background: #071B3F;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.shows-nav-arrow.prev {
    left: -25px;
}

.shows-nav-arrow.next {
    right: -25px;
}

/* Shows Carousel */
.shows-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.shows-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.shows-page {
    display: none;
    gap: 30px;
    min-width: 100%;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.shows-page.active {
    display: flex;
}

.show-card {
    width: 350px;
    height: 480px; /* Fixed height for homogeneity */
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.show-image {
    width: 100%;
    height: 176px; /* Reduced from 220px to 176px (20% reduction) */
    overflow: hidden;
    position: relative;
    background: #071B3F;
}

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

.show-card:hover .show-image img {
    transform: scale(1.08);
}

.show-content {
    padding: 22px; /* Reduced from 28px to 22px (20% reduction) */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.show-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #071B3F;
    margin: 0 0 16px 0;
    line-height: 1.3;
    height: 68px; /* Fixed height for 2 lines maximum */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}

.show-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #071B3F;
    margin-bottom: 8px;
    height: 32px; /* Fixed height for price section */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.show-availability {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    height: 24px; /* Fixed height for availability section */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.availability-limited {
    color: #dc2626;
}

.availability-sold {
    color: #dc2626;
}

.show-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 19px; /* Reduced from 24px to 19px (20% reduction) */
    height: 32px; /* Fixed height for date section */
    text-align: center;
}

.show-date i {
    color: #071B3F;
    font-size: 1rem;
}

.btn-more-info {
    width: 100%;
    height: 48px; /* Fixed height for button */
    background: #071B3F;
    color: #ffffff;
    border: none;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto; /* Push button to bottom */
}

.btn-more-info:hover {
    background: #071B3F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Pagination Dots */
.shows-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px; /* Reduced from 40px to 32px (20% reduction) */
}

.shows-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #071B3F;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shows-dot.active {
    background: #071B3F;
    transform: scale(1.2);
}

.shows-dot:hover {
    background: #071B3F;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .shows-nav-arrow.prev {
        left: 10px;
    }
    
    .shows-nav-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .shows-header {
        text-align: center;
        margin-bottom: 32px; /* Reduced from 40px to 32px (20% reduction) */
    }
    
    .shows-title {
        font-size: 2.2rem;
    }
    
    .show-card {
        width: 300px;
        height: 480px; /* Keep same height on mobile */
    }
    
    .shows-page {
        gap: 20px;
    }
    
    .shows-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .shows-nav-arrow.prev {
        left: 5px;
    }
    
    .shows-nav-arrow.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .upcoming-shows-section {
        padding: 48px 0; /* Reduced from 60px to 48px (20% reduction) */
    }
    
    .shows-title {
        font-size: 1.8rem;
    }
    
    .show-card {
        width: 280px;
        height: 480px; /* Keep same height on small mobile */
    }
    
    .shows-page {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .shows-page.active {
        display: flex;
        flex-direction: column;
    }
}

.btn-full {
    width: 100%;
}

.btn-filter {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-filter:hover {
    background: #e2e8f0;
    color: #475569;
}

/* Hero Carousel Section */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Carousel Sponsors */
.carousel-sponsors {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 100px; /* Increased from 60px to 100px */
    background: rgba(0, 0, 0, 0.4); /* More opaque background */
    backdrop-filter: blur(15px); /* Stronger blur effect */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 2;
}

.carousel-sponsors .sponsors-track {
    display: flex;
    animation: scroll-left 25s linear infinite;
    gap: 50px; /* Increased gap for better spacing */
    align-items: center;
    height: 100%;
    padding: 0 30px; /* Increased padding */
}

.carousel-sponsors .sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px; /* Match logo width */
    height: 70px; /* Match logo height */
    padding: 0; /* Remove padding */
    background: transparent; /* No background box */
    border: none; /* No border */
    transition: all 0.3s ease;
    white-space: nowrap;
}

.carousel-sponsors .sponsor-item:hover {
    background: transparent; /* No background on hover */
    transform: translateY(-2px);
    box-shadow: none; /* No shadow on hover */
}

.carousel-sponsors .sponsor-logo {
    width: 160px; /* Fill most of the sponsor item width */
    height: 70px; /* Fill most of the sponsor item height */
    border-radius: 0; /* No rounded corners */
    object-fit: contain; /* Keep aspect ratio */
    background: transparent; /* No background */
    padding: 0; /* No padding */
    filter: brightness(1.2) contrast(1.1); /* Make logos more visible */
}

/* Sponsor name styles removed - only logos now */

/* Pausar animación en hover */
.carousel-sponsors:hover .sponsors-track {
    animation-play-state: paused;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 15px; /* Moved up to accommodate larger sponsors strip */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.nav-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

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

/* Sponsors Carousel */
.sponsors-carousel {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsors-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sponsors-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 70px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sponsor-item:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: none;
}

.sponsor-logo {
    width: 160px;
    height: 70px;
    border-radius: 0;
    object-fit: contain;
    border: none;
    background: transparent;
    padding: 0;
    filter: brightness(1.2) contrast(1.1);
}

.sponsor-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pausar animación en hover */
.sponsors-carousel:hover .sponsors-track {
    animation-play-state: paused;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search Section */
.search-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
}

.search-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-bar {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-bar i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.search-bar input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.search-bar input:focus {
    outline: none;
    border-color: #071B3F;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: #071B3F;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Directory Section */
.directory {
    padding: 4rem 0;
    background: #ffffff;
    color: #333;
}

.directory-header {
    text-align: center;
    margin-bottom: 34px;
}

.directory-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.directory-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.results-info {
    background: #f8fafc;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

.results-info span {
    color: #64748b;
    font-weight: 500;
}

/* Profile Cards */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: stretch;
}

.profile-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profile-card-dark {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #071B3F;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #071B3F, #7c3aed);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.profile-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #071B3F;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-header-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid white;
    background: #071B3F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-photo-dark {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 4px solid white;
    background: #071B3F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    display: block;
}

.profile-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.profile-info-dark h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    text-align: center;
}

.profile-stars-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    gap: 6px;
}

.profile-stars-minimal .fas.fa-star {
    color: #fbbf24;
    font-size: 2rem;
}

.profile-stars-minimal .fas.fa-star-half-alt {
    color: #fbbf24;
    font-size: 2rem;
}

.profile-stars-minimal .far.fa-star {
    color: #d1d5db;
    font-size: 2rem;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.social-btn.facebook {
    background: #1877f2;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.social-btn.facebook:hover {
    background: #166fe5;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 2px 8px rgba(188, 24, 136, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55a2b 25%, #d11e3a 50%, #c11a5d 75%, #ac1579 100%);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.social-btn.youtube {
    background: #ff0000;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.social-btn.youtube:hover {
    background: #e60000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.social-btn.tiktok {
    background: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-btn.tiktok:hover {
    background: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Botones de redes sociales sin enlace - mantienen colores pero no son clickeables */
.social-btn:not(a) {
    cursor: default;
    pointer-events: none;
}

.social-btn:not(a):hover {
    transform: none;
}

.profile-role {
    display: inline-block;
    padding: 4px 12px;
    background: #dbeafe;
    color: #071B3F;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
}


.profile-role-dark {
    display: inline-block;
    padding: 6px 14px;
    background: #071B3F;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

/* Estilos específicos por rol */
.profile-role-dark.role-comedian {
    background: #071B3F; /* Azul oscuro para Comediante */
    box-shadow: 0 0 10px rgba(7, 27, 63, 0.3);
}

.profile-role-dark.role-producer {
    background: #7c3aed; /* Morado para Productor */
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.profile-details {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.profile-details-dark {
    margin-bottom: 2px;
    flex-shrink: 0;
    display: none; /* Hidden by default for non-logged users */
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    padding: 0 4px;
    box-sizing: border-box;
}

/* Show location only when user is logged in */
body.user-logged-in .profile-details-dark {
    display: flex;
}

/* Reduce card height when location is hidden (non-logged users) */
.profile-card {
    transition: all 0.3s ease;
}

/* Adjust social buttons margin when location is hidden */
body:not(.user-logged-in) .social-buttons {
    margin-bottom: 0.5rem; /* Reduce margin when location is hidden */
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
}

.detail-item i {
    width: 20px;
    margin-right: 12px;
    color: #071B3F;
}

.detail-item-dark {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
}

.detail-item-dark i {
    width: 20px;
    margin-right: 12px;
    color: #071B3F;
    font-size: 0.9rem;
}

/* Centrado específico para el location - Desktop */
.detail-item-dark.location {
    justify-content: center;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    margin-top: 0.5rem;
}

/* Ocultar el icono del location */
.detail-item-dark.location i {
    display: none;
}

.detail-item-dark.location span {
    width: 100%;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
}

.profile-specialties {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.profile-specialties-dark {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.specialty-tag-dark {
    background: #071B3F;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

.profile-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding: 20px 0 0 0;
    justify-content: center;
    align-items: center;
}

.profile-actions-dark {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding: 20px 0 0 0;
    justify-content: center;
    align-items: center;
}

.btn-contact {
    flex: 1;
    background: #f8fafc;
    color: #071B3F;
    border: 2px solid #e2e8f0;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-contact:hover {
    background: #071B3F;
    color: white;
    border-color: #071B3F;
}

.btn-view-profile {
    background: #071B3F;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-profile:hover {
    background: #071B3F;
    transform: translateY(-2px);
}

.btn-contact-dark {
    flex: 1 1 50%;
    background: #ffffff;
    color: #071B3F;
    border: 2px solid #071B3F;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
    height: 48px;
    min-width: 120px;
    box-sizing: border-box;
}

.btn-contact-dark:hover {
    background: #071B3F;
    border-color: #071B3F;
    color: white;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.btn-view-profile-dark {
    flex: 1 1 50%;
    background: #071B3F;
    color: white;
    border: 2px solid transparent;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
    height: 48px;
    min-width: 120px;
    box-sizing: border-box;
}

.btn-view-profile-dark:hover {
    background: #071B3F;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.btn-contact-dark i {
    color: #071B3F;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.no-results-dark {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #475569;
}

.no-results-dark i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #666;
}

.no-results-dark h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #1e293b;
}

.no-results-dark p {
    color: #888;
    font-size: 1.1rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.profile-modal {
    max-width: 800px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1.5rem;
    background: white;
    color: #1e293b;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    color: #1e293b !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.close {
    color: #94a3b8 !important;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #64748b !important;
    transform: scale(1.1);
}

/* Forms */
.registration-form,
.login-form,
.forgot-password-form {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #071B3F;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Social Media Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-media-grid .form-group {
    margin-bottom: 0;
}

.social-media-grid .form-group label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.social-media-grid .form-group input {
    font-size: 0.9rem;
    padding: 8px 12px;
}

.image-preview {
    margin-top: 1rem;
    text-align: center;
}

.image-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
}

.login-footer a {
    color: #071B3F;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Profile Detail */
.profile-detail {
    padding: 2rem;
}

.profile-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.profile-detail-photo {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-detail-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.profile-detail-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.profile-detail-role {
    display: inline-block;
    padding: 8px 16px;
    background: #dbeafe;
    color: #071B3F;
    border-radius: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

/* Estilos específicos por rol para modal de perfil */
.profile-detail-role.role-comedian {
    background: #dbeafe;
    color: #071B3F; /* Azul oscuro para Comediante */
}

.profile-detail-role.role-producer {
    background: #e9d5ff;
    color: #7c3aed; /* Morado para Productor */
}

.profile-detail-location {
    color: #64748b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.profile-detail-section h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.profile-detail-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #64748b;
}

.contact-item i {
    width: 24px;
    margin-right: 12px;
    color: #071B3F;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #071B3F;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #071B3F;
    transform: translateY(-2px);
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e2e8f0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        text-align: center;
        font-size: 1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-actions {
        gap: 0.5rem;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .btn-nav-primary,
    .btn-nav-secondary {
        padding: 6px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* Hero Carousel Responsive */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Carousel Navigation */
    .carousel-nav {
        bottom: 20px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
    
    /* Search Section Responsive */
    .search-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-input {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .search-bar {
        min-width: auto;
    }
    
    /* Directory Section Responsive */
    .profiles-grid,
    .profiles-grid-dark {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 20px 15px;
    }
    
    .profile-card,
    .profile-card-dark {
        padding: 20px;
        min-height: 350px;
    }
    
    .profile-header,
    .profile-header-dark {
        margin-bottom: 15px;
    }
    
    .profile-photo,
    .profile-photo-dark {
        width: 280px;
        height: 280px;
        margin-bottom: 1rem;
    }
    
    .profile-info h3,
    .profile-info-dark h3 {
        font-size: 1.2rem;
    }
    
    .profile-stars-minimal .fas.fa-star,
    .profile-stars-minimal .fas.fa-star-half-alt,
    .profile-stars-minimal .far.fa-star {
        font-size: 1.4rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    
    .profile-role,
    .profile-role-dark {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .detail-item,
    .detail-item-dark {
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    .profile-actions,
    .profile-actions-dark {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }
    
    .btn-contact,
    .btn-contact-dark,
    .btn-view-profile,
    .btn-view-profile-dark {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .filter-container {
        justify-content: center;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .profile-detail-content {
        grid-template-columns: 1fr;
    }
    
    .profile-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-detail-photo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header,
    .registration-form,
    .login-form,
    .profile-detail {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        height: 55px;
        padding: 0 10px;
        justify-content: space-between;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-actions {
        gap: 0.3rem;
        flex-shrink: 0;
    }
    
    .btn-nav-primary,
    .btn-nav-secondary {
        padding: 5px 8px;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    .hamburger {
        padding: 3px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .directory-header h2 {
        font-size: 2rem;
    }
    
    .profile-card {
        padding: 1rem;
    }
    
    .profile-photo {
        width: 80px;
        height: 80px;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .nav-container {
        height: 50px;
        padding: 0 8px;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-actions {
        gap: 0.2rem;
    }
    
    .btn-nav-primary,
    .btn-nav-secondary {
        padding: 4px 6px;
        font-size: 0.7rem;
    }
    
    .hamburger {
        padding: 2px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
    }
    
    /* Hero Carousel Mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Shows Section Mobile */
    .upcoming-shows-section {
        padding: 40px 0;
    }
    
    .shows-title {
        font-size: 1.8rem;
    }
    
    .show-card {
        width: 280px;
        height: 480px;
    }
    
    .shows-page {
        gap: 15px;
    }
    
    .shows-nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .shows-nav-arrow.prev {
        left: 2px;
    }
    
    .shows-nav-arrow.next {
        right: 2px;
    }
    
    .shows-pagination {
        margin-top: 24px;
    }
    
    .shows-dot {
        width: 12px;
        height: 12px;
    }
    
    /* Directory Mobile */
    .profiles-grid,
    .profiles-grid-dark {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 10px;
    }
    
    .profile-card,
    .profile-card-dark {
        padding: 15px;
        min-height: 280px;
    }
    
    .profile-photo,
    .profile-photo-dark {
        width: 240px;
        height: 240px;
        margin-bottom: 0.8rem;
    }
    
    .profile-info h3,
    .profile-info-dark h3 {
        font-size: 1.1rem;
    }
    
    .profile-stars-minimal .fas.fa-star,
    .profile-stars-minimal .fas.fa-star-half-alt,
    .profile-stars-minimal .far.fa-star {
        font-size: 1.2rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    
    /* Search Mobile */
    .search-section {
        padding: 30px 0;
    }
    
    .search-container {
        padding: 20px 15px;
    }
    
    .search-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .filter-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #071B3F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Map Page Styles */
.map-container {
    height: calc(100vh - 80px);
    width: 100%;
    position: relative;
    margin-top: 80px;
}

.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.map-controls h3 {
    margin: 0 0 15px 0;
    color: #071B3F;
    font-size: 16px;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.map-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
}

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

.stat-number {
    font-size: 18px;
    font-weight: 600;
    color: #071B3F;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-weight: 500;
    color: #071B3F;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #f8fafc;
}

.custom-popup {
    max-width: 300px;
}

.popup-content {
    text-align: center;
}

.popup-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.popup-name {
    font-weight: 600;
    color: #071B3F;
    margin-bottom: 5px;
}

.popup-role {
    background: #7c3aed;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.popup-location {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.popup-specialties {
    font-size: 12px;
    color: #374151;
    margin-bottom: 10px;
}

.popup-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.popup-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.popup-btn-primary {
    background: #071B3F;
    color: white;
}

.popup-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.popup-btn:hover {
    opacity: 0.9;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.loading i {
    font-size: 24px;
    color: #071B3F;
    margin-bottom: 10px;
}

/* Custom marker styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

/* Map responsive styles */
@media (max-width: 768px) {
    .map-controls {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .map-container {
        height: calc(100vh - 200px);
    }
    
    .back-button {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ===== DARK DIRECTORY STYLES ===== */
.dark-directory {
    background: #ffffff;
    min-height: 100vh;
    padding: 80px 0 40px 0;
    color: #333;
}

/* Dark Directory Header */
.directory-header-dark {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
}

.directory-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.directory-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.9;
}

.results-count {
    background: #f8fafc;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Dark Search Section */
.search-section-dark {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.search-container-dark {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.search-bar-dark {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-bar-dark i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    z-index: 1;
}

.search-bar-dark input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    color: #64748b;
    transition: all 0.3s ease;
}

.search-bar-dark input:focus {
    outline: none;
    border-color: #071B3F;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-bar-dark input::placeholder {
    color: #9ca3af;
}

.filter-container-dark {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select-dark {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #64748b;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select-dark:focus {
    outline: none;
    border-color: #071B3F;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-filter-dark {
    background: #071B3F;
    color: white;
    border: 2px solid #071B3F;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.btn-filter-dark:hover {
    background: #071B3F;
    border-color: #071B3F;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

/* Dark Profiles Grid */
.profiles-grid-dark {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.profile-card-dark {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #071B3F;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.profile-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #071B3F;
}

.profile-header-dark {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Removed duplicate .profile-photo-dark definition - using main definition at line 1164 */
/* Removed duplicate .profile-info-dark h3 definition - using main definition at line 1185 */
/* Removed duplicate .profile-role-dark definition - using main definition at line 1310 */

.profile-details-dark {
    margin-bottom: 2px;
    flex-shrink: 0;
    display: none; /* Hidden by default for non-logged users */
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    padding: 0 4px;
    box-sizing: border-box;
}

/* Show location only when user is logged in */
body.user-logged-in .profile-details-dark {
    display: flex;
}

/* Reduce card height when location is hidden (non-logged users) */
.profile-card {
    transition: all 0.3s ease;
}

/* Adjust social buttons margin when location is hidden */
body:not(.user-logged-in) .social-buttons {
    margin-bottom: 0.5rem; /* Reduce margin when location is hidden */
}

.detail-item-dark {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
}

.detail-item-dark i {
    width: 20px;
    margin-right: 12px;
    color: #071B3F;
    font-size: 0.9rem;
}

/* Centrado específico para el location - sección duplicada */
.detail-item-dark.location {
    justify-content: center;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    margin-top: 0.5rem;
}

/* Ocultar el icono del location - sección duplicada */
.detail-item-dark.location i {
    display: none;
}

.detail-item-dark.location span {
    width: 100%;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
}

.profile-specialties-dark {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.specialty-tags-dark {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tag-dark {
    background: #071B3F;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

.profile-actions-dark {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding: 20px 0 0 0;
    justify-content: center;
    align-items: center;
}

.btn-contact-dark {
    flex: 1 1 50%;
    background: #ffffff;
    color: #071B3F;
    border: 2px solid #071B3F;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
    height: 48px;
    min-width: 120px;
    box-sizing: border-box;
}

.btn-contact-dark:hover {
    background: #071B3F;
    border-color: #071B3F;
    color: white;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.btn-view-profile-dark {
    flex: 1 1 50%;
    background: #071B3F;
    color: white;
    border: 2px solid transparent;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
    height: 48px;
    min-width: 120px;
    box-sizing: border-box;
}

.btn-view-profile-dark:hover {
    background: #071B3F;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.btn-contact-dark i {
    color: #071B3F;
}

/* Dark No Results */
.no-results-dark {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.no-results-dark i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #666;
}

.no-results-dark h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #1e293b;
}

.no-results-dark p {
    color: #888;
    font-size: 1.1rem;
}

/* Responsive Design for Dark Theme */
@media (max-width: 768px) {
    .directory-title {
        font-size: 2.5rem;
    }
    
    .search-container-dark {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-bar-dark {
        min-width: auto;
    }
    
    .filter-container-dark {
        justify-content: center;
    }
    
    .profiles-grid-dark {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .profile-card-dark {
        padding: 20px;
    }
    
    .profile-photo-dark {
        width: 280px;
        height: 280px;
    }
    
    .profile-info-dark h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .directory-title {
        font-size: 2rem;
    }
    
    .directory-subtitle {
        font-size: 1rem;
    }
    
    .profile-card-dark {
        padding: 16px;
    }
    
    .profile-actions-dark {
        flex-direction: column;
    }
    
    .btn-contact-dark,
    .btn-view-profile-dark {
        width: 100%;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .profiles-grid-dark {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
        padding: 40px 40px;
    }
}

@media (min-width: 1600px) {
    .profiles-grid-dark {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
        padding: 40px 60px;
    }
}

/* Rating System Styles */
.rating-container {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #071B3F !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-average {
    font-size: 2.5rem;
    font-weight: 700;
    color: #071B3F;
    line-height: 1;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.rating-distribution {
    flex: 1;
    min-width: 200px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.rating-bar-label {
    font-size: 0.9rem;
    color: #666;
    min-width: 20px;
}

.rating-bar-fill {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-progress {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Star Rating Component */
.star-rating {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

/* Readonly stars (for display) */
.star-rating.readonly .star {
    font-size: 2rem;
    color: #d1d5db;
    transition: color 0.2s ease;
}

.star-rating.readonly .star.filled {
    color: #f59e0b;
}

/* Interactive stars (for rating) */
.star-rating input[type="radio"] {
    display: none;
}

.star-rating .star-label {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.star-rating .star-label:hover {
    color: #fbbf24;
}

.star-rating .star-label.active {
    color: #f59e0b;
}

.star-rating .star-label.hover-preview {
    color: #fbbf24;
}

/* Review Form */
.review-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #071B3F !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.review-form h3 {
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #071B3F;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-input label {
    margin-bottom: 0;
    font-weight: 500;
}

/* Reviews List */
.reviews-list {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #071B3F !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-list h3 {
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 1.3rem;
}

.review-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-left: 4px solid #071B3F;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.review-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-rating .star-rating {
    margin: 0;
}

.review-rating .rating-value {
    font-weight: 600;
    color: #071B3F;
    font-size: 1.1rem;
}

.review-comment {
    color: #374151;
    line-height: 1.6;
    margin-top: 10px;
}

/* Profile Card Rating */
.profile-card .rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.profile-card .rating-stars {
    display: flex;
    gap: 2px;
}

.profile-card .rating-stars .star {
    font-size: 0.9rem;
    color: #fbbf24;
}

.profile-card .rating-average {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.profile-card .rating-count {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Modal for Reviews */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
}

.review-modal-close:hover {
    color: #374151;
}

/* Rating System Responsive */
@media (max-width: 768px) {
    .rating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .rating-distribution {
        min-width: 100%;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating-input {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-modal-content {
        margin: 10px;
        padding: 20px;
    }
}

/* Message System */
.message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 3000;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.message.success {
    background: #10b981;
}

.message.error {
    background: #ef4444;
}

.message.info {
    background: #071B3F;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Authentication Navigation */
.nav-actions a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-actions a:hover {
    transform: translateY(-1px);
}

/* Forgot Password Modal */
.forgot-password-link {
    color: #071B3F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.forgot-password-form {
    margin-bottom: 0;
    padding-bottom: 0;
}

.forgot-password-footer {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: #64748b;
    font-size: 14px;
}

.login-footer a {
    color: #071B3F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.forgot-password-footer a {
    color: #071B3F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-footer a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Compact Forgot Password Modal */
#forgotPasswordModal .modal-content {
    max-width: 400px;
    max-height: auto !important;
    height: auto !important;
    margin: 5% auto;
}

#forgotPasswordModal .modal-header {
    padding: 1.5rem 2rem 1rem;
}

#forgotPasswordModal .forgot-password-form {
    padding: 1rem 2rem 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    height: auto !important;
}

#forgotPasswordModal .form-group {
    margin-bottom: 1rem;
}

#forgotPasswordModal .form-group small {
    color: #64748b;
    font-size: 13px;
    margin-top: 0.5rem;
    display: block;
}

#forgotPasswordModal .forgot-password-footer {
    margin-top: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Force compact modal for forgot password - ULTRA SPECIFIC */
/* Removed problematic display: flex that was causing auto-open */

/* Simple compact modal styles without forcing display */
#forgotPasswordModal .modal-content {
    max-width: 400px;
    margin: 5% auto;
}

#forgotPasswordModal .modal-header {
    padding: 1.5rem 2rem 1rem;
}

#forgotPasswordModal .forgot-password-form {
    padding: 1rem 2rem 0;
    margin-bottom: 0;
}

#forgotPasswordModal .forgot-password-footer {
    padding: 0 2rem 1.5rem;
    margin: 0;
    text-align: center;
}

/* Enhanced Profile Display Styles - LinkedIn Style */
.profile-detail-content {
    padding: 0 2rem 2rem;
    background: #f8fafc;
}

.profile-detail-section {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #071B3F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.profile-detail-section:hover {
    box-shadow: 0 4px 15px rgba(0, 80, 102, 0.15);
    transform: translateY(-2px);
}

.profile-detail-section h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f1f5f9;
    text-align: center;
}

.profile-detail-section h3 i {
    color: #071B3F;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.info-item:hover {
    background: #f1f5f9;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-item strong {
    color: #071B3F;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
    text-align: center;
}

.info-item span {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.specialty-tag {
    background: linear-gradient(135deg, #071B3F, #071B3F);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0, 119, 181, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
    text-align: center;
}

.specialty-tag:hover {
    background: linear-gradient(135deg, #071B3F, #071B3F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
    border-color: #9ca3af;
}

.bio-text {
    color: #1e293b;
    line-height: 1.8;
    font-size: 1.05rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-weight: 400;
    text-align: justify;
}

.social-media-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.social-item:hover {
    border-color: #9ca3af;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: white;
}

.social-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 6px;
    padding: 4px;
}

.social-item i.fa-instagram {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.social-item i.fa-twitter {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.social-item i.fa-linkedin {
    color: #071B3F;
    background: rgba(0, 119, 181, 0.1);
}

.social-item i.fa-youtube {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-item i.fa-tiktok {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

.social-item i.fa-facebook {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.social-item a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.social-item a:hover {
    color: #071B3F;
    text-decoration: none;
}

.contact-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-left: 4px solid #071B3F;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 0;
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    color: #071B3F;
    transform: translateY(-1px);
}

.contact-item i {
    width: 20px;
    color: #071B3F;
    font-size: 1.2rem;
}

/* Profile Modal Enhancements - LinkedIn Style */
.profile-modal .modal-content {
    max-width: 900px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.profile-detail-header {
    background: linear-gradient(135deg, #071B3F 0%, #071B3F 100%);
    color: white;
    padding: 0;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

/* Cover Photo Section */
.profile-cover {
    height: 120px;
    background: linear-gradient(135deg, #071B3F 0%, #071B3F 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.profile-cover::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="linkedinPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23linkedinPattern)"/></svg>');
    pointer-events: none;
}

/* Profile Info Section */
.profile-info-section {
    background: white;
    padding: 2rem 2rem 1rem;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.profile-detail-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-detail-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.3s ease;
}

.profile-detail-photo img:hover {
    transform: scale(1.05);
}

.profile-detail-info {
    text-align: center;
    margin-bottom: 0;
}

.profile-detail-info h2 {
    color: #1e293b;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-detail-role {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #071B3F, #071B3F);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

/* No Permission Message */
.no-permission-message {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 1rem 0;
}

.no-permission-message h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.no-permission-message p {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Already Rated Message */
.already-rated-message {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1rem 0;
}

.already-rated-message p {
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsiveness for Enhanced Profile - LinkedIn Style */
@media (max-width: 768px) {
    .profile-modal .modal-content {
        max-width: 95%;
        margin: 2% auto;
    }
    
    .profile-cover {
        height: 100px;
    }
    
    .profile-info-section {
        padding: 1.5rem 1rem 1rem;
        margin-top: -75px;
    }
    
    .profile-detail-photo img {
        width: 150px;
        height: 150px;
    }
    
    .profile-detail-info h2 {
        font-size: 1.8rem;
    }
    
    .profile-detail-content {
        padding: 0 1rem 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-media-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        justify-items: center;
    }
    
    .social-item {
        padding: 0.8rem;
        justify-content: center;
    }
    
    .profile-detail-section {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .profile-detail-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .profile-modal .modal-content {
        max-width: 98%;
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .profile-cover {
        height: 80px;
    }
    
    .profile-info-section {
        padding: 1rem 0.8rem 0.8rem;
        margin-top: -60px;
    }
    
    .profile-detail-photo img {
        width: 120px;
        height: 120px;
    }
    
    .profile-detail-info h2 {
        font-size: 1.6rem;
    }
    
    .profile-detail-role {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .profile-detail-content {
        padding: 0 0.8rem 0.8rem;
    }
    
    .profile-detail-section {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing-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="%232563eb" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    background: #071B3F;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 350px;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}


.pricing-card-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
}

.basic-card .pricing-card-header {
    background: #071B3F;
}

.premium-card .pricing-card-header {
    background: #071B3F;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.pricing-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.pricing-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.basic-btn {
    background: #071B3F;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.basic-btn:hover {
    background: #071B3F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.premium-btn {
    background: #071B3F;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.premium-btn:hover {
    background: #071B3F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        height: 600px;
    }
    
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card-header,
    .pricing-card-body {
        padding: 20px;
    }
    
    .amount {
        font-size: 3rem;
    }
}

/* About Section */
.about-section {
    background: #071B3F;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-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="aboutGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutGrain)"/></svg>');
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-header {
    margin-bottom: 50px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    font-weight: 500;
    margin: 0;
}

.about-text {
    margin-bottom: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-text p {
    font-size: 1.1rem;
    color: #f1f5f9;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for About */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-header {
        margin-bottom: 30px;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Profile Modal - Hide sensitive information for non-logged users */
.user-logged-in-content {
    display: block;
}

body:not(.user-logged-in) .user-logged-in-content {
    display: none;
}

.login-required-message {
    display: none;
    text-align: center;
    padding: 2rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #cbd5e1;
}

body:not(.user-logged-in) .login-required-message {
    display: block;
}

.login-required-message i {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    display: block;
}

.login-required-message p {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

/* ===== ULTRA SPECIFIC RESPONSIVE - MUST BE LAST ===== */
/* Responsive adjustments for small phones - Profile Cards - MAXIMUM PRIORITY */
@media (max-width: 480px) {
    /* Profile Picture - Reducir un poco más */
    .profile-photo-dark {
        width: 200px !important; /* Reducido de 216px a 200px */
        height: 200px !important;
    }
    
    /* Nombre - Aumentar significativamente */
    .profile-info-dark h3,
    .profile-card .profile-info-dark h3 {
        font-size: 2.2rem !important; /* Aumentado significativamente */
        font-weight: 700 !important;
    }
    
    /* Etiqueta de Rol - Aumentar significativamente */
    .profile-role-dark,
    .profile-card .profile-role-dark {
        padding: 12px 28px !important; /* Aumentado significativamente */
        font-size: 1.3rem !important; /* Aumentado significativamente */
        font-weight: 600 !important;
    }
    
    /* Estrellas de Rating - Aumentar significativamente */
    .profile-card .rating-stars .star,
    .rating-stars .star {
        font-size: 1.6rem !important; /* Aumentado significativamente */
    }
}
