* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

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

@keyframes shine {
    0% { background-position: -100% 50%; }
    100% { background-position: 200% 50%; }
}

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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

main {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.title-container {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.shape1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FF7A59, #FF4088);
    top: -30px;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #5C6BC0, #3F51B5);
    top: 20px;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #FF4088, #5C6BC0);
    bottom: -20px;
    left: 50%;
    animation-delay: 4s;
}

h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
}

/* Main hero section heading */
.hero .gradient-text {
    font-size: 56px;
    background: linear-gradient(135deg, #FF7A59, #FF4088, #5C6BC0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    position: relative;
    display: inline-block;
}

/* Other sections gradient text */
.gradient-text {
    background: linear-gradient(135deg, #FF7A59, #FF4088, #5C6BC0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    display: inline-block;
    font-size: 38px;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite;
}

.black-text {
    color: #000;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 20px;
    position: relative;
    background: linear-gradient(90deg, #666, #333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.upload-container {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.upload-box {
    border: 2px dashed #5C6BC0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    background: rgba(92, 107, 192, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-box.drag-over {
    background: rgba(92, 107, 192, 0.1);
    border-color: #3F51B5;
}

.upload-icon {
    margin-bottom: 20px;
}

.upload-icon svg {
    width: 48px;
    height: 48px;
    stroke: #5C6BC0;
}

.upload-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.blue-text {
    color: #5C6BC0;
    position: relative;
}

.blue-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #5C6BC0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blue-text:hover::after {
    transform: scaleX(1);
}

.upload-btn {
    background: #5C6BC0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.upload-btn:hover {
    background: #3F51B5;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.upload-btn:hover .btn-icon {
    transform: translateY(-3px);
}

.file-info {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    color: #5C6BC0;
}

.check-icon {
    color: #FF4088;
    font-size: 18px;
    animation: pulse 2s infinite;
}

.terms {
    font-size: 14px;
    color: #888;
    margin-top: 30px;
}

.terms a {
    color: #5C6BC0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms a:hover {
    color: #3F51B5;
}

.upload-box.highlight {
    border-color: #5C6BC0;
    background-color: rgba(92, 107, 192, 0.05);
    transform: scale(1.02);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    transition: transform 0.3s ease;
    margin-right: 2px;
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF7A59, #FF4088);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-text-black {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-left: 2px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF4088;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FF4088;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.try-free {
    background: linear-gradient(135deg, #FF7A59, #FF4088);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 64, 136, 0.3);
}

.login-btn {
    background: transparent;
    color: #666;
    border: 2px solid #eee;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    border-color: #FF4088;
    color: #FF4088;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .try-free, .login-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    main {
        padding-top: 60px;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Main hero heading stays at 56px */
    .hero .gradient-text {
        font-size: 56px;
    }
    
    /* Other sections responsive sizes */
    .gradient-text {
        font-size: 32px;
    }
}

.how-it-works {
    background: #fff;
    padding: 30px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(92, 107, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 64, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #5C6BC0;
    background: rgba(92, 107, 192, 0.1);
    border-radius: 30px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.section-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.section-title {
    font-size: 28px;
    color: #2c3e50;
    margin: 0 0 10px;
    font-weight: 700;
    background: linear-gradient(120deg, #5C6BC0, #FF4088);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    perspective: 1000px;
    padding: 20px 0;
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(120deg, #5C6BC0, #FF4088);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.step-card:hover {
    transform: translateZ(20px) rotateX(2deg) rotateY(2deg);
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.1),
        -20px -20px 60px rgba(255, 255, 255, 0.8);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    background: linear-gradient(120deg, #5C6BC0, #FF4088);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.3);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    background: linear-gradient(120deg, rgba(92, 107, 192, 0.1), rgba(255, 64, 136, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #5C6BC0;
    transition: transform 0.3s ease;
}

.step-card:hover .icon-wrapper svg {
    transform: scale(1.1) rotate(5deg);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px;
    background: linear-gradient(120deg, #5C6BC0, #FF4088);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(120deg, #5C6BC0, #FF4088);
    opacity: 0.2;
}

.dot:nth-child(1) { top: 20%; left: 10%; animation: float 6s infinite; }
.dot:nth-child(2) { top: 60%; right: 20%; animation: float 8s infinite; }
.dot:nth-child(3) { bottom: 30%; left: 30%; animation: float 7s infinite; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    20%, 100% { transform: translateX(100%); }
}

@media (max-width: 968px) {
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .step-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .step-card {
        padding: 20px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.05) 0%, rgba(88, 101, 242, 0) 70%);
    top: -400px;
    right: -400px;
    border-radius: 50%;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 64, 136, 0.05) 0%, rgba(255, 64, 136, 0) 70%);
    bottom: -300px;
    left: -300px;
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 300px));
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin: 4rem auto;
    padding: 0 1rem;
    justify-content: center;
    max-width: 1100px;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 0.2;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon-wrapper svg {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper svg {
    transform: rotate(8deg);
}

/* Colors with gradients for feature icons */
.purple { 
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.1));
    color: #7C3AED;
}

.blue { 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    color: #3B82F6;
}

.pink { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.1));
    color: #EC4899;
}

.green { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #10B981;
}

.orange { 
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 88, 12, 0.1));
    color: #F59E0B;
}

.teal { 
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    color: #0EA5E9;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #2D3748;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: currentColor;
}

.feature-card p {
    color: #718096;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    min-height: 60px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive layout */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(250px, 280px));
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: minmax(250px, 300px);
        gap: 1.5rem;
    }
}

.features-cta {
    text-align: center;
    margin-top: 60px;
}

.primary-button {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.2);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.3);
}

.primary-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.primary-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 25px;
    }
}

/* Brand Showcase Section */
.brand-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, rgba(248, 249, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.brand-showcase::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(92, 107, 192, 0.05) 0%, transparent 70%);
    top: -300px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.brand-showcase::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 64, 136, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.showcase-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-accent {
    background: linear-gradient(135deg, #FF4088, #5C6BC0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.showcase-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.showcase-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.showcase-item {
    flex: 1;
    max-width: 400px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.checkered-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
    z-index: -1;
}

.showcase-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.showcase-arrow svg {
    width: 48px;
    height: 48px;
}

.showcase-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mini-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mini-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-feature span {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

@media (max-width: 968px) {
    .showcase-grid {
        flex-direction: column;
        gap: 20px;
    }

    .showcase-item {
        width: 100%;
        max-width: 100%;
    }

    .showcase-arrow {
        transform: rotate(90deg);
    }

    .showcase-title {
        font-size: 32px;
    }

    .showcase-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .showcase-features {
        flex-direction: column;
        gap: 20px;
    }

    .mini-feature {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, rgba(248, 249, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(92, 107, 192, 0.03) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonial-cards {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 107, 192, 0.1), rgba(255, 64, 136, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    flex: 1.5;
    background: linear-gradient(135deg, #fff, #f8f9ff);
    border: 1px solid rgba(92, 107, 192, 0.1);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 2;
}

.quote-icon {
    color: #5C6BC0;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 15px;
}

.rating {
    color: #FFB400;
    font-size: 18px;
    margin-bottom: 15px;
}

.star {
    margin-right: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #5C6BC0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid #fff;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    margin: 0;
}

.author-info p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(92, 107, 192, 0.05), rgba(255, 64, 136, 0.05));
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #5C6BC0, #FF4088);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #718096;
    font-weight: 500;
}

.testimonial-card.highlight {
    background: linear-gradient(135deg, rgba(92, 107, 192, 0.05), rgba(255, 64, 136, 0.05));
}

@media (max-width: 1024px) {
    .testimonial-cards {
        flex-direction: column;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Ensure proper container spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section spacing */
section {
    padding: 80px 0;
}

/* Footer Styles */
.main-footer {
    position: relative;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    padding-top: 100px;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.waves {
    position: relative;
    width: 100%;
    height: 100px;
}

.wave-parallax {
    animation: wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

@keyframes wave-move {
    0% { transform: translate3d(-90px,0,0); }
    50% { transform: translate3d(85px,0,0); }
    100% { transform: translate3d(-90px,0,0); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    color: #2c3e50;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.company-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4088;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255,64,136,0.2);
    background: linear-gradient(135deg, #FF7A59, #FF4088);
    color: white;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #FF4088;
}

.newsletter p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #FF4088;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,64,136,0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, #FF7A59, #FF4088);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,64,136,0.2);
}

.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.app-badge img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-badge:hover img {
    transform: translateY(-2px);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-info p {
    color: #666;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FF4088;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-methods span {
    color: #666;
    font-size: 14px;
}

.payment-methods img {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stat-item {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Header and Main Content Spacing */
main {
    padding-top: 80px;
}

.hero {
    padding: 40px 0;
}

.custom-edit-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Circles */
.custom-edit-section::before,
.custom-edit-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.custom-edit-section::before {
    width: 300px;
    height: 300px;
    background: #5C6BC0;
    top: -100px;
    left: -100px;
    animation: floatCircle 15s infinite ease-in-out;
}

.custom-edit-section::after {
    width: 200px;
    height: 200px;
    background: #FF4088;
    bottom: -50px;
    right: -50px;
    animation: floatCircle 12s infinite ease-in-out reverse;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Ensure content stays above background */
.custom-edit-grid {
    position: relative;
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 1;
}

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

.custom-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 0;
}

.info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: 20px;
    height: 100%;
}

.edit-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px;
    color: #333;
    font-weight: 700;
}

.edit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.animated-service-icon {
    width: 100%;
    height: 300px;
    margin-top: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-illustration {
    width: 100%;
    height: 100%;
}

/* Frame Animations */
@keyframes frameGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 64, 136, 0)); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 64, 136, 0.3)); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes arrowMove {
    0% { stroke-dashoffset: 40; }
    100% { stroke-dashoffset: 0; }
}

@keyframes checkmark {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

@keyframes floatingAnimation {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -5px) rotate(5deg); }
    50% { transform: translate(0, -10px) rotate(0deg); }
    75% { transform: translate(-5px, -5px) rotate(-5deg); }
}

@keyframes processingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Apply Animations */
.frame {
    animation: frameGlow 3s infinite ease-in-out;
}

.dot {
    animation: dotPulse 2s infinite;
}

.dot2 { animation-delay: 0.3s; }
.dot3 { animation-delay: 0.6s; }

.process-arrow {
    animation: arrowMove 1.5s infinite linear;
}

.processing-circle {
    transform-origin: center;
    animation: processingRotate 4s infinite linear;
}

.processing-check {
    stroke-dasharray: 100;
    animation: checkmark 2s infinite ease-in-out;
}

.floating-elements > * {
    animation: floatingAnimation 4s infinite ease-in-out;
}

.float-square { animation-delay: 0.5s; }
.float-triangle { animation-delay: 1s; }

/* Form Styles */
.form-column {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.upload-area.highlight {
    border-color: #FF4088;
    background: rgba(255, 64, 136, 0.05);
}

.upload-area.has-files {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    align-items: start;
    justify-items: center;
    width: 100%;
    position: relative;
}

.upload-area.has-files .thumbnail-container {
    margin: 5px;
}

.upload-area svg {
    width: 48px;
    height: 48px;
    color: #FF4088;
    margin-bottom: 15px;
}

.upload-area h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.upload-area p {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0;
}

.thumbnail-container {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0;
}

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

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #FF4088;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.remove-btn:hover {
    background: #FF4088;
    color: white;
}

.error-message {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    10% { opacity: 1; transform: translate(-50%, 0); }
    90% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}

.form-group {
    margin-bottom: 25px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-field {
    margin-bottom: 15px;
}

.input-field label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.input-field textarea {
    height: 100px;
    resize: vertical;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.price-option {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.price-option:hover {
    border-color: #FF4088;
}

.price-option .price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.price-option .images {
    display: block;
    font-size: 12px;
    color: #666;
}

.send-btn {
    width: 100%;
    padding: 12px;
    background: #FF4088;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.send-btn svg {
    width: 16px;
    height: 16px;
}

.form-footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.form-footer a {
    color: #FF4088;
    text-decoration: none;
}

@media (max-width: 768px) {
    .custom-edit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-column {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .animated-service-icon {
        height: 250px;
        margin-top: 30px;
    }

    .edit-title {
        font-size: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .input-row {
        grid-template-columns: 1fr;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .custom-edit-section {
        padding: 60px 0;
    }
}

/* Header Navigation Styles */
html {
    scroll-behavior: smooth;
}

/* Section IDs for navigation */
section[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Auth Modal Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.auth-modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #FF4088;
    border-bottom-color: #FF4088;
}

.auth-forms {
    position: relative;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.auth-form h2 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #FF4088;
    outline: none;
}

.auth-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FF4088, #FF7A59);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: white;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

.google-auth {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-auth:hover {
    background: #f5f5f5;
}

.google-auth img {
    width: 20px;
    height: 20px;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    color: #FF4088;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5C6BC0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Result Container Styles */
.result-container {
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-image-wrapper {
    text-align: center;
}

.result-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    /* Checkered background for transparent images */
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

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

/* Result Container Buttons */
.result-container .buttons-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.download-btn, .try-another-btn {
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn {
    background: #3F51B5;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 1 auto;
    min-width: 120px;
}

.try-another-btn {
    background: #f0f0f0;
    color: #333;
}

.new-upload-btn {
    background: #FF4088;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 1 auto;
    min-width: 200px;
}

/* Button Hover Effects */
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

.try-another-btn:hover {
    background: #e5e5e5;
}

.new-upload-btn:hover {
    background: #FF1744;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .result-container {
        padding: 10px;
    }
    
    .result-image {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .result-container .buttons-wrapper {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .download-btn, .new-upload-btn {
        width: 100%;
        min-width: unset;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .result-container {
        padding: 5px;
    }
    
    .result-container .buttons-wrapper {
        padding: 0 10px;
    }
    
    .download-btn, .new-upload-btn {
        width: 100%;
        padding: 10px 16px;
    }
}

.upload-more-btn {
    background: #FF4088;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    transition: all 0.3s ease;
    grid-column: 1 / -1;
    justify-self: center;
}

.upload-more-btn span {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.upload-more-btn:hover {
    background: #FF1744;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 64, 136, 0.2);
}

.upload-area.has-files {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    align-items: start;
    justify-items: center;
    width: 100%;
}

.upload-area.has-files .thumbnail-container {
    margin: 5px;
}

