html, body {
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    overscroll-behavior: none;
}
body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(255, 31, 122, 0.15), rgba(255, 107, 53, 0.1)), 
                linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9)), 
                url('/assets/images/bg.webp');
    background-size: cover;
    background-position: center;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 31, 122, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 31, 122, 0.05);
}

.faq-header:hover .faq-icon {
    color: #ff1f7a;
}

.faq-header:hover h3 {
    color: #ff1f7a;
}

@keyframes breathe-sexy {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 31, 122, 0.4), 0 0 50px rgba(255, 31, 122, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 31, 122, 0.7), 0 0 70px rgba(255, 31, 122, 0.4);
    }
}

.breathing-button {
    animation: breathe-sexy 2s ease-in-out infinite;
}

.breathing-button:hover {
    animation: breathe-sexy 1.5s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 31, 122, 0.8), 0 0 80px rgba(255, 31, 122, 0.5) !important;
}

@keyframes breathe-coral {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.4), 0 0 50px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 107, 53, 0.7), 0 0 70px rgba(255, 107, 53, 0.4);
    }
}

.breathing-button-coral {
    animation: breathe-coral 2s ease-in-out infinite;
}

.breathing-button-coral:hover {
    animation: breathe-coral 1.5s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.8), 0 0 80px rgba(255, 107, 53, 0.5) !important;
}

.mobile-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0 0 0;
}

.faq-answer.expanded {
    max-height: 500px;
    padding: 1rem 0 0 0;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(45deg);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.upload-area {
    border: 2px dashed #4a5568;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #ff1f7a;
    background-color: rgba(255, 31, 122, 0.05);
}

.upload-area.dragover {
    border-color: #ff1f7a;
    background-color: rgba(255, 31, 122, 0.1);
}

.generate-container {
    min-height: 500px;
}

#image-compare-demo {
    border-radius: 0.5rem;
}

.icv__label {
    background: rgba(255, 31, 122, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.image-compare-gallery {
    position: relative;
    aspect-ratio: 4/5;
    background: #1a1a1a;
}

.image-compare-gallery .icv__label {
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    background: rgba(255, 107, 53, 0.8);
}

.image-compare-gallery .icv__control-line {
    width: 1px !important;
}

.icv__control svg {
    width: 10px !important;
    height: 10px !important;
}

.image-compare-gallery .icv__control svg {
    width: 8px !important;
    height: 8px !important;
}

#image-compare-demo .icv__control svg {
    width: 12px !important;
    height: 12px !important;
}

#image-compare-demo img {
    height: 100%;
    position: absolute;
    z-index: 2;
    left: auto;
    right: 0px;
    width: auto;
}
.sexy-gradient {
    background: linear-gradient(135deg, #ff1f7a, #ff6b35);
}

.sexy-gradient-reverse {
    background: linear-gradient(135deg, #ff6b35, #ff1f7a);
}

.text-sexy-gradient {
    background: linear-gradient(135deg, #ff1f7a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 