* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;

    background: #f4f4f4;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Media Top Bar */
.social-top {
    background: linear-gradient(45deg, #ff1493, #d4af37);
    color: white;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 35px;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    background: #1da1f2;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(29, 161, 242, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.mobile-menu-btn {
    display: none;
    background: #ff1493;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Snapinsta.app_323280597_482304177421626_3152935471351356946_n_1080.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content .main-title {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tshung {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse-red 2s ease-in-out infinite alternate;
    position: relative;
}

.kathy {
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ffd700, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 1.2em;
    animation: rainbow-glow 3s ease-in-out infinite;
    position: relative;
}

@keyframes rainbow-glow {
    0% { 
        filter: drop-shadow(0 0 15px #ff1493) hue-rotate(0deg);
        transform: scale(1) rotate(-2deg);
    }
    33% { 
        filter: drop-shadow(0 0 25px #ff69b4) hue-rotate(120deg);
        transform: scale(1.08) rotate(1deg);
    }
    66% { 
        filter: drop-shadow(0 0 20px #ffd700) hue-rotate(240deg);
        transform: scale(1.05) rotate(-1deg);
    }
    100% { 
        filter: drop-shadow(0 0 15px #ff1493) hue-rotate(360deg);
        transform: scale(1) rotate(2deg);
    }
}

@keyframes pulse-red {
    from { 
        filter: drop-shadow(0 0 10px #ff6b6b);
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 20px #ff6b6b);
        transform: scale(1.05);
    }
}

@keyframes glow-gold {
    from { 
        filter: drop-shadow(0 0 10px #d4af37);
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 20px #d4af37);
        transform: scale(1.02);
    }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 1;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    font-weight: 500;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #b8941f, #d4af37);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    border-color: #fff;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, #ff1493 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #d4af37 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #ff69b4 0%, transparent 50%);
    opacity: 0.3;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
    z-index: 2;
    animation: typewriter 3s steps(8) 1s both;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #ff1493;
    width: fit-content;
    margin: 0 auto 50px;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    animation: slide-up 1s ease-out 0.5s both;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 2;
    margin-bottom: 30px;
    animation: fade-in 1s ease-out 1s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-text li {
    background: linear-gradient(90deg, #ff1493, #ff69b4);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-50px);
    animation: slide-in-left 0.6s ease-out forwards;
}

.about-text li:nth-child(1) { animation-delay: 1.5s; }
.about-text li:nth-child(2) { animation-delay: 1.8s; }
.about-text li:nth-child(3) { animation-delay: 2.1s; }

@keyframes slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text li:before {
    content: "⚡";
    margin-right: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d1b69, #1a1a1a);
}

.premium-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ff1493, #ffd700, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    animation: premium-pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes premium-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 15px #ff1493) brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px #ffd700) brightness(1.2);
        transform: scale(1.05);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.3);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 20, 147, 0.6);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff1493, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Messenger Chat Widget */
.messenger-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.messenger-button {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
}

.messenger-button:hover {
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

.messenger-icon {
    font-size: 20px;
}

.messenger-chat {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.messenger-chat.hidden {
    display: none;
}

.messenger-header {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.messenger-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.profile-name {
    font-weight: bold;
    font-size: 16px;
}

.profile-status {
    font-size: 12px;
    opacity: 0.9;
}

.messenger-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messenger-close:hover {
    background: rgba(255,255,255,0.1);
}

.messenger-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}

.messenger-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.messenger-message.bot {
    align-items: flex-start;
}

.messenger-message.user {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 20px;
    word-wrap: break-word;
}

.messenger-message.bot .message-bubble {
    background: #e3f2fd;
    color: #333;
    border-bottom-left-radius: 5px;
}

.messenger-message.user .message-bubble {
    background: #ff1493;
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    padding: 0 5px;
}

.messenger-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    gap: 10px;
}

.messenger-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.messenger-input button {
    background: #ff1493;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

@media (max-width: 768px) {
    .messenger-chat {
        width: 320px;
        height: 450px;
    }
    
    .messenger-widget {
        bottom: 15px;
        right: 15px;
    }
}
/* Booking Section */
.booking {
    padding: 100px 0;
    background: #f8f9fa;
}

.booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.booking-form select,
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.booking-form button {
    width: 100%;
    padding: 15px;
    background: #ff1493;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.booking-info h3 {
    margin-bottom: 20px;
    color: #333;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 24px;
    margin-top: 5px;
}

.info-item strong {
    color: #ff1493;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    margin: 2px 0;
    color: #666;
}

/* Mobile Menu */
.left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: block !important;
    background: #ff1493 !important;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .auth-buttons {
        flex-direction: row;
        gap: 5px;
        align-items: center;
    }
    
    .login-btn, .signup-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 15px;
    color: #666;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #d4af37;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

.contact-form button {
    background: #d4af37;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #b8941f;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 0 20px;
    }
    
    .hero-content .main-title {
        font-size: 2.8rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about h2, .services h2, .contact h2 {
        font-size: 2rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}



/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
}

.gallery-grid.locked {
    filter: blur(10px);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.gallery-overlay .unlock-content {
    pointer-events: all;
}

.unlock-content {
    text-align: center;
    color: white;
    padding: 40px;
    background: rgba(255, 20, 147, 0.1);
    border: 2px solid #ff1493;
    border-radius: 15px;
}

.unlock-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff1493;
}

.unlock-btn {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.gallery-folder {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 2px solid #ff1493;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.gallery-folder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.folder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #ff1493;
}

.gallery-folder h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-folder p {
    color: #ccc;
    margin-bottom: 0;
}

.folder-lock {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #ff1493;
}

.gallery-content {
    margin-top: 30px;
}

.gallery-content.hidden {
    display: none;
}

function openGalleryFolder() {
    const galleryVerified = localStorage.getItem('galleryVerified');
    if (galleryVerified !== 'true') {
        if (confirm('🔞 Age Verification Required\n\nYou must be 18+ to view this content.\n\nClick OK if you are 18+')) {
            localStorage.setItem('galleryVerified', 'true');
            document.getElementById('galleryContent').classList.remove('hidden');
        }
    } else {
        document.getElementById('galleryContent').classList.remove('hidden');
    }
}

.gallery-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
    z-index: 10;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
}

.video-item {
    position: relative;
}

.media-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    z-index: 10;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d1b69);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.client-name {
    font-style: italic;
    color: #d4af37;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #ff1493;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff1493;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 5px 0;
    color: #666;
}

.pricing-card li:before {
    content: "✓";
    color: #ff1493;
    margin-right: 10px;
}

/* Expandable Pricing Cards */
.pricing-card.expandable {
    cursor: pointer;
    position: relative;
}

.expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff1493;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.pricing-card.expanded .expand-icon {
    transform: rotate(45deg);
}

.pricing-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ff1493;
    transition: all 0.3s ease;
}

.pricing-details.hidden {
    display: none;
}

.pricing-details h4 {
    color: #ff1493;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pricing-details ul {
    margin-bottom: 15px;
}

.pricing-details li {
    padding: 3px 0;
    font-size: 0.9rem;
}

.pricing-details p {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.payment-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-options button {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 80px;
}

.payment-options button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

/* Payment Gateway Section */
.payment {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d1b69);
}

.payment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.payment-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.payment-card p {
    color: #ccc;
    margin-bottom: 20px;
}

.payment-btn {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}





/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #ff1493;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    font-size: 1.2rem;
}

.scroll-top.show {
    display: block;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.age-buttons button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.age-buttons button:first-child {
    background: #ff1493;
    color: white;
}

.age-buttons button:last-child {
    background: #ccc;
    color: #333;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img,
.lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Facial Verification Modal */
.face-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.face-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d1b69);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #ff1493;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.face-modal-content h3 {
    color: #ff1493;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.face-modal-content p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

#faceVideo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border: 3px solid #ff1493;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

.face-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.face-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.face-buttons button:first-child {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.face-buttons button:nth-child(2) {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.face-buttons button:last-child {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.face-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
}

#faceStatus {
    margin-top: 20px;
    font-weight: bold;
    color: #ff1493;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.3);
}

.close-face-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ff1493;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-face-modal:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: scale(1.1);
}

.age-modal.hidden {
    display: none;
}
/* Video Thumbnails */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    pointer-events: none;
}
/* Payment Gateway Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.payment-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-payment-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.payment-form {
    margin-top: 20px;
}

.payment-form h4 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.payment-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.card-row {
    display: flex;
    gap: 10px;
}

.card-row input {
    flex: 1;
}

.amount-display {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

.pay-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    background: #007bff;
    color: white;
}

.paypal-btn {
    background: #0070ba;
}

.cashapp-btn {
    background: #00d632;
}

.bitcoin-btn {
    background: #f7931a;
}

.crypto-address {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
    margin: 10px 0;
    border: 1px solid #ddd;
}
/* Age Warning Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;
}

.age-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-age-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.age-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-btn {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
/* Dark Theme */
.dark-theme {
    background: #1a1a1a;
    color: #fff;
}

.dark-theme .navbar {
    background: #2d2d2d;
}

.dark-theme .hero {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.dark-theme .about,
.dark-theme .services,
.dark-theme .testimonials,
.dark-theme .pricing,
.dark-theme .contact {
    background: #2d2d2d;
}

.dark-theme .service-card,
.dark-theme .testimonial-card,
.dark-theme .pricing-card {
    background: #3d3d3d;
    border: 1px solid #555;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle,
.login-btn {
    background: none;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.theme-toggle:hover,
.login-btn:hover {
    background: #007bff;
    color: white;
}

.theme-toggle {
    font-size: 18px;
    padding: 8px 12px;
}
.lightbox-img {
    display: none;
}

.lightbox-video {
    display: none;
}
.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.forum {
    padding: 80px 0;
    background: #f8f9fa;
}

.forum-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.forum-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.online-users {
    color: #666;
    font-size: 14px;
}

.forum-messages {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    background: #fafafa;
}

.forum-message {
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #e91e63;
}

.message-user {
    font-weight: bold;
    color: #e91e63;
    font-size: 14px;
}

.message-text {
    margin: 5px 0;
    color: #333;
}

.message-time {
    font-size: 12px;
    color: #999;
}

.forum-input {
    display: flex;
    gap: 10px;
}

.login-prompt {
    text-align: center;
    padding: 20px;
    color: #666;
}

.chat-form {
    display: flex;
    width: 100%;
    gap: 10px;
}

.chat-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.chat-form button {
    padding: 10px 20px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.login-btn, .signup-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

.login-btn {
    background: transparent;
    color: #e91e63;
    border: 1px solid #e91e63;
}

.signup-btn {
    background: #e91e63;
    color: white;
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.auth-modal.hidden {
    display: none;
}

.auth-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

.close-auth {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* Chat Section */
.chat-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.chat-container {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    padding: 20px;
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.profile-name {
    font-weight: bold;
    font-size: 18px;
}

.profile-status {
    font-size: 14px;
    opacity: 0.9;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #fafafa;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-message.bot {
    align-items: flex-start;
}

.chat-message.user {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 20px;
    word-wrap: break-word;
}

.chat-message.bot .message-bubble {
    background: #e3f2fd;
    color: #333;
    border-bottom-left-radius: 5px;
}

.chat-message.user .message-bubble {
    background: #ff1493;
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    padding: 0 5px;
}

.chat-input {
    display: flex;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.chat-input button {
    background: #ff1493;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        height: auto;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.5rem;
        order: 1;
    }
    
    .auth-buttons {
        order: 2;
        display: flex;
        gap: 8px;
        margin-left: auto;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    .hero {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .forum-messages {
        height: 300px;
    }
    
    .auth-modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px;
    }
    
    .payment-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .payment-options button {
        font-size: 12px;
        padding: 8px;
    }
    
    .chat-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .chat-form input {
        width: 100%;
    }
    
    .live-agent {
        width: 95%;
        right: 2.5%;
        bottom: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 15px;
    }
    
    .forum-messages {
        height: 250px;
    }
    
    .auth-modal-content {
        padding: 15px;
        margin: 10px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        font-size: 14px;
    }
    
    .auth-buttons button {
        font-size: 12px;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    .login-btn, .signup-btn {
        min-width: 60px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.close-auth {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    z-index: 1001;
}

.close-auth:hover {
    color: #000;
}
.close-auth {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    z-index: 1001;
}

.close-auth:hover {
    color: #000;
}
