:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: rgba(226, 232, 240, 0.8);
    --shadow-soft: 0 10px 40px -10px rgba(79, 70, 229, 0.08);
    --shadow-premium: 0 20px 80px -20px rgba(79, 70, 229, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);

    --font-display: 'Sora', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.5rem 0;
}

nav.scrolled {
    padding: 0.25rem 0;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.9);
}

.nav-c.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.2);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.01em;
    position: relative;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 12rem 2rem 8rem;
    background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 L40 0" stroke="rgba(79, 70, 229, 0.03)" stroke-width="1" fill="none"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    max-width: 580px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.3);
    background: var(--primary);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Trust Badges */
.trust-badges {
    padding: 3rem 2rem;
    background: white;
    border-bottom: 1px solid var(--border);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 10rem 2rem;
    background: var(--bg-light);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.features-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(4deg);
    border-color: transparent;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Showcase Section */
.showcase {
    padding: 12rem 0;
    background: #020617;
    overflow: hidden;
    position: relative;
}

.showcase::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Premium iPhone Frame */
.iphone-frame {
    width: 290px;
    height: 590px;
    background: #111;
    border-radius: 54px;
    padding: 12px;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #111;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

/* Universal screenshot carousel */
.screenshot-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.screenshot-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-carousel img.active {
    opacity: 1;
}

/* Screenshots Section */
.screenshots {
    padding: 10rem 2rem;
    background: var(--bg-white);
}

.screenshots-grid {
    max-width: 1300px;
    margin: 4rem auto 0;
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 2rem 1rem 5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.screenshots-grid::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 320px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-white);
    scroll-snap-align: center;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-soft);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.screenshot-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

/* Watch Section */
.watch-section {
    padding: 12rem 2rem;
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
}

.watch-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.watch-header h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #fff, #64748b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.watch-header p {
    font-size: 1.35rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 8rem;
    line-height: 1.8;
}

.watch-grid {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding: 2rem 1rem 5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    perspective: 1200px;
    justify-content: flex-start;
}

.watch-grid::-webkit-scrollbar {
    display: none;
}

.watch-item {
    flex: 0 0 240px;
    scroll-snap-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-item:hover {
    transform: translateY(-20px) scale(1.05);
}

.watch-frame {
    background: #111;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.watch-screen {
    background: black;
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.watch-item:hover .watch-screen img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .watch-grid {
        gap: 1.5rem;
    }

    .watch-item {
        flex: 0 0 180px;
    }
}

/* Download Section */
.download {
    padding: 12rem 2rem;
    background: #020617;
    color: white;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(79, 71, 229, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.download-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.download h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download p {
    font-size: 1.35rem;
    margin-bottom: 6rem;
    opacity: 0.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.download-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 5rem 3rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.download-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 60px 120px -20px rgba(79, 70, 229, 0.25),
        0 0 40px rgba(79, 70, 229, 0.1);
}

.download-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.qr-code {
    width: 240px;
    height: 240px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 auto 3.5rem;
}

.download-links {
    margin-top: 1rem;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-badge:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.web-access {
    display: inline-block;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 6rem;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.web-access:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 10rem 2rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

.footer-about h3 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, white, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about p {
    opacity: 0.6;
    line-height: 1.9;
    font-size: 1.15rem;
    max-width: 380px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: white;
    opacity: 0.5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(6px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.4;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 400px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-options {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* Verification Success Popup */
.verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease-out;
}

.verification-overlay.show {
    display: flex;
}

.verification-popup {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 4rem 3rem;
    max-width: 500px;
    width: 92%;
    text-align: center;
    box-shadow: var(--shadow-premium);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid var(--border);
}

.verification-popup .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes successIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    }
}

@keyframes errorIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
    }
}

.verification-popup .success-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    animation: successIconPulse 1.5s ease infinite;
}

.verification-popup .error-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
    animation: errorIconPulse 1.5s ease infinite;
}

.verification-popup h2 {
    font-family: var(--font-display);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.verification-popup p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.confetti {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}