/* ============================================
   PHONE SEX PERTS - COMPLETE STYLES
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    min-height: 100vh;
    color: #e4e4e4;
    line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
.header-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    overflow: hidden;
}

.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,15,0) 50%, rgba(10,10,15,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #d4af37, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(157, 78, 221, 0.5);
}

.logo-subtitle {
    font-size: 1rem;
    color: #d4af37;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: rgba(26, 26, 46, 0.98);
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
}

.nav-links a {
    display: block;
    padding: 18px 25px;
    color: #b8b8d1;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover {
    color: #d4af37;
    border-bottom-color: #9d4edd;
}

.nav-links a.active {
    color: #d4af37;
    border-bottom-color: #9d4edd;
}

/* ============================================
   CONTENT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.page-intro h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 15px;
}

.page-intro p {
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

.fallback-number {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.fallback-number a {
    color: #d4af37;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

/* ============================================
   CATEGORY HEADERS
   ============================================ */
.category-header {
    text-align: center;
    margin: 60px 0 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.category-header h2 {
    font-size: 2rem;
    color: #9d4edd;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* ============================================
   OPERATORS GRID
   ============================================ */
.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.operator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 240px;
    margin: 0 auto;
    width: 100%;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
    border-color: rgba(157, 78, 221, 0.5);
}

/* ============================================
   CARD IMAGE - CENTERED
   ============================================ */
.card-image {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f1a;
    overflow: hidden;
}

.card-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.operator-card:hover .card-image img {
    transform: scale(1.02);
}

.name-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 15px 15px;
    text-align: center;
    pointer-events: none;
}

.name-badge img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   FANTASY BUBBLES
   ============================================ */
.fantasy-bubble {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(90, 24, 154, 0.1));
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 12px 15px;
    margin: 10px 0;
    text-align: center;
}

.fantasy-bubble h3 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.fantasy-bubble p {
    color: #b8b8d1;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.fantasy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 8px;
}

.fantasy-tag {
    background: rgba(157, 78, 221, 0.2);
    color: #9d4edd;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CARD CONTENT & CALL BOX
   ============================================ */
.card-content {
    padding: 15px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.call-box {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin-top: 10px;
}

.call-box .phone {
    display: block;
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.call-box .phone:hover {
    color: #9d4edd;
}

.call-box .avail {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.character-status {
    display: inline-block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-badges img {
    height: 31px;
    width: auto;
    opacity: 0.8;
}

.footer-text {
    color: #444;
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-text a {
    color: #9d4edd;
    text-decoration: none;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-banner {
        height: 200px;
    }
    
    .operators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .fantasy-bubble {
        padding: 10px;
    }
    
    .fantasy-bubble h3 {
        font-size: 1rem;
    }
    
    .fantasy-bubble p {
        font-size: 0.8rem;
    }
    
    .call-box .phone {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .operators-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
    
    .card-image {
        height: 180px;
    }
}

/* Reduce padding on operator cards */
.operator-card {
    padding: 0; /* Remove outer padding */
}

.card-content {
    padding: 10px 12px 12px 12px; /* Reduced from 15px 20px 20px */
}

.fantasy-bubble {
    padding: 8px 10px; /* Reduced from 12px 15px */
}

/* Make availability text smaller and prevent wrapping */
.call-box {
    padding: 8px; /* Reduced from 15px */
    margin: 8px 0; /* Reduced from 10px 0 */
}

.call-box .avail {
    font-size: 0.75rem; /* Smaller text */
    white-space: nowrap; /* Prevent wrapping to multiple lines */
    flex-wrap: nowrap; /* Keep on one line */
}

/* Alternative: Allow text to shrink */
.character-status {
    display: inline-block;
    font-size: 0.75rem;
}