body.bg-body {
    background: #111;
    color: #fff;
}

.nav-main {
    background: #660000;
}

.btn-main {
    background: #cc9900;
    color: #000;
    font-weight: bold;
    border: none;
}
.btn-main:hover {
    background: #e6b800;
}

.card-main {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 18px;
}

.bg-main {
    background: #cc9900;
}

.profile-photo-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-photo.placeholder {
    background: #660000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 72px;
    font-weight: bold;
    color: #fff;
}

/* Chat */
.chat-box {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 4px;
}
.chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 75%;
    position: relative;
}
.chat-bubble.mine {
    background: #cc9900;
    color: #000;
}
.chat-bubble.theirs {
    background: #333;
    color: #fff;
}
.chat-time {
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
}
/* =====================================================
   SOFTSA DATING - MOBILE APP DESIGN
   Sarı + Buz Mavisi + Amber Renk Paleti
===================================================== */

:root {
    --primary-yellow: #FDB022;
    --ice-blue: #00D9FF;
    --amber: #FFBF00;
    --pink: #FF6B9D;
    --light-pink: #FFB6D9;
    --dark-bg: #1a0f2e;
    --card-bg: #2a1845;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 25%, #1f1535 50%, #2a1845 75%, #1a0f2e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    padding-bottom: 80px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(253, 176, 34, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 217, 255, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 182, 217, 0.25) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

body > * {
    position: relative;
    z-index: 1;
}

/* =====================================================
   ALT NAVİGASYON (MOBILE BOTTOM BAR)
===================================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(52, 35, 95, 0.92) 0%, 
        rgba(70, 50, 40, 0.92) 25%, 
        rgba(78, 42, 78, 0.92) 50%, 
        rgba(45, 55, 110, 0.92) 75%, 
        rgba(58, 42, 98, 0.92) 100%);
    backdrop-filter: blur(20px);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #FDB022, #FF6B9D, #00D9FF, #FDB022) 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 
        0 -4px 30px rgba(0, 0, 0, 0.4), 
        0 0 40px rgba(253, 176, 34, 0.2),
        0 0 40px rgba(255, 107, 157, 0.2),
        0 0 40px rgba(0, 217, 255, 0.15);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.bottom-nav-item:hover {
    color: #FFB6D9;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(255, 107, 157, 0.15));
    transform: translateY(-3px);
}

.bottom-nav-item.active {
    color: #FFB6D9;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(255, 107, 157, 0.2));
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.bottom-nav-icon {
    font-size: 24px;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.bottom-nav-label {
    font-size: 11px;
    font-weight: 600;
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: linear-gradient(135deg, var(--ice-blue), var(--amber));
    color: #000;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.nav-badge.hidden {
    display: none !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* =====================================================
   ÜST HEADER (LOGO VE BİLGİ)
===================================================== */
.top-header {
    background: linear-gradient(135deg, 
        rgba(58, 42, 98, 0.92) 0%, 
        rgba(45, 55, 110, 0.92) 25%, 
        rgba(78, 42, 78, 0.92) 50%, 
        rgba(70, 50, 40, 0.92) 75%, 
        rgba(52, 35, 95, 0.92) 100%);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #00D9FF, #FF6B9D, #FDB022, #00D9FF) 1;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4), 
        0 0 40px rgba(0, 217, 255, 0.2),
        0 0 40px rgba(255, 107, 157, 0.2),
        0 0 40px rgba(253, 176, 34, 0.15);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF, #FF6B9D, #FDB022, #FFB6D9);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: logoShift 5s ease infinite;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5)) 
            drop-shadow(0 0 20px rgba(255, 107, 157, 0.5))
            drop-shadow(0 0 20px rgba(253, 176, 34, 0.4));
}

@keyframes logoShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* =====================================================
   KARTLAR
===================================================== */
.card-main {
    background: rgba(42, 24, 69, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 217, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.2);
    overflow: hidden;
}

.card-body {
    padding: 24px;
}

/* Yazıları daha okunabilir yap */
.card-main h1, .card-main h2, .card-main h3, .card-main h4, .card-main h5, .card-main h6 {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-main p, .card-main div, .card-main span {
    color: #E0E0E0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.text-muted {
    color: #C0C0C0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* =====================================================
   BUTONLAR
===================================================== */
.btn-main {
    background: linear-gradient(135deg, var(--pink), var(--primary-yellow));
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
    color: #FFFFFF;
}

.btn-ice {
    background: linear-gradient(135deg, var(--ice-blue), var(--light-pink));
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-ice:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6);
    color: #FFFFFF;
}

.btn-outline-light {
    border: 2px solid rgba(255, 182, 217, 0.5);
    color: #FFFFFF;
    background: transparent;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 182, 217, 0.2);
    border-color: var(--light-pink);
    color: #FFFFFF;
}

.btn-dark {
    background: linear-gradient(135deg, #2a1845, #1a0f2e);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #3a2855, #2a1f3e);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-outline-dark {
    border: 2px solid #000;
    color: #000;
    background: transparent;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

/* =====================================================
   FORM ELEMANLARI
===================================================== */
.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 182, 217, 0.3);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
    color: #FFFFFF;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 182, 217, 0.3);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 12px 16px;
}

.form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
    color: #FFFFFF;
}

.form-select option {
    background: #2a1845;
    color: #FFFFFF;
    padding: 10px;
}

.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(253, 176, 34, 0.3));
    color: #FFFFFF;
}

/* Select dropdown arrow rengi */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFB6D9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-label {
    color: #E0E0E0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* =====================================================
   PROFİL KARTI (SWIPE)
===================================================== */
.profile-photo-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo.placeholder {
    background: linear-gradient(135deg, var(--primary-yellow), var(--ice-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo.placeholder span {
    font-size: 120px;
    font-weight: bold;
    color: #000;
}

/* =====================================================
   SWIPE BUTONLARI
===================================================== */
.swipe-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.swipe-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.swipe-btn.dislike {
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
    color: white;
}

.swipe-btn.like {
    background: linear-gradient(135deg, var(--primary-yellow), var(--amber));
    color: #000;
}

.swipe-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* =====================================================
   CHAT TASARIMI
===================================================== */
.chat-container {
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    margin-bottom: 15px;
}

.chat-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.chat-bubble.mine {
    background: linear-gradient(135deg, var(--primary-yellow), var(--amber));
    color: #000;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-bubble.theirs {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-time {
    font-size: 0.7rem;
    margin-top: 4px;
    opacity: 0.7;
}

.typing-indicator {
    display: none;
    padding: 10px;
    color: #999;
    font-size: 0.85rem;
}

.typing-indicator.active {
    display: block;
}

/* Scrollbar Özelleştirme */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 10px;
}

/* =====================================================
   LİSTE GÖRÜNÜMLERİ
===================================================== */
.list-group-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 182, 217, 0.2);
    color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: var(--pink);
    transform: translateX(5px);
    color: #FFFFFF;
}

.list-group-item-action {
    color: #FFFFFF;
}

.list-group-item .fw-semibold {
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.unread-badge {
    background: linear-gradient(135deg, var(--pink), var(--light-pink));
    color: #FFFFFF;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   BADGES VE ETİKETLER
===================================================== */
.badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.bg-success {
    background: linear-gradient(135deg, #4CAF50, #45B649) !important;
}

.bg-warning {
    background: linear-gradient(135deg, var(--primary-yellow), var(--amber)) !important;
    color: #000 !important;
}

.bg-secondary {
    background: rgba(255, 255, 255, 0.2) !important;
}

.bg-main {
    background: linear-gradient(135deg, var(--primary-yellow), var(--amber));
}

/* =====================================================
   ALERT VE BİLDİRİMLER
===================================================== */
.alert {
    border-radius: 12px;
    border: none;
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border-left: 4px solid #4CAF50;
}

.alert-danger {
    background: rgba(255, 107, 107, 0.15);
    color: #FF6B6B;
    border-left: 4px solid #FF6B6B;
}

.alert-info {
    background: rgba(0, 217, 255, 0.15);
    color: var(--ice-blue);
    border-left: 4px solid var(--ice-blue);
}

/* =====================================================
   PREMIUM KILIT EKRANI
===================================================== */
.bumble-yellow {
    background: var(--primary-yellow);
}

.lock-card {
    background: linear-gradient(135deg, var(--primary-yellow), var(--amber));
    color: #000;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(253, 176, 34, 0.3);
}

.bee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 15px;
}

.bee-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 200px;
}

.bee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bee-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: #fff;
    font-size: 0.9rem;
}

.bee-buttons {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0,0,0,0.45);
}

.bee-card:hover .bee-buttons {
    display: flex;
}

.bee-buttons button {
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    color: #000;
    background: #fff;
}

/* =====================================================
   ROUNDED AVATAR
===================================================== */
.rounded-circle {
    border: 3px solid var(--primary-yellow);
}

/* =====================================================
   TEXT UTILITIES
===================================================== */
.text-muted {
    color: var(--text-secondary) !important;
}

/* =====================================================
   CONTAINER AYARLARI
===================================================== */
.container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =====================================================
   RESPONSİVE AYARLAR
===================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .profile-photo-wrapper {
        height: 400px;
    }
}

/* =====================================================
   ANİMASYONLAR
===================================================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-main {
    animation: slideUp 0.4s ease;
}

/* =====================================================
   NAVBAR ESKİSİ GIZLE
===================================================== */
.navbar, .nav-main {
    display: none !important;
}