/* Modern Avatar Creator Page Styles */
:root {
    --primary-color: #00D4FF;
    --secondary-color: #FF6B9D;
    --accent-color: #A855F7;
    --tertiary-color: #34D399;
    --dark-color: #0F172A;
    --light-color: #F8FAFC;
    --text-color: #F1F5F9;
    --bg-primary: #020617;
    --bg-secondary: #0F172A;
    --card-bg: #1E293B;
    --border-color: #334155;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 16px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 157, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(10px) rotate(240deg);
        opacity: 0.6;
    }
}

/* Modern Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background:
        rgba(2, 6, 23, 0.96),
        url('VRChat-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.4);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .header {
    background:
        rgba(13, 17, 23, 0.95),
        url('https://i0.wp.com/www.oqplay.com/wp-content/uploads/2019/03/VRChat-banner.jpg?fit=1024%2C341&ssl=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(48, 54, 61, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
    margin: 0;
}

.nav-logo h1:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.nav-logo .fa-magic {
    color: var(--primary-color);
    animation: magic-glow 2s ease-in-out infinite alternate;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: #FFD700;
    font-weight: 500;
    margin-left: 6px;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 16px;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes magic-glow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(127, 179, 213, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(127, 179, 213, 0.8));
    }
}

/* Showcase Hero Section */
.showcase-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%),
        url('wallpaper2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.showcase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    animation: showcase-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes showcase-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(-10px, -10px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translate(10px, 10px) rotate(240deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 25px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(15px, -15px) rotate(270deg);
        opacity: 0.9;
    }
}

.showcase-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.back-link {
    margin-bottom: 2rem;
}

.back-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.back-link a:hover {
    color: white;
}

.showcase-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    color: var(--dark-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow:
        0 10px 30px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(255, 107, 157, 0.3);
    animation: none;
}

.btn-secondary-large {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-video-bg {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: var(--transition-fast);
    max-width: 500px;
}

.showcase-video-bg:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 25px;
    pointer-events: none;
}

/* Key Features Section */
.key-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.key-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(130, 224, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 179, 213, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: var(--transition-fast);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(127, 179, 213, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-visual {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Ultra Modern Success Stories Section */
.ultra-success-stories {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%),
        radial-gradient(circle at 20% 80%, rgba(127, 179, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(130, 224, 170, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.ultra-success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(127, 179, 213, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(130, 224, 170, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(215, 189, 226, 0.06) 0%, transparent 40%);
    animation: stories-float-ultra 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes stories-float-ultra {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(60px, -40px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(-40px, 50px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(50px, -30px) rotate(270deg);
        opacity: 0.6;
    }
}

.stories-header-modern {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.stories-header-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.stories-header-modern p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.accent-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 1px;
}

.accent-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    animation: accent-pulse 2s ease-in-out infinite;
}

@keyframes accent-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-color);
    }
    50% {
        transform: scale(1.5);
        box-shadow: 0 0 30px var(--primary-color);
    }
}

.stories-top-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.stories-bottom-row {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 5rem;
}

.centered-card {
    max-width: 420px;
    width: 100%;
}

.story-card-ultra {
    position: relative;
    perspective: 2000px;
    height: 450px;
}

.card-wrapper-ultra {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    cursor: pointer;
}

.story-card-ultra:hover .card-wrapper-ultra {
    transform: rotateY(180deg);
}

.card-front-ultra,
.card-back-ultra {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-front-ultra {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(127, 179, 213, 0.1), rgba(130, 224, 170, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-front-ultra:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 60px rgba(127, 179, 213, 0.2);
}

.card-back-ultra {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
        linear-gradient(145deg, rgba(215, 189, 226, 0.12), rgba(127, 179, 213, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card-visual-ultra {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.visual-container-ultra {
    position: relative;
    width: 120px;
    height: 120px;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    background: var(--secondary-color);
}

.particle-3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
    background: var(--accent-color);
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.main-icon-ultra {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow:
        0 10px 30px rgba(127, 179, 213, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

@keyframes icon-glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.card-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 12px rgba(215, 189, 226, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-content-ultra {
    padding: 2rem;
    text-align: center;
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.content-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.category-badge {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(127, 179, 213, 0.3);
}

.card-content-ultra p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.back-content {
    text-align: center;
    width: 100%;
}

.back-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.back-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.back-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.back-features li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.back-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(127, 179, 213, 0.3);
}

.back-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 179, 213, 0.5);
}

/* Interactive Stats */
.stories-stats-modern {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-metric {
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(127, 179, 213, 0.3);
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: var(--transition-fast);
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(127, 179, 213, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(127, 179, 213, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(127, 179, 213, 0.2), rgba(130, 224, 170, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    border: 2px solid rgba(127, 179, 213, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.step-btn, .step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.step-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(127, 179, 213, 0.3);
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 179, 213, 0.4);
}

.step-link {
    color: var(--primary-color);
    border: 1px solid rgba(127, 179, 213, 0.3);
    background: rgba(127, 179, 213, 0.1);
}

.step-link:hover {
    background: rgba(127, 179, 213, 0.2);
    border: 1px solid rgba(127, 179, 213, 0.5);
    color: white;
}

/* Avatar Slider */
.avatar-slider {
    margin: 1.5rem 0;
    position: relative;
}

.avatar-slides {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.avatar-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 15px;
}

.avatar-slide.active {
    opacity: 1;
}

.avatar-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(127, 179, 213, 0.5);
}

/* Personalization Video */
.personalization-video {
    margin: 1.5rem 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.personalize-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.video-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-caption i {
    color: var(--primary-color);
}

/* Phone Mockup */
.phone-mockup {
    margin: 1.5rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    width: 120px;
    height: auto;
    position: relative;
    z-index: 2;
}

.phone-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.selfie-interface {
    width: 80px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Ultra Modern Avatar Showcase Section */
.avatar-showcase {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%),
        radial-gradient(circle at 20% 80%, rgba(127, 179, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(130, 224, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(215, 189, 226, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.avatar-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(127, 179, 213, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(130, 224, 170, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(215, 189, 226, 0.08) 0%, transparent 40%);
    animation: showcase-float-ultra 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes showcase-float-ultra {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(50px, -30px) rotate(120deg);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, 40px) rotate(240deg);
        opacity: 0.9;
    }
    75% {
        transform: translate(40px, -20px) rotate(360deg);
        opacity: 0.7;
    }
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Hero Avatar Display */
.hero-avatar-display {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.main-avatar-container {
    position: relative;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        linear-gradient(145deg, rgba(127, 179, 213, 0.1), rgba(130, 224, 170, 0.08));
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 100px rgba(127, 179, 213, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-avatar-container:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 150px rgba(127, 179, 213, 0.2);
}

.avatar-display-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.avatar-slides-ultra {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
}

.avatar-slide-ultra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.avatar-slide-ultra.active {
    opacity: 1;
    transform: scale(1);
}

.avatar-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(127, 179, 213, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(130, 224, 170, 0.2) 0%, transparent 50%);
    animation: avatar-glow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes avatar-glow {
    0% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0.6;
        transform: rotate(180deg);
    }
}

.avatar-info-card {
    margin-top: 2rem;
    text-align: center;
    position: relative;
}

.avatar-description-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 2;
}

.avatar-description-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

/* Interactive Elements */
.interactive-elements {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Phone Demo Modern */
.phone-demo-modern {
    flex: 1;
}

.phone-card-modern {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(127, 179, 213, 0.08), rgba(130, 224, 170, 0.06));
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.phone-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 50px rgba(127, 179, 213, 0.1);
}

.phone-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phone-header-modern i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(127, 179, 213, 0.2), rgba(130, 224, 170, 0.15));
    padding: 0.75rem;
    border-radius: 50%;
    border: 1px solid rgba(127, 179, 213, 0.3);
}

.phone-header-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.phone-mockup-ultra {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image-ultra {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    transition: all 0.6s ease;
    opacity: 0.8;
}

.phone-screen-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.selfie-interface-ultra {
    width: 100px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.capture-animation {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capture-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: capture-pulse 2s ease-in-out infinite;
}

.capture-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes capture-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Video Demo Modern */
.video-demo-modern {
    flex: 1;
}

.video-card-modern {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(215, 189, 226, 0.08), rgba(130, 224, 170, 0.06));
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.video-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 50px rgba(215, 189, 226, 0.1);
}

.video-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.video-header-modern i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(215, 189, 226, 0.2), rgba(130, 224, 170, 0.15));
    padding: 0.75rem;
    border-radius: 50%;
    border: 1px solid rgba(215, 189, 226, 0.3);
}

.video-header-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.video-container-ultra {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.personalize-video-ultra {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    filter: brightness(1.1) contrast(1.05);
}

.video-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(215, 189, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(130, 224, 170, 0.15) 0%, transparent 50%);
    animation: video-glow 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes video-glow {
    0% {
        opacity: 0.2;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0.4;
        transform: rotate(90deg);
    }
}

.play-indicator-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(127, 179, 213, 0.4);
    animation: play-pulse-modern 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    opacity: 0.8;
}

.play-indicator-modern i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 2px;
}

@keyframes play-pulse-modern {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    }
}

/* Control Panel */
.control-panel {
    grid-column: 3;
    grid-row: 2;
}

.avatar-controls {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
        linear-gradient(145deg, rgba(215, 189, 226, 0.06), rgba(127, 179, 213, 0.04));
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avatar-controls:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.control-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.control-btn-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.control-btn-modern:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(127, 179, 213, 0.3);
}

.avatar-indicators-ultra {
    display: flex;
    gap: 1rem;
}

.indicator-ultra {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
}

.indicator-ultra.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow:
        0 0 20px rgba(127, 179, 213, 0.6),
        0 0 40px rgba(127, 179, 213, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.indicator-ultra.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: indicator-ring 2s ease-in-out infinite;
}

@keyframes indicator-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.control-info {
    text-align: center;
    position: relative;
}

.current-info-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.info-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.control-info:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: auto;
}

.tooltip-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tooltip-arrow::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.9);
}

.tooltip-arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.tooltip-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.tooltip-arrow:hover i {
    color: var(--secondary-color);
}

.tooltip-arrow span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    white-space: nowrap;
}

/* Dynamic Tooltip */
.dynamic-tooltip {
    position: fixed;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateX(-50%);
    animation: tooltip-appear 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

@keyframes tooltip-appear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Modern FAQ Section */
.modern-faq-section {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%),
        radial-gradient(circle at 20% 80%, rgba(127, 179, 213, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(130, 224, 170, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(215, 189, 226, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.faq-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.faq-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-header-modern p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.faq-card-modern {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(127, 179, 213, 0.06), rgba(130, 224, 170, 0.04));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.faq-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card-modern:hover::before {
    opacity: 1;
}

.faq-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 40px rgba(127, 179, 213, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(127, 179, 213, 0.3);
    position: relative;
    z-index: 2;
}

.faq-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: faq-icon-pulse 3s ease-in-out infinite;
}

@keyframes faq-icon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.faq-content-modern h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.faq-content-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(130, 224, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 179, 213, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: var(--transition-fast);
    position: relative;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.social-user {
    flex: 1;
}

.social-user h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
}

.social-user p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

.social-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}

/* Final Call to Action Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(127, 179, 213, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video Controls */
.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .showcase-header h1 {
        font-size: 2.5rem;
    }

    .showcase-features {
        align-items: flex-start;
    }

    .showcase-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .showcase-video-bg {
        transform: none;
    }

    .showcase-video {
        max-width: 100%;
    }

    /* Ultra Responsive Avatar Showcase */
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem;
    }

    .hero-avatar-display {
        grid-column: 1;
        grid-row: 1;
    }

    .interactive-elements {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        gap: 1.5rem;
    }

    .control-panel {
        grid-column: 1;
        grid-row: 3;
    }

    .main-avatar-container {
        padding: 2rem;
    }

    .avatar-slides-ultra {
        height: 350px;
    }

    .phone-demo-modern,
    .video-demo-modern {
        flex: 1;
    }

    .phone-card-modern,
    .video-card-modern,
    .avatar-controls {
        padding: 1.5rem;
    }

    .phone-image-ultra {
        width: 120px;
    }

    .selfie-interface-ultra {
        width: 75px;
    }

    .personalize-video-ultra {
        height: 150px;
    }

    .avatar-description-modern {
        text-align: center;
        font-size: 0.85rem;
    }

    /* Responsive Ultra Success Stories */
    .stories-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stories-bottom-row {
        justify-content: center;
    }

    .centered-card {
        max-width: 380px;
    }

    .story-card-ultra {
        height: 400px;
    }

    .stories-stats-modern {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .card-wrapper-ultra:hover {
        transform: none; /* Disable 3D flip on mobile */
    }

    .card-front-ultra:hover {
        transform: translateY(-10px) scale(1.01);
    }

    /* Responsive Modern FAQ */
    .faq-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .faq-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .info-tooltip {
        flex-direction: column;
        gap: 1rem;
    }

    .tooltip-arrow {
        padding: 0.75rem;
    }
}

/* Ultra Modern Particle Effects */
.showcase-hero::after,
.key-features::after,
.avatar-showcase::after,
.ultra-success-stories::after,
.modern-faq-section::after,
.social-proof::after,
.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particles-float 25s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes particles-float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100px, -100px);
    }
}

/* Button Effects */
.btn-primary-large, .btn-secondary-large, .btn-primary-large, .btn-secondary-large {
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before, .btn-secondary-large::before, .btn-primary-large::before, .btn-secondary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary-large:hover::before, .btn-secondary-large:hover::before, .btn-primary-large:hover::before, .btn-secondary-large:hover::before {
    left: 100%;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            0 10px 30px rgba(0, 212, 255, 0.4),
            0 0 40px rgba(0, 212, 255, 0.2);
    }
    50% {
        box-shadow:
            0 12px 35px rgba(255, 107, 157, 0.5),
            0 0 50px rgba(255, 107, 157, 0.3);
    }
}

/* Modern Footer */
.footer {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 12px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.social-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.social-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}
