/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* Mobile-First Layout */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
    padding: 1rem;
}

/* Mobile-First Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 95vw;
    margin: 0 auto;
}

.hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    order: 2;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ff6b9d, #c44faa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #ff6b9d;
}

.hero-description {
    font-size: 1rem;
    margin: 0;
    color: #cccccc;
    line-height: 1.4;
}

.hero-tagline {
    font-size: 1rem;
    font-style: italic;
    color: #aaaaaa;
    margin: 0;
}

/* Photo Section - Top Priority for Mobile */
.hero-right {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    order: 1;
}

.model-photo {
    width: 100%;
    max-width: 280px;
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-image {
    width: 100%;
    height: auto;
    max-height: 45vh;
    transition: all 0.3s ease;
    object-fit: contain;
    /* Purple glow outline around your silhouette */
    filter: 
        drop-shadow(0 0 15px rgba(139, 92, 246, 0.8))
        drop-shadow(0 0 25px rgba(255, 107, 157, 0.6))
        drop-shadow(0 0 35px rgba(139, 92, 246, 0.4));
}

.profile-image:hover {
    transform: scale(1.01);
    /* Enhanced glow on hover */
    filter: 
        drop-shadow(0 0 20px rgba(139, 92, 246, 1))
        drop-shadow(0 0 35px rgba(255, 107, 157, 0.8))
        drop-shadow(0 0 50px rgba(139, 92, 246, 0.6))
        drop-shadow(0 0 70px rgba(255, 107, 157, 0.4));
}

/* Compact Links Section - Part of Left Side */
.main-container {
    display: none; /* Hide the old container */
}

.links-table-section {
    padding: 0;
    background: transparent;
}

.links-category {
    display: block !important;
}

.links-category {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: left;
    color: #ff6b9d;
}

.links-grid {
    display: grid;
    gap: 0.8rem;
}

.social-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.spicy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.link-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1rem 0.8rem;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(139, 92, 246, 0.1));
    transition: left 0.3s ease;
}

.link-card:hover::before {
    left: 0;
}

.link-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.link-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.link-card span {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.link-card small {
    font-size: 0.7rem;
    color: #aaa;
    position: relative;
    z-index: 2;
}

.featured {
    border-color: #ff6b9d;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(139, 92, 246, 0.1));
}

.featured::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    z-index: 3;
}


/* Hero Section */
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.no-post {
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
}

.feed-time {
    color: #888;
    font-size: 0.75rem;
    align-self: flex-end;
}

/* Platform-specific styling */
.twitter-feed:hover { border-color: #1DA1F2; }
.instagram-feed:hover { border-color: #E4405F; }
.bluesky-feed:hover { border-color: #00D4FF; }
.reddit-feed:hover { border-color: #FF4500; }
.snapchat-feed:hover { border-color: #FFFC00; }

/* Compact contact and footer */
.contact-compact {
    margin-top: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b9d, #8b5cf6);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.footer-compact {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    right: 50%;
    text-align: center;
}

.footer-compact p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

/* Hide old sections */
.contact-section {
    display: none;
}

/* Platform-specific colors for link cards */
.twitter:hover { border-color: #1DA1F2; }
.instagram:hover { border-color: #E4405F; }
.bluesky:hover { border-color: #00D4FF; }
.snapchat:hover { border-color: #FFFC00; }
.reddit:hover { border-color: #FF4500; }
.onlyfans:hover { border-color: #00AFF0; }
.escort:hover { border-color: #ff6b9d; }
.camgirl:hover { border-color: #8b5cf6; }

/* Pricing Popups */
.pricing-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a1a 100%);
    margin: 5% auto;
    padding: 0;
    border: 2px solid #8b5cf6;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

.popup-header {
    background: linear-gradient(45deg, #ff6b9d, #8b5cf6);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-popup {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-popup:hover {
    opacity: 1;
}

.pricing-list {
    padding: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item.special {
    background: rgba(255, 107, 157, 0.1);
    border-radius: 8px;
    margin: 0.5rem 0;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.duration {
    color: #ccc;
    font-weight: 600;
    font-size: 1rem;
}

.price {
    color: #ff6b9d;
    font-weight: 700;
    font-size: 1.2rem;
}

.platform-info {
    padding: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #333;
}

.platform-info p {
    color: #ccc;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-tag {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-info {
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.contact-info p {
    color: #ccc;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b9d, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.contact-note {
    color: #aaa !important;
    font-size: 0.9rem !important;
    font-style: italic;
    margin-top: 1rem !important;
}

/* Footer Section */
.footer-section {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-section p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Breakpoints */

/* Small phones */
@media (max-width: 375px) {
    .hero-content {
        max-width: 100vw;
        padding: 0 0.5rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .feed-card {
        padding: 0.8rem 0.5rem;
    }
    
    .feed-header {
        font-size: 0.8rem;
    }
    
    .platform-name {
        font-size: 0.7rem;
    }
    
    .feed-time {
        font-size: 0.65rem;
    }
    
    .spicy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    
    .link-card {
        padding: 0.8rem 0.4rem;
    }
    
    .link-card span {
        font-size: 0.8rem;
    }
    
    .link-card small {
        font-size: 0.6rem;
    }
}

/* Standard mobile */
@media (min-width: 376px) and (max-width: 480px) {
    .hero-content, .social-feed-section {
        max-width: 95vw;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .social-feed-grid {
        gap: 0.6rem;
    }
}

/* Large mobile / small tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-content, .social-feed-section {
        max-width: 90vw;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .social-feed-grid {
        gap: 0.8rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .hero-section {
        padding: 2rem;
    }
    
    .hero-content {
        flex-direction: row;
        max-width: min(95vw, 1200px);
        align-items: flex-start;
    }
    
    .hero-left {
        width: 50%;
        text-align: left;
        align-items: flex-start;
        order: 1;
        padding-right: 2rem;
    }
    
    .hero-right {
        width: 50%;
        order: 2;
        margin-bottom: 2rem;
    }
    
    .model-photo {
        max-width: 100%;
    }
    
    .profile-image {
        max-height: 70vh;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spicy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-feed-section {
        max-width: min(90vw, 800px);
    }
    
    .social-feed-grid {
        justify-content: space-between;
        gap: 1rem;
    }
}