* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.logo p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.stats {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.search-bar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.search-bar button {
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.filters select {
    padding: 12px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters select:focus {
    outline: none;
    border-color: #ff6b9d;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c44569;
    margin-bottom: 10px;
}

.feature-card p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Profiles Section */
.profiles-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 107, 157, 0.2);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-image-area {
    height: 380px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 380px;
}

.profile-image-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.profile-top-info {
    position: relative;
    z-index: 2;
    color: white;
}

.profile-top-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.age-distance {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

.profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
}

.profile-card:hover .profile-image-area {
    filter: brightness(1.15) contrast(1.15) saturate(1.2);
    transform: scale(1.05);
}

.profile-footer-bar {
    padding: 20px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-details-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-details-footer .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.profile-details-footer .detail-label {
    color: #666;
    font-weight: 500;
}

.profile-details-footer .detail-value {
    color: #333;
    font-weight: 600;
}

.online-status-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.status-dot.online {
    background: #4ecdc4;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.profile-description-footer {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.profile-actions-footer {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    color: #666;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #c44569, #ff6b9d);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #e9ecef, #f8f9fa);
    border-color: rgba(255, 107, 157, 0.5);
    color: #ff6b9d;
}

.load-more {
    text-align: center;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    color: #c44569;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #c44569;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.load-more button {
    padding: 18px 40px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    min-width: 250px;
}

.load-more button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.3);
}

footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

footer p {
    color: #666;
    margin-bottom: 10px;
}

.disclaimer {
    color: #999;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Modern Loading Screen Styles */
.modern-loading-screen {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    color: white;
    overflow: hidden;
}

/* Modern Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-heart {
    position: absolute;
    font-size: 2rem;
    animation: modernFloat 6s ease-in-out infinite;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
}

.heart-1 { top: 10%; left: 10%; animation-delay: 0s; }
.heart-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.heart-3 { top: 60%; left: 5%; animation-delay: 1s; }
.heart-4 { top: 80%; right: 10%; animation-delay: 1.5s; }
.heart-5 { top: 30%; left: 50%; animation-delay: 2s; }
.heart-6 { top: 70%; right: 30%; animation-delay: 2.5s; }
.heart-7 { top: 15%; left: 80%; animation-delay: 3s; }
.heart-8 { top: 85%; left: 70%; animation-delay: 3.5s; }

@keyframes modernFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(-10px) rotate(-5deg) scale(0.9); }
    75% { transform: translateY(-15px) rotate(3deg) scale(1.05); }
}

.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modern-loading-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Modern Loading Header */
.loading-header {
    margin-bottom: 40px;
}

.loading-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loading-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modernHeartbeat 2s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.heart-emoji {
    font-size: 28px;
    color: white;
}

.loading-brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 5px 0;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
}

.loading-brand p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

@keyframes modernHeartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Modern Dating Cards Animation */
.modern-loading-animation {
    margin-bottom: 40px;
    position: relative;
}

.dating-cards-stack {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 0 auto 30px;
}

.dating-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 107, 157, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.card-1 {
    animation: modernSwipeCard1 3s ease-in-out infinite;
    background: linear-gradient(145deg, #fff5f7, #ffeef2);
    border-color: #ff6b9d;
}

.card-2 {
    animation: modernSwipeCard2 3s ease-in-out infinite;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    transform: scale(0.95) translateY(5px);
    border-color: #ff9a9e;
}

.card-3 {
    animation: modernSwipeCard3 3s ease-in-out infinite;
    background: linear-gradient(145deg, #f0f8ff, #e6f3ff);
    transform: scale(0.9) translateY(10px);
    border-color: #c44569;
}

.card-avatar {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.card-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.card-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@keyframes modernSwipeCard1 {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(50px) rotate(10deg); }
}

@keyframes modernSwipeCard2 {
    0%, 100% { transform: scale(0.95) translateY(5px) translateX(0) rotate(0deg); }
    50% { transform: scale(0.95) translateY(5px) translateX(30px) rotate(5deg); }
}

@keyframes modernSwipeCard3 {
    0%, 100% { transform: scale(0.9) translateY(10px) translateX(0) rotate(0deg); }
    50% { transform: scale(0.9) translateY(10px) translateX(15px) rotate(3deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.swipe-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.swipe-arrow {
    font-size: 1.5rem;
    animation: modernBounce 1s ease-in-out infinite;
    color: #ff6b9d;
}

@keyframes modernBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Modern Loading Content */
.modern-loading-content {
    width: 100%;
    max-width: 500px;
}

.loading-title-section {
    text-align: center;
    margin-bottom: 30px;
}

.loading-title-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.loading-title-section p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Modern Loading Stats */
.loading-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.stat-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f7, #ffeef2);
    border-radius: 50%;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b9d;
    margin: 0;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Modern Progress Section */
.modern-progress-section {
    width: 100%;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.progress-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6b9d;
}

.modern-progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 10px;
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Modern Loading Screen Responsive */
@media (max-width: 768px) {
    .modern-loading-container {
        max-width: 95%;
        padding: 20px;
        margin: 10px;
    }
    
    .loading-logo-section {
        gap: 15px;
    }
    
    .loading-logo {
        width: 50px;
        height: 50px;
    }
    
    .heart-emoji {
        font-size: 24px;
    }
    
    .loading-brand h1 {
        font-size: 2rem;
    }
    
    .dating-cards-stack {
        width: 200px;
        height: 280px;
    }
    
    .card-avatar {
        font-size: 3rem;
    }
    
    .card-info h4 {
        font-size: 1.1rem;
    }
    
    .loading-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .loading-title-section h2 {
        font-size: 1.5rem;
    }
}

/* Modern Preferences Modal Styles */
.modern-preferences-modal {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 157, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
}

/* Modern Header */
.modern-header {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #ff8fab);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header-icon {
    flex-shrink: 0;
}

.heart-pulse {
    font-size: 2.5rem;
    animation: heartbeat 2s ease-in-out infinite;
}

.header-content {
    flex: 1;
}

.header-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Progress Indicator */
.modal-progress {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
}

.step.active .step-label {
    color: #ff6b9d;
    font-weight: 600;
}

.progress-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Modern Body */
.modern-body {
    padding: 0;
    background: white;
    max-height: 50vh;
    overflow-y: auto;
}

.modern-form {
    padding: 30px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.step-header p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Age Verification Cards */
.age-verification-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.age-card {
    position: relative;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.age-card:hover {
    border-color: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.age-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.age-card input[type="radio"]:checked + .card-content {
    color: #ff6b9d;
}

.age-card input[type="radio"]:checked ~ .card-checkmark {
    opacity: 1;
    transform: scale(1);
}

.age-card-yes input[type="radio"]:checked {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.age-card-no input[type="radio"]:checked {
    border-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
}

.card-content {
    transition: all 0.3s ease;
    pointer-events: none;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}

.card-checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

/* Location Input */
.location-input-group {
    margin-top: 20px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.input-wrapper input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #6c757d;
}

.location-preview {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e9ecef;
}

.preview-icon {
    font-size: 1.5rem;
}

.preview-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.modern-group {
    margin-bottom: 0;
}

.modern-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 15px 40px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    appearance: none;
    cursor: pointer;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    font-size: 0.8rem;
}

/* Final Summary */
.final-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid #e9ecef;
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.summary-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.summary-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e9ecef;
}

.summary-item span {
    font-weight: 600;
    color: #ff6b9d;
}

/* Modern Footer */
.modern-footer {
    padding: 25px 30px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e9ecef;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #ff6b9d;
    color: #ff6b9d;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-preferences-modal {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .modern-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .age-verification-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .summary-items {
        grid-template-columns: 1fr;
    }
    
    .modern-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10001;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ff6b9d;
    text-decoration: none;
}

.modal-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.modal-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modal-profile-info h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-profile-details {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 30px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6b9d;
    padding-bottom: 5px;
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.interest-tag {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-section p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.status-badge.online {
    background: #4ecdc4;
}

.status-badge.offline {
    background: #ccc;
}

.modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.modal-btn-secondary {
    background: #e9ecef;
    color: #666;
}

.modal-btn-secondary:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-group small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

/* PLZ Input Special */
#userPLZ {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Age Verification Styles */
.age-verification-group {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    color: white;
}

.age-verification-group label {
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.age-verification-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.age-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.age-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.age-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #ffd700;
}

.age-option input[type="radio"]:checked + .age-option-text {
    font-weight: 700;
    color: #ffd700;
}

.age-option:has(input[type="radio"]:checked) {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.age-option-text {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.age-verification-group small {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-style: italic;
}

/* iOS Safari Özel Düzeltmeler */
@supports (-webkit-touch-callout: none) {
    .featured-profiles-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        position: relative !important;
        z-index: 999 !important;
        height: auto !important;
        min-height: 200px !important;
        overflow: visible !important;
    }
    
    .featured-profiles-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        position: relative !important;
        z-index: 1000 !important;
        height: auto !important;
        min-height: 100px !important;
        overflow: visible !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    .modern-premium-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        position: relative !important;
        z-index: 1001 !important;
    }
}

/* iOS Safari Özel Class Düzeltmeleri */
.ios-safari-fix {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    position: relative !important;
    z-index: 999 !important;
    height: auto !important;
    min-height: 200px !important;
    overflow: visible !important;
}

.ios-safari-fix .featured-profiles-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    position: relative !important;
    z-index: 1000 !important;
    height: auto !important;
    min-height: 100px !important;
    overflow: visible !important;
    gap: 20px !important;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE DESIGN ===== */

/* Base Mobile Styles */
@media (max-width: 768px) {
    /* Container and Layout */
    .container {
        padding: 15px;
        max-width: 100%;
        margin: 0;
    }
    
    /* Header Mobile Optimization */
    header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .logo p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .stats {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 30px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 30px 20px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .hero-content h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 15px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Search Bar Mobile */
    .search-bar {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
    }
    
    .search-bar input {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .search-bar button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .filters {
        flex-direction: column;
        gap: 8px;
    }
    
    .filters select {
        padding: 10px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Profiles Grid Mobile - FORCE BLOCK LAYOUT */
    .profiles-grid {
        display: block !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .profile-card {
        display: block !important;
        min-height: 520px;
        border-radius: 20px;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        clear: both !important;
        position: relative !important;
    }
    
    .profile-image-area {
        height: 350px;
        padding: 15px;
        border-radius: 20px 20px 0 0;
        position: relative;
        overflow: hidden;
    }
    
    .profile-image-area {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 350px;
    }
    
    .profile-top-info h3 {
        font-size: 1.3rem;
    }
    
    .age-distance {
        font-size: 0.9rem;
    }
    
    .profile-footer-bar {
        padding: 20px;
        gap: 15px;
    }
    
    .action-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-header h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Features Grid Mobile */
    .features-section {
        padding: 30px 20px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
    }
    
    .feature-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 30px 20px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .testimonial-author strong {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 35px 20px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        border-radius: 30px;
    }
    
    /* Load More Button Mobile */
    .load-more {
        margin: 20px auto;
    }
    
    .load-more button {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 200px;
        border-radius: 25px;
    }
    
    /* Footer Mobile */
    footer {
        padding: 20px 15px;
        border-radius: 15px;
        margin-bottom: 10px;
    }
    
    footer p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Premium Section Mobile */
    .featured-profiles-section {
        padding: 30px 20px;
        margin: 25px 0;
        border-radius: 25px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 250px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .featured-profiles-section .section-header h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .featured-profiles-section .section-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .featured-profiles-grid {
        display: block !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        margin-top: 25px !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 120px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 11 !important;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .premium-timer-container {
        padding: 12px;
        margin: 12px 0;
        border-radius: 15px;
    }
    
    .timer-label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .timer-display {
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .timer-item {
        min-width: 45px;
        padding: 6px 10px;
        border-radius: 10px;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
    
    .timer-label {
        font-size: 0.65rem;
    }
    
    .timer-separator {
        display: none;
    }
    
    .modern-premium-card {
        margin: 0;
        border-radius: 20px;
    }
    
    .premium-image-container {
        height: 160px;
        margin: 0 12px;
        border-radius: 15px;
    }
    
    .premium-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .premium-details {
        gap: 10px;
        margin-bottom: 6px;
        font-size: 0.8rem;
    }
    
    .premium-city {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .premium-contact-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 20px;
    }
    
    .premium-info {
        padding: 12px 15px 10px;
    }
    
    .premium-footer {
        padding: 8px 15px 15px;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .premium-last-seen {
        text-align: center;
        font-size: 0.75rem;
    }
    
    /* Profile Search Mobile */
    .profile-search-container {
        padding: 15px;
        margin: 15px 0;
        border-radius: 12px;
    }
    
    .search-box {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-box input {
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 25px;
    }
    
    .search-button {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
        height: 48px;
        border-radius: 25px;
    }
    
    .search-box button#clearSearchBtn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    /* Loading Screen Mobile */
    .modern-loading-container {
        max-width: 95%;
        padding: 15px;
        margin: 10px;
        border-radius: 20px;
    }
    
    .loading-logo-section {
        gap: 12px;
    }
    
    .loading-logo {
        width: 45px;
        height: 45px;
    }
    
    .heart-emoji {
        font-size: 20px;
    }
    
    .loading-brand h1 {
        font-size: 1.8rem;
    }
    
    .loading-brand p {
        font-size: 0.9rem;
    }
    
    .dating-cards-stack {
        width: 180px;
        height: 250px;
        margin: 0 auto 20px;
    }
    
    .card-avatar {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .card-info h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .card-info p {
        font-size: 0.8rem;
    }
    
    .loading-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .loading-title-section h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .loading-title-section p {
        font-size: 0.9rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-profile-image {
        width: 60px;
        height: 60px;
    }
    
    .modal-profile-info h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .modal-profile-details {
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-section {
        margin-bottom: 20px;
    }
    
    .modal-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .interest-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    .modal-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .status-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        border-radius: 0 0 15px 15px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
    
    /* Header Extra Small */
    header {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    
    .stats {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Hero Section Extra Small */
    .hero-section {
        padding: 25px 15px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Profiles Extra Small */
    .profiles-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        display: grid !important;
    }
    
    .profile-card {
        min-height: 450px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .profile-image-area {
        height: 300px;
        padding: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .profile-image-area {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 300px;
    }
    
    .profile-top-info h3 {
        font-size: 1.1rem;
    }
    
    .age-distance {
        font-size: 0.8rem;
    }
    
    .profile-footer-bar {
        padding: 15px;
        gap: 12px;
    }
    
    .action-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    /* Section Headers Extra Small */
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Features Extra Small */
    .features-section {
        padding: 25px 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Testimonials Extra Small */
    .testimonials-section {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    /* CTA Extra Small */
    .cta-section {
        padding: 25px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Premium Section Extra Small */
    .featured-profiles-section {
        padding: 25px 15px;
        margin: 20px 0;
        border-radius: 15px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 150px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 20 !important;
    }
    
    .featured-profiles-section .section-header h3 {
        font-size: 1.4rem;
    }
    
    .featured-profiles-section .section-header p {
        font-size: 0.85rem;
    }
    
    .featured-profiles-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 15px !important;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 80px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 21 !important;
    }
    
    .premium-timer-container {
        padding: 10px;
        margin: 10px 0;
    }
    
    .timer-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .timer-item {
        min-width: 40px;
        padding: 5px 8px;
    }
    
    .timer-number {
        font-size: 1.1rem;
    }
    
    .timer-label {
        font-size: 0.6rem;
    }
    
    .modern-premium-card {
        border-radius: 15px;
    }
    
    .premium-image-container {
        height: 140px;
        margin: 0 10px;
    }
    
    .premium-name {
        font-size: 0.9rem;
    }
    
    .premium-details {
        gap: 8px;
        font-size: 0.75rem;
    }
    
    .premium-city {
        font-size: 0.7rem;
    }
    
    .premium-contact-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .premium-info {
        padding: 10px 12px 8px;
    }
    
    .premium-footer {
        padding: 6px 12px 12px;
        gap: 6px;
    }
    
    .premium-last-seen {
        font-size: 0.7rem;
    }
    
    /* Profile Search Extra Small */
    .profile-search-container {
        padding: 12px;
        margin: 12px 0;
    }
    
    .search-box input {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .search-button {
        padding: 10px;
        font-size: 0.85rem;
        height: 44px;
    }
    
    /* Modal Extra Small */
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px 10px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-profile-image {
        width: 50px;
        height: 50px;
    }
    
    .modal-profile-info h2 {
        font-size: 1.2rem;
    }
    
    .modal-profile-details {
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .modal-body {
        padding: 15px 10px;
    }
    
    .modal-section {
        margin-bottom: 15px;
    }
    
    .modal-section h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .interest-tag {
        padding: 4px 8px;
        font-size: 0.75rem;
        margin: 1px;
    }
    
    .modal-section p {
        font-size: 0.85rem;
    }
    
    .status-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .modal-footer {
        padding: 12px 10px;
        gap: 8px;
        border-radius: 0 0 12px 12px;
    }
    
    .modal-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    /* Load More Button Extra Small */
    .load-more button {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    /* Footer Extra Small */
    footer {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    footer p {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.75rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .featured-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .timer-display {
        gap: 10px;
    }
    
    .timer-item {
        min-width: 70px;
        padding: 12px 18px;
    }
    
    .timer-number {
        font-size: 1.8rem;
    }
}

/* Featured Profiles Section */
.featured-profiles-section {
    margin: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    border-radius: 25px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-profiles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    /* animation: shimmer 3s infinite; */ /* Shimmer animasyonu devre dışı bırakıldı */
    pointer-events: none;
}

.featured-profiles-section .section-header h3 {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.featured-profiles-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    margin-bottom: 30px;
}

/* Premium Timer Styles */
.premium-timer-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.timer-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.premium-timer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 80px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.timer-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    line-height: 1;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.featured-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
}

/* Modern Premium Card Styles */
.modern-premium-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700, #ff6b9d);
    background-size: 400% 400%;
    border-radius: 25px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: -1;
}

.modern-premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3);
}

.premium-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    position: relative;
    z-index: 2;
}

.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.premium-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-status.online {
    color: #4ecdc4;
}

.premium-status.offline {
    color: #ccc;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

.premium-image-container {
    position: relative;
    height: 200px;
    margin: 0 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.premium-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    border-radius: 17px;
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    object-fit: cover;
}

.modern-premium-card:hover .premium-image {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.15) saturate(1.3);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    border-radius: 17px;
}

.premium-verification {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.premium-info {
    padding: 20px 25px 15px;
    text-align: center;
}

.premium-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.premium-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.premium-city {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.premium-interests {
    padding: 0 25px 15px;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: center;
    overflow: hidden;
    height: 32px;
    align-items: center;
}

.modern-interest-tag {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-footer {
    padding: 15px 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-last-seen {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.premium-contact-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.premium-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-icon {
    font-size: 1rem;
}

.premium-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 157, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
    animation: premiumGlow 3s ease-in-out infinite;
}

.modern-premium-card:hover .premium-glow {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes premiumGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.featured-profile-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff6b9d;
}

.featured-profile-card::before {
    content: "⭐ PREMIUM";
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.featured-profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.4);
    border-color: #ffd700;
}

/* Premium profil resim alanı */
.featured-profile-card .profile-image-area {
    height: 250px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-profile-card .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
}

/* Premium profil bilgileri */
.featured-profile-card .profile-top-info {
    padding: 20px 20px 15px;
    text-align: center;
    background: white;
}

.featured-profile-card .profile-top-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.featured-profile-card .age-distance {
    color: #ff6b9d;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.featured-profile-card .profile-interests {
    padding: 0 20px 15px;
    background: white;
}

.featured-profile-card .interest-tag {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 2px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

/* Premium footer bar */
.featured-profile-card .profile-footer-bar {
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-profile-card .status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-profile-card .status-badge.online {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.featured-profile-card .status-badge.offline {
    background: rgba(158, 158, 158, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(158, 158, 158, 0.3);
}

.featured-profile-card .contact-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b9d;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-profile-card .contact-btn:hover {
    background: white;
    color: #c44569;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
}

.notification {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #ff6b9d;
    animation: slideInRight 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #ff6b9d);
    /* animation: shimmer 2s infinite; */ /* Shimmer animasyonu devre dışı bırakıldı */
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.notification-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.notification-title {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.notification-message {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #333;
}

/* Profile Search Styles */
.profile-search-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: calc(100% - 120px);
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px 0 0 25px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.search-box input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.search-button {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: 2px solid #ff6b9d;
    border-radius: 0 25px 25px 0;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: top;
    height: 54px;
    line-height: 1;
}

.search-button:hover {
    background: linear-gradient(45deg, #e55a87, #b03d5a);
    border-color: #e55a87;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.search-box button#clearSearchBtn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b9d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-box button#clearSearchBtn:hover {
    background: #e55a87;
    transform: translateY(-50%) scale(1.1);
}


.no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    margin: 20px 0;
}

.no-results h4 {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    margin-bottom: 25px;
}


/* Mobile Responsive for Search */
@media (max-width: 768px) {
    .profile-search-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .search-box input {
        width: calc(100% - 100px);
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 14px;
        height: 48px;
    }
    
    .search-box button#clearSearchBtn {
        right: 10px;
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .profile-search-container {
        padding: 10px;
        margin: 10px 0;
    }
    
    .search-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box input {
        width: 100%;
        border-radius: 25px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .search-button {
        width: 100%;
        border-radius: 25px;
        padding: 12px;
        height: 48px;
    }
    
    .search-box button#clearSearchBtn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Professional Modal Styles - Complete Redesign */
.professional-modal {
    background: #ffffff;
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    margin: 2% auto;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    animation: professionalModalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes professionalModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Professional Header */
.professional-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.professional-header::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-text h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 4px 0 0 0;
    font-weight: 400;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Professional Progress */
.professional-progress {
    background: #f8fafc;
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step.active .step-indicator {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.step-number {
    font-weight: 600;
    font-size: 0.9rem;
}

.step-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    max-width: 80px;
}

.step.active .step-label {
    color: #334155;
    font-weight: 600;
}

.progress-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Professional Body */
.professional-body {
    padding: 0;
    background: white;
    max-height: 60vh;
    overflow-y: auto;
}

.professional-form {
    padding: 32px;
}

.form-step {
    display: none;
    animation: stepFadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-content {
    max-width: 100%;
}

.step-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.step-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

/* Verification Options */
.verification-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.verification-option {
    position: relative;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.verification-option:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.verification-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.verification-option input[type="radio"]:checked + .option-content {
    color: #1e293b;
}

.verification-option input[type="radio"]:checked ~ .option-checkmark {
    opacity: 1;
    transform: scale(1);
}

.verification-option.option-yes input[type="radio"]:checked {
    border-color: #10b981;
    background: #f0fdf4;
}

.verification-option.option-yes input[type="radio"]:checked {
    border-color: #10b981;
    background: #f0fdf4;
}

.verification-option.option-no input[type="radio"]:checked {
    border-color: #ef4444;
    background: #fef2f2;
}

.verification-option.option-yes input[type="radio"]:checked {
    border-color: #10b981;
    background: #f0fdf4;
}

.verification-option.selected {
    border-color: #10b981;
    background: #f0fdf4;
}

.verification-option.option-no.selected {
    border-color: #ef4444;
    background: #fef2f2;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #64748b;
    transition: color 0.3s ease;
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
}

.verification-option.option-yes input[type="radio"]:checked ~ .option-content .option-icon {
    background: #10b981;
    color: white;
}

.verification-option.option-no input[type="radio"]:checked ~ .option-content .option-icon {
    background: #ef4444;
    color: white;
}

.option-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.option-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.option-checkmark {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.option-checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Location Section */
.location-section {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.input-group small {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 6px;
}

.location-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.preview-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.preview-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* Summary Section */
.summary-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
}

.summary-header {
    text-align: center;
    margin-bottom: 20px;
}

.summary-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.summary-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.summary-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

/* Professional Footer */
.professional-footer {
    padding: 24px 32px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Responsive Design for Professional Modal */
@media (max-width: 768px) {
    .professional-modal {
        width: 95%;
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .professional-header {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .header-brand {
        flex-direction: column;
        gap: 12px;
    }
    
    .brand-text h2 {
        font-size: 1.5rem;
    }
    
    .professional-progress {
        padding: 20px 24px;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .step-label {
        font-size: 0.75rem;
        max-width: 60px;
    }
    
    .professional-form {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .professional-footer {
        padding: 20px 24px;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    .verification-options {
        gap: 12px;
    }
    
    .verification-option {
        padding: 20px;
    }
    
    .option-content {
        gap: 12px;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
    }
}

/* ===== MOBILE-SPECIFIC DATING MODAL IMPROVEMENTS ===== */
@media (max-width: 768px) {
    /* Dating Modal Mobile Optimizations */
    .dating-modal-overlay {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10px;
    }
    
    .dating-modal-container {
        max-height: 98vh;
        margin: 0;
        width: calc(100% - 10px);
        border-radius: 20px;
    }
    
    .dating-modal-header {
        padding: 20px 15px;
        border-radius: 20px 20px 0 0;
    }
    
    .dating-logo-section {
        gap: 12px;
    }
    
    .dating-logo {
        width: 40px;
        height: 40px;
    }
    
    .heart-emoji {
        font-size: 20px;
    }
    
    .dating-brand h1 {
        font-size: 1.4rem;
    }
    
    .dating-brand p {
        font-size: 0.8rem;
    }
    
    .dating-close-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .dating-progress-section {
        padding: 20px 15px;
    }
    
    .dating-steps {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .step-text {
        font-size: 0.7rem;
        max-width: 50px;
    }
    
    .dating-modal-content {
        padding: 25px 15px;
        max-height: 65vh;
    }
    
    .step-title-section {
        margin-bottom: 25px;
    }
    
    .step-title-section h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .step-title-section p {
        font-size: 0.9rem;
    }
    
    .dating-options {
        gap: 12px;
    }
    
    .option-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .option-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .option-content h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .option-content p {
        font-size: 0.85rem;
    }
    
    .dating-input-section {
        gap: 20px;
    }
    
    .dating-input-group {
        gap: 6px;
    }
    
    .dating-input-group label {
        font-size: 0.9rem;
    }
    
    .dating-input-wrapper input {
        padding: 12px 40px 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }
    
    .input-icon {
        right: 12px;
        font-size: 16px;
    }
    
    .dating-input-group small {
        font-size: 0.8rem;
    }
    
    .preview-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .preview-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .preview-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .preview-content p {
        font-size: 0.85rem;
    }
    
    .dating-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dating-form-group {
        gap: 6px;
    }
    
    .dating-form-group label {
        font-size: 0.9rem;
    }
    
    .dating-select-wrapper select {
        padding: 12px 35px 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }
    
    .select-arrow {
        right: 12px;
        font-size: 10px;
    }
    
    .dating-summary {
        margin-top: 25px;
        padding: 20px;
        border-radius: 12px;
    }
    
    .summary-header {
        margin-bottom: 15px;
    }
    
    .summary-header h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .summary-header p {
        font-size: 0.85rem;
    }
    
    .summary-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .summary-item {
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .summary-label {
        font-size: 0.85rem;
    }
    
    .summary-value {
        font-size: 0.85rem;
    }
    
    .dating-modal-footer {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .dating-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
        min-width: 100px;
    }
    
    .dating-btn-finish {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

/* MOBILE PROFILE LAYOUT - FORCE SINGLE COLUMN */
@media (max-width: 768px) {
    /* Force all profile grids to single column */
    .profiles-grid,
    .featured-profiles-grid {
        display: block !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        padding: 0 15px !important;
    }
    
    /* SPECIFIC OVERRIDE FOR PREMIUM CARDS */
    .featured-profiles-grid .modern-premium-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        float: none !important;
        clear: both !important;
        position: relative !important;
        flex: none !important;
        grid-column: unset !important;
        grid-row: unset !important;
        box-sizing: border-box !important;
    }
    
    /* OVERRIDE ALL POSSIBLE GRID PROPERTIES FOR PREMIUM CARDS */
    .modern-premium-card {
        display: block !important;
        grid-area: unset !important;
        grid-column: unset !important;
        grid-row: unset !important;
        grid-column-start: unset !important;
        grid-column-end: unset !important;
        grid-row-start: unset !important;
        grid-row-end: unset !important;
        grid-template: unset !important;
        grid-template-areas: unset !important;
        grid-template-columns: unset !important;
        grid-template-rows: unset !important;
        grid-auto-columns: unset !important;
        grid-auto-rows: unset !important;
        grid-auto-flow: unset !important;
        grid-gap: unset !important;
        grid-column-gap: unset !important;
        grid-row-gap: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        place-self: unset !important;
    }
    
    /* Force profile cards to be full width and stacked */
    .profile-card,
    .modern-premium-card,
    .featured-profile-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        float: none !important;
        clear: both !important;
        position: relative !important;
        flex: none !important;
        grid-column: unset !important;
        grid-row: unset !important;
    }
    
    /* Ensure no horizontal scrolling */
    .profiles-section,
    .featured-profiles-section {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Extra Small Mobile - Profile Grid Optimizations */
@media (max-width: 480px) {
    /* Ensure profiles are stacked vertically on very small screens */
    .profiles-grid,
    .featured-profiles-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding: 0 10px !important;
    }
    
    .profile-card,
    .modern-premium-card,
    .featured-profile-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 15px 0 !important;
        min-height: 480px;
        border-radius: 15px;
        flex: none !important;
        grid-column: unset !important;
        grid-row: unset !important;
        float: none !important;
        clear: both !important;
    }
    
    .profile-image-area {
        height: 300px;
        padding: 12px;
    }
    
    .profile-footer-bar {
        padding: 15px;
        gap: 12px;
    }
    
    .action-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Dating Modal */
@media (max-width: 480px) {
    .dating-modal-overlay {
        padding: 2px;
        padding-top: 5px;
    }
    
    .dating-modal-container {
        width: calc(100% - 4px);
        border-radius: 15px;
    }
    
    .dating-modal-header {
        padding: 15px 10px;
        border-radius: 15px 15px 0 0;
    }
    
    .dating-logo-section {
        gap: 10px;
    }
    
    .dating-logo {
        width: 35px;
        height: 35px;
    }
    
    .heart-emoji {
        font-size: 18px;
    }
    
    .dating-brand h1 {
        font-size: 1.2rem;
    }
    
    .dating-brand p {
        font-size: 0.75rem;
    }
    
    .dating-close-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .dating-progress-section {
        padding: 15px 10px;
    }
    
    .dating-steps {
        gap: 5px;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .step-text {
        font-size: 0.65rem;
        max-width: 40px;
    }
    
    .dating-modal-content {
        padding: 20px 10px;
        max-height: 70vh;
    }
    
    .step-title-section {
        margin-bottom: 20px;
    }
    
    .step-title-section h2 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .step-title-section p {
        font-size: 0.85rem;
    }
    
    .dating-options {
        gap: 10px;
    }
    
    .option-card {
        padding: 12px;
        border-radius: 10px;
    }
    
    .option-icon {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }
    
    .option-content h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .option-content p {
        font-size: 0.8rem;
    }
    
    .dating-input-section {
        gap: 15px;
    }
    
    .dating-input-group label {
        font-size: 0.85rem;
    }
    
    .dating-input-wrapper input {
        padding: 10px 35px 10px 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .input-icon {
        right: 10px;
        font-size: 14px;
    }
    
    .dating-input-group small {
        font-size: 0.75rem;
    }
    
    .preview-card {
        padding: 12px;
        border-radius: 10px;
    }
    
    .preview-icon {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }
    
    .preview-content h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .preview-content p {
        font-size: 0.8rem;
    }
    
    .dating-form-grid {
        gap: 12px;
    }
    
    .dating-form-group label {
        font-size: 0.85rem;
    }
    
    .dating-select-wrapper select {
        padding: 10px 30px 10px 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .select-arrow {
        right: 10px;
        font-size: 9px;
    }
    
    .dating-summary {
        margin-top: 20px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .summary-header {
        margin-bottom: 12px;
    }
    
    .summary-header h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .summary-header p {
        font-size: 0.8rem;
    }
    
    .summary-items {
        gap: 8px;
    }
    
    .summary-item {
        padding: 8px 10px;
        border-radius: 6px;
    }
    
    .summary-label {
        font-size: 0.8rem;
    }
    
    .summary-value {
        font-size: 0.8rem;
    }
    
    .dating-modal-footer {
        padding: 15px 10px;
        gap: 10px;
    }
    
    .dating-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-radius: 8px;
        min-width: 80px;
    }
    
    .dating-btn-finish {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* ===== MOBILE SCROLL-TO-TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    display: none;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* Mobile-specific scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 10px;
        right: 10px;
    }
}

/* ===== ADDITIONAL MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Touch-friendly interactions */
    button, .btn, .action-btn, .modal-btn, .dating-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent text selection on buttons */
    button, .btn, .action-btn, .modal-btn, .dating-btn {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Improve touch targets */
    .profile-card, .modern-premium-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 107, 157, 0.2);
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* iOS viewport height fix */
    .modern-loading-screen {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
    
    /* Better focus states for mobile */
    input:focus, select:focus, textarea:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
    }
    
    /* Improve modal scrolling on mobile */
    .dating-modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better notification positioning on mobile */
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        margin-bottom: 8px;
        border-radius: 12px;
        padding: 12px 15px;
    }
}

/* ===== YENİ MODERN DATING MODAL STİLLERİ ===== */

/* Modal Overlay - Arka plan tamamen kapatılsın */
.dating-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    min-height: 100vh;
}

/* Modal Container */
.dating-modal-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    margin: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.dating-modal-header {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.dating-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dating-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.heart-emoji {
    font-size: 24px;
}

.dating-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dating-brand p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.dating-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dating-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Progress Section */
.dating-progress-section {
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.dating-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.dating-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 3px solid #e9ecef;
}

.dating-step.active .step-circle {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-color: #ff6b9d;
    transform: scale(1.1);
}

.step-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
}

.dating-step.active .step-text {
    color: #ff6b9d;
    font-weight: 600;
}

.dating-progress-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.dating-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Modal Content */
.dating-modal-content {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dating-step-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.dating-step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title-section {
    text-align: center;
    margin-bottom: 30px;
}

.step-title-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-title-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Dating Options */
.dating-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dating-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dating-option input[type="radio"] {
    display: none;
}

.option-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.dating-option:hover .option-card {
    border-color: #ff6b9d;
    background: #fff5f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.dating-option input[type="radio"]:checked + .option-card {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #fff5f7, #ffeef2);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.option-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
}

.option-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.option-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Dating Input Section */
.dating-input-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dating-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dating-input-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.dating-input-wrapper {
    position: relative;
}

.dating-input-wrapper input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.dating-input-wrapper input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #ff6b9d;
}

.dating-input-group small {
    color: #666;
    font-size: 0.85rem;
}

/* Location Preview */
.dating-location-preview {
    margin-top: 10px;
}

.preview-card {
    background: linear-gradient(135deg, #fff5f7, #ffeef2);
    border: 2px solid #ff6b9d;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.preview-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
}

.preview-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.preview-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Dating Form Grid */
.dating-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dating-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dating-form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.dating-select-wrapper {
    position: relative;
}

.dating-select-wrapper select {
    width: 100%;
    padding: 15px 40px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}

.dating-select-wrapper select:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b9d;
    font-size: 12px;
    pointer-events: none;
}

/* Dating Summary */
.dating-summary {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}

.summary-header {
    text-align: center;
    margin-bottom: 20px;
}

.summary-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.summary-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.summary-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* 5 items için responsive grid */
.summary-items:has(.summary-item:nth-child(5)) {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .summary-items:has(.summary-item:nth-child(5)) {
        grid-template-columns: 1fr;
    }
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.summary-label {
    font-weight: 500;
    color: #666;
}

.summary-value {
    font-weight: 600;
    color: #ff6b9d;
}

/* Modal Footer */
.dating-modal-footer {
    padding: 30px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e9ecef;
}

.dating-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.dating-btn-back {
    background: #e9ecef;
    color: #6c757d;
}

.dating-btn-back:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

.dating-btn-next {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.dating-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.dating-btn-finish {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    font-size: 1.1rem;
    padding: 18px 30px;
}

.dating-btn-finish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dating-modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .dating-modal-container {
        max-height: 95vh;
        margin: 0;
        width: calc(100% - 20px);
    }
    
    .dating-modal-header {
        padding: 20px;
    }
    
    .dating-brand h1 {
        font-size: 1.5rem;
    }
    
    .dating-progress-section {
        padding: 20px;
    }
    
    .dating-modal-content {
        padding: 25px;
    }
    
    .dating-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .summary-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .dating-modal-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .dating-btn {
        width: 100%;
        min-width: auto;
    }
    
    .dating-steps {
        gap: 10px;
    }
    
    .step-text {
        font-size: 0.7rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
    }
}