/* 
 * Laufhaus Erospark Karlsruhe - Girl Detail Page
 * Modern Red-Black Design - Optimized Layout
 */

/* Main Container */
.girl-profile {
    padding-top: 70px; /* Account for fixed header */
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    min-height: 100vh;
}

/* Hero Section with Optimized Parallax Effect */
.profile-hero {
    position: relative;
    height: 100vh; /* Reduced height max-height: 700px;*/
    min-height: 450px;
    
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.8);
    transition: filter 0.5s ease;
    /* Fixed parallax effect */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Parallax effect using position sticky - more reliable */
@media (min-width: 768px) {
    .hero-image {
        perspective: 1px;
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-image img {
        position: sticky;
        top: 0;
        transform: translateZ(-1px) scale(2);
        z-index: -1;
    }
}

.hero-image:hover img {
    filter: brightness(0.9);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(10, 0, 0, 0.95), transparent);
    z-index: 1;
}

/* Adjusted hero content position */
.hero-content {
    position: absolute;
    bottom: 12rem; /* Further increased to move content higher */
    left: 0;
    right: 0;
    padding: 0 3rem;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.6);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.languages {
    font-size: 1.2rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.hero-description {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.availability-badge {
    position: absolute;
    top: 7rem;
    right: 2rem;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.availability-badge.available {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.4);
    color: #4cff4c;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.availability-badge.unavailable {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4c4c;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

/* Improved Girl Info Grid for Hero Section */
.girl-info-grid {
    position: absolute;
    bottom: 1.5rem; /* Positioned higher */
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 4;
}


.girl-info-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-accent);
    border-radius: 5px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-medium);
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

.girl-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.girl-info-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.girl-info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Profile Content - Moved up */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem; /* Reduced top padding */
}

/* Main Content */
.profile-main {
    display: grid;
    gap: 3rem;
}

.profile-main section {
    background: rgba(25, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-main section:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
}

.profile-main h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    position: relative;
    padding-bottom: 0.8rem;
}

.profile-main h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 0, 0, 0.05);
    transform: translateX(5px);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    min-width: 25px;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.detail-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-item strong {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.additional-details {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.detail-tag:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, 0.3);
}

.detail-tag i {
    color: var(--primary-color);
}

/* About Section */
.about-content {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-content p {
    margin-bottom: 1rem;
}

/* Services Section */
.rates-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.rate-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: rgba(255, 0, 0, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.rate-item .time {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.rate-item .price {
    display: block;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}


.services-grid {
    display: grid;
    gap: 2.5rem;
}

.service-category h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-category h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    background: rgba(255, 0, 0, 0.05);
    transform: translateX(5px);
    border-color: rgba(255, 0, 0, 0.2);
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.5));
    min-width: 25px;
    text-align: center;
}

.service-name {
    flex: 1;
    color: var(--text-light);
}

.service-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-notes {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.3rem;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.schedule-day {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-day:hover {
    transform: translateY(-5px);
}

.schedule-day.available {
    border-color: rgba(0, 255, 0, 0.2);
}

.schedule-day.available:hover {
    background: rgba(0, 255, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.05);
}

.day-name {
    display: block;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.time-range {
    color: #4cff4c;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.not-available {
    color: var(--text-muted);
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 0.75;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.3);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Sidebar */
.profile-sidebar {
    display: grid;
    gap: 2rem;
    align-content: start;
}

.contact-card,
.location-card {
    background: rgba(25, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover,
.location-card:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
}

.contact-card h3,
.location-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
    position: relative;
    padding-bottom: 0.8rem;
}

.contact-card h3::after,
.location-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
}

.contact-card p,
.location-card p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.contact-card i,
.location-card i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.5));
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
}

.availability-info {
    margin: 1.5rem 0;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.availability-info .available {
    color: #4cff4c;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

.availability-info .unavailable {
    color: #ff4c4c;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.availability-info i {
    font-size: 1.3rem;
}

.video-chat-link {
    text-decoration: none;
    display: block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.video-chat-link:hover {
    transform: translateY(-5px);
}

.video-chat-info {
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.video-chat-info:hover {
    background: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.video-chat-info i {
    font-size: 1.3rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.service-tag:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 0, 0, 0.3);
}

.service-tag i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.5));
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.3);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.3);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary-color);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Animation Classes */
.gradient-text {
    background: linear-gradient(
        to right,
        #E4CC7F,
        var(--primary-color),
        #E4CC7F,
        var(--secondary-color)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 8s ease infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Animation classes for the sections */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation classes for service items */
.service-hidden {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Animation classes for gallery items */
.gallery-item-hidden {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item-visible {
    opacity: 1;
    transform: scale(1);
}

/* Today indicator for schedule */
.today-marker {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: normal;
}

.schedule-day.today {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

/* Active gallery item in lightbox */
.gallery-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-content {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .profile-main h2 {
        font-size: 1.8rem;
    }
    
    .girl-info-card {
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .profile-hero {
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .profile-main section {
        padding: 2rem;
    }
    
    .rate-item .price {
        font-size: 1.5rem;
    }
    
    .girl-info-card {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        bottom: 13rem; /* Increased to move content higher on tablets */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-image img {
        object-position: center 20%;
    }
    
    .availability-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .profile-content {
        padding: 2rem 1.5rem;
    }
    
    .details-grid,
    .schedule-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .girl-info-card {
        min-width: 110px;
        padding: 0.8rem;
    }
    
    .girl-info-card h3 {
        font-size: 1.2rem;
    }
    
    .girl-info-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .profile-hero {
        height: 95vh; /* Adjusted height for mobile to fit content better */
        min-height: 550px;
    }
    
    .hero-content {
        bottom: 13rem; /* Further increased for mobile */
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero-description {
        padding: 1rem;
        font-size: 0.95rem;
        max-height: 150px;
        overflow-y: auto;
    }
    
    .girl-info-grid {
        bottom: 1rem;
        padding: 0 1rem;
    }
    
    .girl-info-card {
        min-width: calc(50% - 0.5rem); /* Two per row on very small screens */
        max-width: none;
        flex: 0 0 calc(50% - 0.5rem);
        padding: 0.7rem;
    }
    
    .girl-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .girl-info-card p {
        font-size: 0.7rem;
    }
    
    .profile-main section {
        padding: 0.2rem;
    }
    
    .rates-overview {
        grid-template-columns: 1fr 1fr;
    }
    
    .rate-item {
        padding: 1rem;
    }
    
    .rate-item .price {
        font-size: 1.3rem;
    }
    
    .detail-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .detail-item i {
        font-size: 1.1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        display: none;
    }
}
/* Weitere Girls Section */
.more-girls-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    padding: 4rem 0 5rem;
    position: relative;
}

.more-girls-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.more-girls-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.more-girls-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.more-girls-section .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.more-girls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.more-girls-section .girl-card {
    position: relative;
    background-color: #161616;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.more-girls-section .girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.more-girls-section .girl-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
    background: #0d0d0d;
}

.more-girls-section .girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.more-girls-section .girl-card:hover .girl-image img {
    transform: scale(1.08);
}

.more-girls-section .country-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 25px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.more-girls-section .country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-girls-section .girl-info {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #161616, #1a0000);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.more-girls-section .girl-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more-girls-section .girl-details {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.more-girls-section .detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    background: transparent;
    padding: 0;
}

.more-girls-section .detail-item:hover {
    transform: none;
    background: transparent;
}

.more-girls-section .detail-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.more-girls-section .girl-link {
    margin-top: auto;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    transition: var(--transition-medium);
    text-decoration: none;
    align-self: flex-start;
}

.more-girls-section .girl-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.more-girls-section .view-all-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-medium);
    text-decoration: none;
    max-width: 250px;
}

.more-girls-section .view-all-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .more-girls-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .more-girls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
	.container {
		padding:0;
	}
    .more-girls-grid {
        grid-template-columns: 1fr;
    }
    
    .more-girls-section .section-title {
        font-size: 1.8rem;
    }
    
    .more-girls-section {
        padding: 3rem 0 4rem;
    }
}