@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary: #3459ff;
    --primary-dark: #2548e4;
    --primary-light: #5b7aff;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --blue-500: #3b82f6;
    --indigo-300: #a5b4fc;
    --blue-300: #93c5fd;
    --violet-200: #ddd6fe;
    --blue-400: #60a5fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Subtle Dark Background */
.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.aurora-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0.5;
}

/* Retro Grid Animation */
@keyframes grid-move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(60px);
    }
}

.retro-grid {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 200px;
    opacity: 0.5;
}

.retro-grid-inner {
    position: absolute;
    inset: 0;
    transform: rotateX(65deg);
}

.retro-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(99, 102, 241, 0.3) 1px, transparent 0),
        linear-gradient(to bottom, rgba(99, 102, 241, 0.3) 1px, transparent 0);
    background-size: 60px 60px;
    background-repeat: repeat;
    height: 300vh;
    width: 600vw;
    margin-left: -200%;
    transform-origin: 100% 0 0;
    animation: grid-move 20s linear infinite;
}

.retro-grid-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, transparent 90%);
}

/* Tubelight Navbar */
.navbar {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #e2e8f0;
    padding: 0.5rem 0;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    width: auto;
    max-width: 600px;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0.5rem;
    gap: 0.5rem;
}

.nav-logo a {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    padding: 0.5rem 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: relative;
    background: transparent;
}

.nav-link:hover {
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.15);
}

.nav-link.active {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

.nav-cta-btn {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.nav-cta-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 89, 255, 0.4);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.page {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.page.active {
    display: block;
}

.page.hidden {
    display: none !important;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: #a5b4fc;
    background: linear-gradient(to right, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    color: #f1f5f9;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #94a3b8;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(90deg, #E2CBFF 0%, #393BB2 50%, #E2CBFF 100%);
    background-size: 200% 100%;
    animation: spin-border 2s linear infinite;
}

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

.cta-button-wrapper .btn {
    background: linear-gradient(to right, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Hero CTA Container */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.hero-cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(52, 89, 255, 0.3);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(52, 89, 255, 0.5);
}

.hero-cta-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 0.5rem;
}

.hero-cta-btn {
    background: white;
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.hero-cta-note svg {
    flex-shrink: 0;
}

/* Features Bento Grid */
.features-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 22rem;
    gap: 1.5rem;
}

.bento-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.bento-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-card-icon {
    transform: scale(0.9);
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.bento-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card.span-row-2 {
    grid-row: span 2;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(52, 89, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(52, 89, 255, 0.3);
    border-color: rgba(52, 89, 255, 0.4);
}

.feature-card.featured {
    border-color: rgba(52, 89, 255, 0.6);
    background: rgba(52, 89, 255, 0.1);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3459ff, #2548e4);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.feature-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-cost {
    background: rgba(52, 89, 255, 0.2);
    color: #5b7aff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-duration {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-link {
    color: #3459ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.feature-link:hover {
    color: #5b7aff;
    transform: translateX(5px);
}

/* Shimmer Text Effect */
@keyframes shimmer {
    0% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.shimmer-text {
    background-image:
        linear-gradient(90deg, transparent 0%, transparent calc(50% - 30px), var(--primary) 50%, transparent calc(50% + 30px), transparent 100%),
        linear-gradient(var(--gray), var(--gray));
    background-size: 250% 100%, auto;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-top: 3rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.benefit-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.pricing-card:nth-child(2) {
    transform: rotate(1deg);
    border-color: rgba(236, 72, 153, 0.4);
}

.pricing-card:nth-child(3) {
    transform: rotate(-1.5deg);
}

.pricing-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.pricing-card.popular {
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #1e293b;
    transform: rotate(12deg);
}

.pricing-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #818cf8;
    background: rgba(99, 102, 241, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.pricing-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #94a3b8;
}

.pricing-per {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pricing-per-credit {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #818cf8;
    color: #818cf8;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid #5b7aff;
    background: rgba(52, 89, 255, 0.1);
    color: #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 0 #818cf8;
}

.pricing-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 0 #5b7aff;
    background: rgba(52, 89, 255, 0.2);
}

.pricing-card.popular .pricing-button {
    background: #fbbf24;
    color: #0f172a;
    border-color: #fbbf24;
    box-shadow: 4px 4px 0 0 #fbbf24;
}

.pricing-card.popular .pricing-button:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 6px 6px 0 0 #f59e0b;
}

/* Video Samples Section */
.samples-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.samples-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}

/* Thumbnail Button Video Player */
.video-thumbnail-btn {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.video-thumbnail-btn:hover {
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.video-thumbnail-btn:active {
    transform: scale(0.98);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 120px;
    height: 72px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

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

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.video-play-icon svg {
    width: 14px;
    height: 14px;
    fill: #0f172a;
    margin-left: 2px;
}

.video-thumbnail-title {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1rem;
    padding-right: 0.5rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

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

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    animation: scaleIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

.video-modal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.success-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.success-modal-content {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-modal-content h3 {
    color: #e2e8f0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-modal-content p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-modal-buttons {
    display: flex;
    gap: 1rem;
}

.success-modal-buttons .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

/* Caption Warning Modal */
.caption-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.caption-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.caption-modal-content {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

.caption-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.caption-modal-content h3 {
    color: #e2e8f0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.caption-modal-content p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption-location-selector {
    margin-bottom: 2rem;
}

.caption-location-selector label {
    display: block;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.location-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-location {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818cf8;
    color: #e2e8f0;
}

.btn-location.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    color: white;
}

.caption-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.caption-modal-buttons .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.caption-modal-buttons .btn svg {
    width: 16px;
    height: 16px;
}

.caption-modal-close {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.caption-modal-close:hover {
    color: #e2e8f0;
}

/* CTA Section with Pulse Beams */
.cta-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.pulse-beams-container {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.pulse-beams-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

@keyframes beamPulse1 {
    0%, 100% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes beamPulse2 {
    0%, 100% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes beamPulse3 {
    0%, 100% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

.beam-path-1 {
    stroke-dasharray: 500;
    animation: beamPulse1 4s ease-in-out infinite;
}

.beam-path-2 {
    stroke-dasharray: 500;
    animation: beamPulse2 4s ease-in-out infinite 1.3s;
}

.beam-path-3 {
    stroke-dasharray: 500;
    animation: beamPulse3 4s ease-in-out infinite 2.6s;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button-container {
    margin-bottom: 1.5rem;
}

.cta-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-primary-button:hover::before {
    opacity: 1;
}

.cta-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cta-primary-button svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.cta-disclaimer {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Comparison Table Section */
.comparison-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
}

.comparison-table th {
    padding: 1.5rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #f1f5f9;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.comparison-table th:first-child {
    text-align: left;
}

.table-header-badge {
    display: inline-block;
    background: #fbbf24;
    color: #0f172a;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    color: #e2e8f0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

.comparison-table td:first-child {
    text-align: left;
}

.feature-name {
    font-weight: 600;
    color: #f1f5f9;
}

.highlight-col {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 700;
    color: #a5b4fc;
}

.comparison-table .check {
    color: #10b981;
    font-size: 1.5rem;
}

.comparison-table .cross {
    color: #64748b;
    font-size: 1.5rem;
    opacity: 0.6;
}

.comparison-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
    text-align: center;
}

/* Auth Container */
.auth-container {
    max-width: 460px;
    margin: 2rem auto;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-container form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-container input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
}

.auth-container input:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.7);
}

.auth-container input::placeholder {
    color: #64748b;
}

.auth-container p {
    text-align: center;
    margin-top: 1.5rem;
    color: #94a3b8;
}

.auth-container a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-container a:hover {
    color: #818cf8;
    text-decoration: underline;
}

/* Dashboard */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.user-info span {
    font-weight: 500;
    color: #e2e8f0;
}

.credits {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.quick-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #818cf8, #c084fc);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.stat-card h3 {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.stat-card p {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Transaction History */
.transaction-history {
    margin-top: 2rem;
}

.transaction-history h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.transaction-list {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

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

.transaction-item:hover {
    background: rgba(99, 102, 241, 0.05);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-icon.purchase {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: var(--success);
}

.transaction-icon.refund {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    color: var(--danger);
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-description {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}

.transaction-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.transaction-package {
    color: var(--primary-light);
}

.transaction-amount {
    text-align: right;
    flex-shrink: 0;
}

.amount-credits {
    font-size: 1rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.25rem;
}

.amount-money {
    font-size: 0.85rem;
    color: var(--gray);
}

.empty-message, .loading-message {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Submission Form */
.submit-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.submit-container h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.05rem;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="file"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
}

.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.6;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.7);
}

.image-preview {
    margin-top: 1.5rem;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.image-preview img {
    max-width: 100%;
    display: block;
    border-radius: 16px;
}

.image-preview.hidden {
    display: none;
}

/* Upload Drop Zone */
.upload-drop-zone {
    width: 100%;
    min-height: 250px;
    border: 3px dashed rgba(99, 102, 241, 0.4);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upload-drop-zone:hover {
    border-color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.upload-drop-zone.drag-over {
    border-color: #818cf8;
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.upload-placeholder svg {
    color: #818cf8;
    opacity: 0.6;
}

.upload-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.upload-subtext {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
}

.image-preview-inline {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-preview-inline img {
    max-width: 100%;
    max-height: 250px;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.image-preview-inline.hidden {
    display: none;
}

.image-preview-inline .remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-preview-inline .remove-image:hover {
    background: rgba(239, 68, 68, 1);
    transform: scale(1.1);
}

/* Orientation Buttons */
.orientation-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-orientation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 64px;
    height: 64px;
}

.btn-orientation:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818cf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.btn-orientation.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.btn-orientation svg {
    stroke: currentColor;
}

/* Duration Buttons */
.duration-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.btn-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-duration:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818cf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.btn-duration.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.duration-time {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.duration-credits {
    font-size: 0.875rem;
    opacity: 0.9;
}

.duration-info {
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
}

.duration-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 1.125rem;
    font-weight: 600;
}

.duration-display svg {
    color: var(--primary);
}

/* Mode Buttons (Veo3) */
.btn-mode,
.btn-mode-quality {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.btn-mode:hover,
.btn-mode-quality:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818cf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.btn-mode.active,
.btn-mode-quality.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-mode svg,
.btn-mode-quality svg {
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .btn {
    flex: 1;
}

/* UGC Pro Two-Column Layout */
.ugc-pro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.ugc-pro-form {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    height: fit-content;
}

.ugc-pro-form h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.ugc-pro-info {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    height: fit-content;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
}

.info-badge svg {
    width: 20px;
    height: 20px;
}

.estimated-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6ee7b7;
    margin-bottom: 1.5rem;
}

.estimated-time svg {
    width: 18px;
    height: 18px;
}

.ugc-pro-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.info-description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #10b981;
    margin-top: 0.25rem;
}

.feature-item strong {
    display: block;
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.info-example {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-example h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.example-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.example-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-placeholder.step-image {
    border-color: rgba(99, 102, 241, 0.5);
}

.step-placeholder.step-processing {
    border-color: rgba(139, 92, 246, 0.5);
}

.step-placeholder.step-video {
    border-color: rgba(16, 185, 129, 0.5);
}

.step-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.step-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #e2e8f0;
}

.step-example {
    font-size: 0.75rem;
    color: #94a3b8;
}

.example-arrow {
    font-size: 1.5rem;
    color: #818cf8;
    flex-shrink: 0;
}

.info-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.info-note svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #818cf8;
    margin-top: 0.125rem;
}

.info-note p {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
}

.info-note strong {
    color: #e2e8f0;
}

/* Responsive UGC Pro Layout */
@media (max-width: 1024px) {
    .ugc-pro-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .example-flow {
        flex-direction: column;
    }

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

/* Image Remix Layout (similar to UGC Pro) */
.image-remix-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.image-remix-form,
.image-remix-info {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.page-title-with-example {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.image-remix-form h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.btn-example {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #818cf8;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-example:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #818cf8;
    transform: translateY(-1px);
}

.btn-example svg {
    flex-shrink: 0;
}

.image-remix-info h3 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.image-remix-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.image-remix-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(15, 23, 42, 0.8);
}

/* Image Remix Upload Boxes */
.remix-image-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
    cursor: pointer;
}

.remix-image-box .upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.remix-image-box .upload-text {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.remix-image-box .upload-subtext {
    font-size: 0.875rem;
}

/* Example Prompts Styling */
.example-prompts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.prompt-example {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.prompt-example strong {
    color: #e2e8f0;
    font-weight: 500;
}

/* Responsive Image Remix Layout */
@media (max-width: 1024px) {
    .image-remix-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .remix-image-box {
        aspect-ratio: 4 / 3;
    }
}

/* Image Remix Display in Project Detail */
.section-title {
    color: #e2e8f0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

/* Full-width video for remix */
.remix-video-full {
    margin-bottom: 3rem;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.remix-video-full video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
}

/* Inputs section divider */
.remix-inputs-divider {
    margin: 3rem 0 2rem 0;
}

.remix-inputs-divider h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.remix-prompt-display {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: inline-block;
    max-width: 100%;
}

.remix-prompt-display h4 {
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.remix-prompt-display p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Grid for remix images */
.remix-images-grid-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.remix-image-display {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.remix-image-display h5 {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.remix-image-display img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.remix-image-display img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.4);
}

/* Image preview modal */
.image-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-preview-modal.active {
    display: flex;
}

.image-preview-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-preview-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.image-preview-close:hover {
    background: rgba(99, 102, 241, 0.8);
    transform: rotate(90deg);
}

/* Desktop: Grid layout for images */
@media (min-width: 768px) {
    .remix-images-grid-simple {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Settings Page */
.settings-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.settings-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.settings-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.settings-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 2rem;
}

.settings-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
}

.info-label {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.info-value {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
}

/* Policy Pages (Terms & Privacy) */
.policy-content h3 {
    color: #818cf8;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.policy-content h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content h4 {
    color: #a5b4fc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    color: #cbd5e1;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #818cf8;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.policy-content a:hover {
    color: #a5b4fc;
}

.policy-content strong {
    color: #e2e8f0;
    font-weight: 600;
}

/* Auto Captions Page */
.auto-captions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.auto-captions-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #64748b;
}

.search-input:focus {
    outline: none;
    border-color: #818cf8;
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.captions-gallery {
    column-count: 4;
    column-gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.load-more-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.load-more-container .btn {
    min-width: 200px;
}

.caption-video-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
}

.caption-video-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.caption-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
}

.caption-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.caption-video-info {
    margin-bottom: 1rem;
}

.caption-video-info h4 {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Responsive columns for captions gallery */
@media (max-width: 1200px) {
    .captions-gallery {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .captions-gallery {
        column-count: 2;
    }
}

.task-id-label {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    padding: 0.25rem 0;
}

.video-caption-text {
    color: #94a3b8;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

.btn-add-captions {
    width: 100%;
}

.btn-add-captions.btn-processing,
.btn-add-captions:disabled {
    background: rgba(100, 116, 139, 0.3);
    border-color: rgba(100, 116, 139, 0.5);
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-add-captions.btn-processing:hover,
.btn-add-captions:disabled:hover {
    background: rgba(100, 116, 139, 0.3);
    transform: none;
    box-shadow: none;
}

.no-videos-message,
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(30, 41, 59, 0.4);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 16px;
}

.no-videos-message p,
.no-results-message p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Gallery */
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.projects-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-video-placeholder {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(192, 132, 252, 0.15));
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
}

.gallery-video-placeholder svg {
    color: #818cf8;
    opacity: 0.6;
}

.gallery-item:hover .gallery-video-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(192, 132, 252, 0.25));
}

.gallery-item:hover .gallery-video-placeholder svg {
    opacity: 0.8;
    transform: scale(1.1);
}

.gallery-item-content {
    padding: 1.5rem;
}

.gallery-item h3 {
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery-item .status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.submitted {
    background: linear-gradient(135deg, var(--warning), #f59e0b);
    color: white;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.status.started {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3);
}

.status.processing {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3);
}

.status.completed {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.status.failed {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: white;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

/* Refund note for failed submissions */
.refund-note {
    margin-top: 8px;
    padding: 6px 10px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--success);
    line-height: 1.4;
}

/* Payment Success Page */
.success-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem;
}

.success-message {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--success), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.credit-balance {
    font-size: 1.25rem !important;
    margin: 1.5rem 0 !important;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.credit-balance strong {
    color: var(--success);
    font-size: 1.5rem;
}

.redirect-message {
    font-size: 0.9rem !important;
    color: var(--gray) !important;
    margin-top: 1.5rem !important;
}

.error-message {
    color: var(--danger);
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.error-message p {
    color: var(--danger) !important;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(52, 89, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status.captions-complete {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.status.subtitles-processing {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3);
}

/* Project Detail */
.project-detail {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a5b4fc;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.back-link:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(-5px);
    color: #818cf8;
}

.detail-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(192, 132, 252, 0.1));
    border-radius: 16px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image-placeholder svg {
    color: #818cf8;
    opacity: 0.7;
}

.project-url-link {
    color: #818cf8;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.project-url-link:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.project-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-info p {
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 1.05rem;
}

.project-info p strong {
    color: #e2e8f0;
    font-weight: 600;
}

.videos-section h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.video-player {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-player:hover {
    transform: scale(1.02);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid var(--primary);
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.caption-text {
    flex: 1;
}

.copy-caption-btn {
    background: transparent;
    border: none;
    color: rgba(99, 102, 241, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    position: relative;
}

.copy-caption-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.copy-caption-btn:active {
    transform: scale(0.95);
}

.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #10b981;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    animation: tooltipFadeIn 0.2s ease-out;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #10b981;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes tooltipFadeOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
    }
}

.copy-tooltip.fade-out {
    animation: tooltipFadeOut 0.2s ease-out forwards;
}

.video-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    border-radius: 16px;
    font-weight: 600;
    border: 2px dashed rgba(99, 102, 241, 0.3);
}

/* Admin Dashboard */
.admin-header {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.admin-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tab-btn {
    background: rgba(99, 102, 241, 0.1);
    border: none;
    padding: 0.875rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(99, 102, 241, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content.hidden {
    display: none !important;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.admin-table thead {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    color: white;
}

.admin-table th,
.admin-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    color: #e2e8f0;
}

.admin-table th {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr {
    transition: background-color 0.2s ease;
}

.admin-table tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.admin-table a:hover {
    color: #818cf8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-left: 0 !important; /* Ensure no sidebar padding on mobile */
    }

    main {
        padding: 0;
        margin-left: 0 !important;
    }

    /* Make pages use full width */
    .page {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* Feature page layouts full width */
    .ugc-pro-layout,
    .image-remix-layout {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .ugc-pro-form,
    .ugc-pro-info,
    .image-remix-form,
    .image-remix-info {
        padding: 2rem 1.5rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: 100%;
        box-sizing: border-box;
    }

    .ugc-pro-form h2,
    .image-remix-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Auto Captions page full width */
    .auto-captions-header {
        padding: 2rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .auto-captions-header h2 {
        font-size: 1.5rem;
    }

    .captions-gallery {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .navbar {
        max-width: 90%;
        top: 10px;
        padding: 0.4rem 0;
    }

    .nav-container {
        padding: 0.25rem 0.5rem;
        gap: 0.25rem;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .nav-logo a {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }

    .nav-logo img {
        height: 30px !important;
    }

    .nav-menu {
        gap: 0.15rem;
        flex-wrap: nowrap;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
    }

    .nav-cta-btn {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }

    .bento-card.span-2,
    .bento-card.span-row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .bento-card-icon {
        font-size: 2rem;
    }

    .bento-card h3 {
        font-size: 1.2rem;
    }

    .benefits-section,
    .features-section,
    .pricing-section {
        padding: 3rem 1rem;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        transform: rotate(0deg) !important;
    }

    .pricing-card:hover {
        transform: translateY(-5px) rotate(0deg) !important;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .video-thumbnail-btn {
        width: 100%;
        max-width: 400px;
    }

    .video-thumbnail-wrapper {
        width: 100px;
        height: 60px;
    }

    .video-thumbnail-title {
        font-size: 0.9rem;
    }

    .video-modal-content {
        max-width: 90%;
    }

    .cta-section {
        padding: 4rem 1rem;
    }

    .pulse-beams-container {
        min-height: 400px;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-primary-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-disclaimer {
        font-size: 0.85rem;
    }

    .comparison-section {
        padding: 3rem 1rem;
    }

    .comparison-table-wrapper {
        padding: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .table-header-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .comparison-table .check,
    .comparison-table .cross {
        font-size: 1.25rem;
    }

    .comparison-note {
        font-size: 0.8rem;
    }

    .detail-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.5rem;
        margin-bottom: 2rem;
        width: 100%;
        border-radius: 0;
    }

    .dashboard-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .user-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .user-info span {
        font-size: 0.9rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .stat-card p {
        font-size: 1.75rem;
    }

    .quick-actions {
        gap: 1rem;
    }

    .nav-logo a {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .quick-actions {
        flex-direction: column;
    }

    .quick-actions .btn {
        width: 100%;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.875rem;
    }

    .auth-container,
    .submit-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-sizing: border-box;
    }

    .submit-container h2,
    .auth-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .submit-container p,
    .auth-container p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="email"],
    .form-group input[type="url"],
    .form-group input[type="file"] {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Touch-friendly */
        width: 100%;
    }

    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 16px;
        min-height: 120px;
        width: 100%;
    }

    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 16px;
        min-height: 44px;
        width: 100%;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .form-actions .btn {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }

    .btn {
        min-height: 44px; /* Touch-friendly buttons */
        padding: 0.875rem 1.5rem;
    }

    .btn-orientation {
        min-height: 100px;
        font-size: 0.95rem;
        width: 100%;
    }

    .orientation-buttons {
        gap: 1rem;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .image-upload-zone,
    .upload-drop-zone {
        min-height: 180px;
        padding: 1.5rem;
        width: 100%;
        border-radius: 12px;
    }

    .upload-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .upload-text {
        font-size: 0.9rem;
    }

    .upload-hint {
        font-size: 0.75rem;
    }

    .upload-placeholder {
        padding: 0.5rem;
    }

    .success-modal-content {
        padding: 2rem 1.5rem;
    }

    .success-modal-buttons {
        flex-direction: column;
    }

    .caption-modal-content {
        padding: 2rem 1.5rem;
    }

    .caption-modal-buttons {
        flex-direction: column;
    }

    .location-buttons {
        flex-direction: column;
    }

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

    .gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        margin-bottom: 0;
    }

    .gallery-item img,
    .gallery-video-placeholder {
        height: 200px;
    }

    .captions-gallery {
        column-count: 1;
        padding: 0.5rem;
        max-width: 100%;
    }

    .caption-video-card {
        width: 100%;
    }

    .search-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .search-input {
        font-size: 0.9rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Feature page optimizations */
    .project-header {
        padding: 1.5rem;
        width: 100%;
    }

    .project-header h2 {
        font-size: 1.25rem;
    }

    .project-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .project-actions .btn {
        width: 100%;
    }

    .submit-form {
        padding: 1.5rem;
        width: 100%;
    }

    .submit-form h2 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .duration-select,
    .credits-display {
        padding: 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .video-preview-container {
        max-width: 100%;
        overflow-x: auto;
        width: 100%;
    }

    .stat-card p {
        font-size: 2rem;
    }

    .admin-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
    }

    /* Show mobile header and menu button on mobile */
    .mobile-header {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Add padding to account for sticky header */
    main {
        padding-top: 60px;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex !important;
    }

    .sidebar.visible {
        transform: translateX(0);
        z-index: 1001 !important;
    }

    body.sidebar-visible {
        padding-left: 0;
    }

    body.sidebar-visible main {
        margin-left: 0;
    }
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(99, 102, 241, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow-y: auto;
}

.sidebar.visible {
    display: flex;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sidebar-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #e2e8f0;
}

.sidebar-item.active {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border-left: 3px solid #818cf8;
}

.sidebar-item.active svg {
    stroke: #818cf8;
}

.sidebar-item svg {
    flex-shrink: 0;
    stroke: #94a3b8;
}

.sidebar-submenu {
    padding-left: 2.5rem;
    font-size: 0.9rem;
}

.sidebar-section {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.sidebar-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sidebar-contact {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.sidebar-contact:hover {
    color: #e2e8f0;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Adjust main content when sidebar is visible - Desktop only */
@media (min-width: 769px) {
    body.sidebar-visible {
        padding-left: 250px;
    }

    body.sidebar-visible main {
        margin-left: 0;
    }

    body.sidebar-visible .navbar {
        display: none;
    }
}

/* Mobile Sticky Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}

.mobile-header-spacer {
    width: 44px; /* Same as hamburger button width */
}

.mobile-header-logo {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.mobile-header-credits {
    font-size: 0.875rem;
    font-weight: 600;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1004;
    width: 44px;
    height: 44px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn:hover {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #818cf8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sidebar Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    main {
        padding: 0;
    }

    .page {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* Feature page layouts full width */
    .ugc-pro-layout,
    .image-remix-layout {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .ugc-pro-form,
    .ugc-pro-info,
    .image-remix-form,
    .image-remix-info {
        padding: 1.5rem 1.25rem;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .ugc-pro-form h2,
    .image-remix-form h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    /* Auto Captions page full width */
    .auto-captions-header {
        padding: 1.5rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .auto-captions-header h2 {
        font-size: 1.35rem;
    }

    .captions-gallery {
        padding: 0.75rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* Show mobile header */
    .mobile-header {
        display: block;
    }

    .mobile-menu-btn {
        top: 8px;
        left: 8px;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn span {
        width: 18px;
    }

    /* Adjust padding for sticky header */
    main {
        padding-top: 60px;
    }

    .dashboard-header {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .dashboard-header h1 {
        font-size: 1.35rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-card h3 {
        font-size: 0.75rem;
    }

    .stat-card p {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-orientation {
        min-height: 90px;
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .auth-container,
    .submit-container {
        padding: 1.5rem 1.25rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        box-sizing: border-box;
    }

    .submit-container h2,
    .auth-container h2 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .submit-container p,
    .auth-container p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .bento-card {
        padding: 1.25rem;
    }

    .bento-card h3 {
        font-size: 1.1rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .success-modal-content,
    .caption-modal-content {
        padding: 1.5rem 1rem;
    }

    .gallery-item img,
    .gallery-video-placeholder {
        height: 180px;
    }

    .navbar {
        max-width: 95%;
        padding: 0.35rem 0;
    }

    .nav-container {
        padding: 0.2rem 0.4rem;
        gap: 0.2rem;
    }

    .nav-logo a {
        font-size: 0.8rem;
        padding: 0.25rem 0.4rem;
    }

    .nav-logo img {
        height: 28px !important;
    }

    .nav-menu {
        gap: 0.1rem;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }

    .nav-cta-btn {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.7rem !important;
    }

    .user-info span {
        font-size: 0.85rem;
    }

    .credits {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .image-upload-zone,
    .upload-drop-zone {
        min-height: 140px;
        padding: 1rem;
    }

    .upload-icon {
        font-size: 1.75rem;
    }

    .upload-text {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .upload-hint {
        font-size: 0.7rem;
    }

    .upload-placeholder {
        padding: 0.25rem;
    }
}

/* Example Modal */
.example-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.example-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.example-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.example-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #818cf8;
    transition: all 0.3s ease;
}

.example-modal-close:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #818cf8;
    transform: rotate(90deg);
}

.example-modal-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.example-section {
    margin-bottom: 2rem;
}

.example-section:last-child {
    margin-bottom: 0;
}

.example-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.example-prompt {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.example-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.example-image {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
}

.example-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.example-image-label {
    display: block;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.example-video {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
}

.example-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.example-video-label {
    display: block;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: center;
}

.example-product-image {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
}

.example-product-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

/* Mobile responsive for example modal */
@media (max-width: 768px) {
    .example-modal {
        padding: 1rem;
    }

    .example-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }

    .example-modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-right: 2rem;
    }

    .example-section h4 {
        font-size: 1rem;
    }

    .example-images-grid {
        grid-template-columns: 1fr;
    }

    .example-videos-grid {
        grid-template-columns: 1fr;
    }

    .page-title-with-example {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .btn-example {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(66, 153, 225, 0.5);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.2);
}

.pricing-card.featured {
    border-color: rgba(66, 153, 225, 0.8);
    background: rgba(66, 153, 225, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-amount {
    margin-bottom: 0.5rem;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: #4299e1;
    line-height: 1;
}

.credits-amount {
    font-size: 1.25rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-per-credit {
    font-size: 0.9rem;
    color: #718096;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #cbd5e0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.btn-purchase {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }
}

/* ================================
   FOOTER STYLES
   ================================ */

.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-cta {
    margin-top: 1rem;
}

.footer-cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 89, 255, 0.4);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ================================
   FEATURE LANDING PAGE STYLES (Dark Theme)
   ================================ */

.feature-landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
}

/* Feature Hero Section */
.feature-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.feature-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.feature-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 1.05rem;
    color: #94a3b8;
}

.meta-divider {
    color: #64748b;
}

.feature-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-feature-primary,
.btn-feature-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-feature-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
}

.btn-feature-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.btn-feature-secondary {
    background: rgba(139, 92, 246, 0.2);
    color: #e2e8f0;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.btn-feature-secondary:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
    color: #fff;
}

/* Feature Sections */
.feature-section {
    margin-bottom: 4rem;
}

.feature-section-alt {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-left: -1rem;
    margin-right: -1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Benefits Grid */
.feature-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-benefit-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.benefit-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.feature-benefit-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* How It Works Steps */
.feature-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.feature-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.feature-step p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Use Cases Grid */
.feature-use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.use-case-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.use-case-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* CTA Section */
.feature-section-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-left: -1rem;
    margin-right: -1rem;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.feature-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #e2e8f0;
}

.feature-cta-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-cta-price {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.feature-cta-detail {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.feature-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-feature-primary-large,
.btn-feature-secondary-large {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-feature-primary-large {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.btn-feature-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.btn-feature-secondary-large {
    background: rgba(139, 92, 246, 0.2);
    color: #e2e8f0;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.btn-feature-secondary-large:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
    color: #fff;
}

.feature-cta-note {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Technical Specs Grid */
.feature-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.spec-label {
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .feature-hero {
        padding: 3rem 1.5rem;
    }

    .feature-hero-title {
        font-size: 2.5rem;
    }

    .feature-hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-section-alt {
        padding: 2rem 1.5rem;
    }

    .feature-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .feature-hero {
        padding: 2rem 1rem;
    }

    .feature-icon-large {
        font-size: 3rem;
    }

    .feature-hero-title {
        font-size: 2rem;
    }

    .feature-hero-subtitle {
        font-size: 1rem;
    }

    .feature-hero-meta {
        font-size: 0.9rem;
    }

    .btn-feature-primary,
    .btn-feature-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-section-title {
        font-size: 1.75rem;
    }

    .feature-benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-steps {
        grid-template-columns: 1fr;
    }

    .feature-use-cases {
        grid-template-columns: 1fr;
    }

    .feature-specs-grid {
        grid-template-columns: 1fr;
    }

    .feature-cta-box h2 {
        font-size: 1.75rem;
    }

    .feature-cta-buttons {
        flex-direction: column;
    }

    .btn-feature-primary-large,
    .btn-feature-secondary-large {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Feature Sample Video Styling */
.feature-sample-video {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.feature-sample-video video {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #000;
}

.feature-sample-caption {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
}

@media (max-width: 640px) {
    .feature-sample-video {
        max-width: 100%;
    }
    
    .feature-sample-video video {
        border-radius: 12px;
    }
    
    .feature-sample-caption {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.faq-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    user-select: none;
}

.faq-chevron {
    flex-shrink: 0;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Email Verification Page */
#verificationStatus {
    text-align: center;
    padding: 2rem;
}

.success-message, .error-message {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 12px;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message p {
    color: #059669;
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.error-message h3 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-message p {
    color: #dc2626;
}

.loading-spinner {
    border: 4px solid rgba(99, 102, 241, 0.1);
    border-left-color: #6366f1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Auth Message Styles */
.auth-message {
    display: none;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid;
}

.auth-message-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    border-color: #10b981;
    color: #059669;
}

.auth-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: #ef4444;
    color: #dc2626;
}

.auth-message-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    border-color: #f59e0b;
    color: #d97706;
}

/* Google Sign-In Styles */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.auth-divider span {
    padding: 0 1rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.google-signin-button {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* ==================== ADMIN DASHBOARD STYLES ==================== */

/* Admin Header */
.admin-header {
    margin-bottom: 2rem;
}

.admin-header h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 2rem;
}

.admin-tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.admin-tab-btn:hover {
    color: #3b82f6;
}

.admin-tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

/* Tab Content */
.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

/* Metrics Cards */
.metrics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.metric-card h3 {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Charts Container */
.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.chart-box h3 {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.chart-box canvas {
    height: 200px !important;
}

/* Health Section */
.health-section {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.health-section h3 {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.health-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.health-category {
    margin-bottom: 1rem;
}

.health-category h4 {
    font-size: 0.875rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.health-item {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.health-icon {
    font-size: 1.25rem;
}

.health-name {
    color: #e2e8f0;
    font-weight: 500;
}

.health-status {
    color: #94a3b8;
    font-size: 0.875rem;
}

.health-time {
    color: #64748b;
    font-size: 0.875rem;
}

/* Tab Header */
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tab-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Search and Filters */
.search-box input,
.filters input,
.filters select {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.search-box input {
    min-width: 300px;
}

.filters {
    display: flex;
    gap: 1rem;
}

.filters select,
.filters input {
    min-width: 150px;
}

/* Admin Table */
.users-table-container,
.projects-table-container {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table thead {
    background: rgba(59, 130, 246, 0.1);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.admin-table td {
    padding: 1rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-suspended {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.status-banned {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-processing,
.status-PROCESSING,
.status-submitted {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.status-failed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Buttons */
.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-edit {
    background: #3b82f6;
    color: white;
}

.btn-edit:hover {
    background: #2563eb;
}

.btn-view {
    background: #10b981;
    color: white;
}

.btn-view:hover {
    background: #059669;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e2e8f0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Credits Control */
.credits-control {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.credits-control button {
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: #3b82f6;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.credits-control button:hover {
    background: rgba(59, 130, 246, 0.3);
}

.credits-control input {
    flex: 1;
}

/* Project Detail Grid */
.project-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.detail-section h4 {
    font-size: 0.875rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-section p {
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.detail-section p:last-child {
    margin-bottom: 0;
}

.detail-section strong {
    color: #94a3b8;
}

.detail-section img {
    width: 100%;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.detail-section a {
    color: #3b82f6;
    text-decoration: none;
}

.detail-section a:hover {
    text-decoration: underline;
}

/* Loading and Empty States */
.loading,
.loading-cell,
.empty-cell,
.error-cell {
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
}

.error-cell {
    color: #ef4444;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.pagination-controls button {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 6px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-controls button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.pagination-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-controls button.active {
    background: #3b82f6;
    border-color: #3b82f6;
}

/* Help Page Styles */
.help-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.help-feature {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-feature:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(148, 163, 184, 0.3);
    transform: translateY(-2px);
}

.help-feature h4 {
    color: #818cf8;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.help-feature p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.help-feature p strong {
    color: #e2e8f0;
}
