* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
    /* Apple-inspired colors */
    --primary-dark: #1d1d1f;
    --primary-light: #ffffff;
    --secondary-dark: #2c2c2e;
    --accent-blue: #007aff;
    --accent-purple: #5856d6;
    --accent-green: #30d158;
    --accent-orange: #ff9500;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;

    /* Web3 colors */
    --crypto-gold: #f7931a;
    --crypto-purple: #6f42c1;
    --nft-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --web3-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #fbfbfd;
    --bg-dark: #000000;
    --bg-glass: rgba(255, 255, 255, 0.8);

    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 122, 255, 0.3);

    /* Border radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: all 0.2s ease-out;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 max(20px, 5%);
    height: 44px;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: var(--web3-gradient);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    font-size: 16px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.logo-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.logo:hover .logo-icon::before {
    opacity: 1;
}

.logo h1 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.022em;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin: 0 21px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
    opacity: 0.8;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

nav ul li a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

nav ul li a:hover::after {
    width: 100%;
}

.right-menu {
    display: flex;
    align-items: center;
}

.language-selector {
    margin-right: 16px;
    cursor: pointer;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.language-selector:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.web-app-btn a {
    background-color: var(--accent-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
}

.web-app-btn a:hover {
    background-color: #0051d5;
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 44px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 980px;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    margin-right: 8px;
    color: var(--accent-orange);
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-primary {
    background: white;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.cta-secondary {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: var(--transition-smooth);
}

.cta-secondary i {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.cta-secondary:hover {
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-icon.crypto {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    color: var(--crypto-gold);
}

.floating-icon.social {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
    color: var(--accent-blue);
}

.floating-icon.message {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
    color: var(--accent-green);
}

.floating-icon.token {
    bottom: 20%;
    right: 15%;
    animation-delay: 4.5s;
    color: var(--accent-purple);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sec
tion Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.section-header p {
    font-size: 21px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--nft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Download Section */
.download-section {
    background: var(--bg-primary);
    position: relative;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.download-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.download-container.secondary {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 0;
}

.download-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.download-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.02);
}

.download-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.download-card.featured:hover {
    transform: translateY(-12px) scale(1.04);
}

.platform-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.platform-icon {
    width: 100px;
    height: 100px;
    background: var(--web3-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.platform-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.download-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.download-card:hover .platform-icon::before {
    opacity: 1;
}

.download-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.download-card p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.download-features span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.download-features i {
    margin-right: 8px;
    color: var(--accent-green);
    font-size: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition-smooth);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.download-btn i {
    margin-right: 8px;
    font-size: 20px;
}

.download-btn.primary {
    background: var(--accent-blue);
    color: white;
    box-shadow: var(--shadow-medium);
}

.download-btn.primary:hover {
    background: #0051d5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.download-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.download-btn.secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.version-info {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Social Proof Section */
.social-proof {
    background: var(--bg-secondary);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--nft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-style: italic;
}

.user-name {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-logo i {
    width: 32px;
    height: 32px;
    background: var(--web3-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.5;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1068px) {
    .download-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 734px) {
    header {
        padding: 0 20px;
    }

    nav ul li {
        margin: 0 12px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats {
        gap: 40px;
    }

    .download-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .download-card {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    nav {
        display: none;
    }

    .right-menu {
        gap: 12px;
    }

    .platform-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .download-features {
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Load
ing animation for download buttons */
.download-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.download-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Intersection Observer animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects for Web3 elements */
.crypto-glow {
    position: relative;
    overflow: hidden;
}

.crypto-glow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--crypto-gold), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-glow:hover::before {
    opacity: 0.1;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Particle effect for hero section */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Success message for downloads */
.download-success {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.download-success.show {
    transform: translateX(0);
}

.download-success i {
    margin-right: 8px;
}
