* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 50%, #FF6B9D 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 30px 20px;
    position: relative;
}

.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.app-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 20px;
}

.slogan {
    font-size: 18px;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    margin: 0;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.icon-container {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 120px;
}

.letter-icon {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.paper-plane-icon {
    font-size: 48px;
    color: white;
    position: absolute;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    animation: flyPaperPlane 3s ease-in-out infinite;
    z-index: 10;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes flyPaperPlane {
    0% {
        transform: translateX(0) translateY(-50%) rotate(25deg);
    }
    20% {
        transform: translateX(50px) translateY(-60%) rotate(30deg);
    }
    40% {
        transform: translateX(100px) translateY(-50%) rotate(25deg);
    }
    60% {
        transform: translateX(150px) translateY(-40%) rotate(20deg);
    }
    80% {
        transform: translateX(200px) translateY(-45%) rotate(22deg);
    }
    100% {
        transform: translateX(250px) translateY(-50%) rotate(25deg);
    }
}


.empezar-btn {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 18px 60px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 200px;
    width: calc(100% - 40px);
    max-width: 300px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: 0;
}

.empezar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.empezar-btn:hover::before {
    left: 100%;
}

.empezar-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.desktop-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 50%, #FF6B9D 100%);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    text-align: center;
}

.desktop-message p {
    font-size: 18px;
    color: white;
    max-width: 400px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Wizard Modal Styles */
.wizard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.wizard-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

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

.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wizard-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.close-wizard {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.close-wizard:hover {
    color: #333;
}

.wizard-form {
    padding: 20px;
}

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

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.form-group-edad {
    flex: 0 0 50%;
    margin-bottom: 0;
}

.form-group-genero {
    flex: 0 0 50%;
    margin-bottom: 0;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: #FF416C;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .section-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus {
    outline: none;
    border-color: #FF416C;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group-horizontal {
    flex-direction: row;
    gap: 12px;
}

.checkbox-group-horizontal .checkbox-label {
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.checkbox-label:hover {
    border-color: #FF416C;
    background-color: #fff5f7;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #FF416C;
}

.checkbox-label span {
    font-size: 16px;
    color: #333;
}

.photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.photo-preview {
    width: 150px;
    height: 150px;
    border: 3px dashed #e0e0e0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    transition: all 0.3s;
    overflow: hidden;
}

.photo-preview.has-photo {
    border-style: solid;
    border-color: #FF416C;
    padding: 0;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview i {
    font-size: 40px;
    color: #999;
    margin-bottom: 10px;
}

.photo-preview p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.photo-btn {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.photo-btn:active {
    transform: scale(0.95);
}

.wizard-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.wizard-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wizard-submit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 65, 108, 0.2);
}

.wizard-back-btn {
    width: 48%;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wizard-back-btn:active {
    transform: scale(0.98);
    background: #e0e0e0;
}

.wizard-actions {
    display: flex;
    gap: 10px;
}

.wizard-actions .wizard-submit-btn {
    width: 48%;
}

/* Botones de opción */
.button-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #FF416C #f0f0f0;
    padding-bottom: 5px;
}

.button-group-wrap {
    flex-wrap: wrap;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
}

.button-group::-webkit-scrollbar {
    height: 6px;
}

.button-group::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.button-group::-webkit-scrollbar-thumb {
    background: #FF416C;
    border-radius: 10px;
}

.button-group::-webkit-scrollbar-thumb:hover {
    background: #FF4B2B;
}

.option-btn {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
}

.option-btn:hover {
    border-color: #FF416C;
    background-color: #fff5f7;
}

.option-btn.active {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    border-color: #FF416C;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.option-btn:active {
    transform: scale(0.95);
}

/* Responsive para diferentes tamaños de pantalla móvil */
@media screen and (max-width: 480px) {
    .app-title {
        font-size: 40px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .slogan {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .icon-container {
        max-width: 220px;
        margin-top: 15px;
        height: 100px;
    }
    
    .paper-plane-icon {
        font-size: 40px;
    }
    
    .empezar-btn {
        font-size: 20px;
        padding: 16px 50px;
        min-width: 180px;
    }
}

@media screen and (max-width: 360px) {
    .app-title {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .slogan {
        font-size: 15px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .icon-container {
        max-width: 200px;
        margin-top: 10px;
        height: 90px;
    }
    
    .paper-plane-icon {
        font-size: 36px;
    }
    
    .empezar-btn {
        font-size: 18px;
        padding: 14px 40px;
        min-width: 160px;
    }
    
    .wizard-content {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .wizard-header h2 {
        font-size: 20px;
    }
    
    .photo-preview {
        width: 120px;
        height: 120px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group-edad,
    .form-group-genero {
        flex: 1 1 100%;
        margin-bottom: 25px;
    }
    
    .form-group-genero {
        margin-bottom: 0;
    }
    
    .checkbox-group-horizontal {
        flex-direction: column;
    }
}

/* Estilos para el resumen */
.summary-container {
    max-height: 400px;
    overflow-y: auto;
}

.summary-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-section:last-child {
    border-bottom: none;
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.summary-section p strong {
    color: #333;
    font-weight: 600;
}

.summary-photo {
    margin-top: 15px;
    text-align: center;
}

.summary-photo img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #FF416C;
}

/* Estilos para la pantalla principal */
.main-screen {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 50%, #FF6B9D 100%);
    overflow: hidden;
}

.main-header {
    height: 5%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    margin: 0;
}

.main-content {
    height: 10%;
    min-height: 70px;
    padding: 10px 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.profile-floating-container {
    background: white;
    border-radius: 15px;
    padding: 12px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-filters {
    height: 5%;
    min-height: 60px;
    padding: 10px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.main-filters::-webkit-scrollbar {
    height: 6px;
}

.main-filters::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.main-filters::-webkit-scrollbar-thumb {
    background: #FF416C;
    border-radius: 10px;
}

.main-filters::-webkit-scrollbar-thumb:hover {
    background: #FF4B2B;
}

.filter-toggle-btn {
    background: white;
    color: #666;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.filter-toggle-btn i {
    color: #666;
}

.filter-toggle-btn:active {
    transform: scale(0.95);
}

.active-filters {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #FF416C #f0f0f0;
    padding-right: 10px;
}

.active-filters::-webkit-scrollbar {
    height: 6px;
}

.active-filters::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.active-filters::-webkit-scrollbar-thumb {
    background: #FF416C;
    border-radius: 10px;
}

.active-filters::-webkit-scrollbar-thumb:hover {
    background: #FF4B2B;
}

.active-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid #999;
    border-radius: 8px;
    background: white;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.active-filter-btn:hover {
    border-color: #666;
    color: #666;
}

.active-filter-btn .filter-remove {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-filter-btn .filter-remove:hover {
    color: #333;
}

.main-body {
    height: 80%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 50%, #FF6B9D 100%);
    flex-shrink: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    padding-bottom: 90px;
}

/* Menú inferior */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-menu-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px;
    border-radius: 12px;
    position: relative;
}

.bottom-menu-btn i {
    transition: all 0.3s;
}

.bottom-menu-btn.active {
    color: #FF416C;
}

.bottom-menu-btn.active i {
    transform: scale(1.1);
}

.bottom-menu-btn:active {
    transform: scale(0.95);
}

/* Carrusel de cards */
.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.carousel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 500px;
}

.carousel-card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-card-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: 20px;
    padding-top: 80px;
}

.carousel-card-actions {
    position: absolute;
    bottom: 120px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-action-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-action-btn.yapego {
    background: #4CAF50;
    color: white;
}

.carousel-action-btn.yapego:active {
    transform: scale(0.95);
    background: #45a049;
}

.carousel-action-btn.paso {
    background: #f44336;
    color: white;
}

.carousel-action-btn.paso:active {
    transform: scale(0.95);
    background: #da190b;
}

.carousel-action-btn.quiero-conocerte {
    background: #FFA726;
    color: white;
    width: 100%;
}

.carousel-action-btn.quiero-conocerte:active {
    transform: scale(0.95);
    background: #FF9800;
}

.carousel-action-btn.gooo {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    width: 100%;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.carousel-action-btn.gooo:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(255, 65, 108, 0.2);
}

.carousel-card-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-card-selections {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
    padding-bottom: 5px;
}

.carousel-card-selections::-webkit-scrollbar {
    height: 4px;
}

.carousel-card-selections::-webkit-scrollbar-track {
    background: transparent;
}

.carousel-card-selections::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.carousel-card-selections::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-selection-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    white-space: nowrap;
    flex-shrink: 0;
}

.profile-section {
    width: 100%;
    height: 100%;
}

.profile-user-section {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.profile-edit-btn {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 65, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.profile-edit-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 5px rgba(255, 65, 108, 0.2);
}

.profile-photo-small {
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    min-width: 50px;
    max-width: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FF416C;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    flex-shrink: 0;
}

.profile-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-small i {
    font-size: 28px;
    color: #999;
}

.profile-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.profile-name-age {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.profile-age {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* Modal de Filtros */
.filters-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.filters-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.filters-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.filters-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.close-filters-modal {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.close-filters-modal:hover {
    color: #333;
}

.filters-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.filters-modal-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.clear-filters-btn {
    flex: 1;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clear-filters-btn:active {
    transform: scale(0.98);
    background: #e0e0e0;
}

.apply-filters-btn {
    flex: 1;
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-filters-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 65, 108, 0.2);
}

/* Estilos para las secciones de filtros en el modal */
.modal-filter-section {
    margin-bottom: 25px;
}

.modal-filter-section:last-child {
    margin-bottom: 0;
}

.modal-filter-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-filter-option {
    padding: 10px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-transform: capitalize;
}

.modal-filter-option:hover {
    border-color: #FF416C;
    background-color: #fff5f7;
}

.modal-filter-option.active {
    background: white;
    color: #333;
    border-color: #FF416C;
    box-shadow: 0 2px 8px rgba(255, 65, 108, 0.2);
}

/* Responsive para pantalla principal */
@media screen and (max-width: 480px) {
    .main-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .profile-photo-small {
        min-width: 45px;
        max-width: 50px;
    }
    
    .profile-photo-small i {
        font-size: 24px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-age {
        font-size: 12px;
    }
    
    .profile-edit-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .filter-select {
        font-size: 12px;
        padding: 6px 10px;
        padding-right: 28px;
        min-width: 100px;
    }
    
    .filter-label {
        font-size: 10px;
    }
}

