.teller-specialties {
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-badge {
    background-color: var(--mystic-light);
    color: var(--mystic-primary);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    display: inline-block;
}

.specialty-badge.more-badge {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--mystic-accent);
    cursor: pointer;
    font-weight: 500;
    border: 1px dashed var(--mystic-accent);
}

/* Falcı Profil Sayfası Stilleri */
.fortune-teller-hero {
    position: relative;
    padding: 100px 0 150px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.fortune-teller-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 10, 29, 0.85);
    z-index: 1;
}

.fortune-teller-hero .container {
    position: relative;
    z-index: 2;
}

.fortune-teller-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #ff6b00;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.5);
}

.fortune-teller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fortune-teller-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.7);
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.meta-info > div {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.meta-info .rating-info {
    display: flex;
    align-items: center;
}

.meta-info .stars {
    color: #FFD700;
    margin-right: 8px;
}

.meta-info .rating-value {
    font-weight: 600;
}

.meta-info i {
    margin-right: 8px;
}

.online-status {
    display: flex;
    align-items: center;
}

.online-indicator, .offline-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.online-indicator {
    background-color: #4CAF50;
    box-shadow: 0 0 8px #4CAF50;
}

.offline-indicator {
    background-color: #F44336;
    box-shadow: 0 0 8px #F44336;
}

.online-status.online {
    color: #4CAF50;
}

.online-status.offline {
    color: #F44336;
}

/* Detail Section Styles */
.fortune-teller-detail {
    position: relative;
    padding: 80px 0;
}

.detail-card, .contact-card, .similar-tellers-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #10101c 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.detail-card:hover, .contact-card:hover, .similar-tellers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
}

.card-header {
    background: linear-gradient(90deg, #ff6b00 0%, #1a1a2e 100%);
    color: #fff;
    padding: 20px 30px;
    border-bottom: none;
}

.section-title, .card-title {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-title i, .card-title i {
    margin-right: 10px;
    color: #ff6b00;
}

.card-body {
    padding: 30px;
}

/* İletişime Geç Kartı */
.contact-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #10101c 100%);
    color: #fff;
}

.contact-card .card-header {
    background: linear-gradient(90deg, #ff6b00 0%, #1a1a2e 100%);
    border-bottom: none;
}

.contact-card .card-title {
    color: #fff;
}

.cta-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #fff;
}

/* Benzer Falcılar */
.similar-tellers-list {
    max-height: 400px;
    overflow-y: auto;
}

.similar-teller-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
    color: #f4f4f4;
}

.similar-teller-item:last-child {
    border-bottom: none;
}
.similar-teller-item:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.similar-teller-item .teller-name {
    font-size: 1rem;
    margin: 0 0 5px;
    color: #f4f4f4;
}

.similar-teller-item .teller-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #ff6b00;
}

.similar-teller-item .teller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-teller-item .stars.small {
    font-size: 0.8rem;
}

/* Reviews Placeholder */
.reviews-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #777;
}

.reviews-placeholder h4 {
    margin-top: 0;
    color: #444;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fortune-teller-hero {
        padding: 80px 0 120px;
    }
    
    .fortune-teller-avatar {
        width: 150px;
        height: 150px;
    }
    
    .fortune-teller-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .fortune-teller-hero {
        padding: 60px 0 100px;
    }
    
    .fortune-teller-avatar {
        width: 120px;
        height: 120px;
    }
    
    .fortune-teller-hero .hero-title {
        font-size: 2rem;
    }
}

/* Global arkaplan renk düzeltmesi - Koyu tek renk */
body,
.featured-tellers-section, 
.fortune-types-section, 
.how-it-works-section, 
.testimonials-section, 
.blog-section, 
.newsletter-section, 
.footer, 
.hero-section, 
.site-wrapper, 
main, 
section, 
footer,
.fortune-teller-detail {
    background-color: #0a0a14 !important; /* En koyu siyaha yakın renk - üst menü ile aynı */
}

/* Kartlar için özel arka plan */
.detail-card, 
.contact-card, 
.similar-tellers-card,
.filter-card,
.fortune-teller-card {
    background: linear-gradient(135deg, #161627 0%, #0a0a14 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.filter-card {
    padding: 30px;
    margin-bottom: 30px;
}

.fortune-teller-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.fortune-teller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.teller-bio {
    color: #f4f4f4;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
} 
