/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0f;
    --secondary-bg: #12121a;
    --card-bg: #1a1a24;
    --primary-accent: #6366f1;
    --secondary-accent: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --border-color: #2a2a3a;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --glow-color: rgba(99, 102, 241, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== LOADING SCREEN ========== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-top-color: var(--primary-accent);
    border-right-color: var(--secondary-accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== CUSTOM CURSOR ========== */
.cursor-follower {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
}

/* ========== PARTICLE CANVAS ========== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    will-change: background, box-shadow;
    transform: translate3d(0, 0, 0);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
    will-change: color;
    transform: translate3d(0, 0, 0);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 100;
}

.nav-buttons > * {
    position: relative;
    z-index: 101;
}

/* Wallet Balance Display */
.wallet-balance-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
}

.balance-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.balance-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.balance-divider {
    width: 1px;
    height: 32px;
    background: rgba(99, 102, 241, 0.3);
}

/* Connected Wallet Info */
.wallet-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-address-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wallet-address-btn:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-1px);
}

.wallet-icon-small {
    width: 16px;
    height: 16px;
}

/* ========== LANGUAGE SWITCHER (OPTIMIZED) ========== */
.language-switcher {
    display: flex;
    gap: 0.25rem;
    background: var(--card-bg);
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    will-change: background, color, transform;
    transform: translate3d(0, 0, 0);
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.lang-btn.active {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.lang-btn:active {
    transform: scale(0.95);
}

/* ========== BUTTONS (OPTIMIZED) ========== */
.btn-primary, .btn-secondary, .btn-outline, .btn-large {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translate3d(0, 0, 0);
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 102;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

/* Wallet Icon in Connect Button */
.btn-primary .wallet-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover .wallet-icon {
    transform: scale(1.1) rotate(5deg);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--secondary-bg);
    border-color: var(--primary-accent);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-accent);
}

.btn-outline:hover {
    background: var(--primary-accent);
    box-shadow: 0 0 20px var(--glow-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    position: relative;
    animation: glitch 5s infinite;
}

.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-title::before {
    animation: glitchTop 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    -webkit-text-fill-color: rgba(99, 102, 241, 0.5);
}

.hero-title::after {
    animation: glitchBottom 2.5s infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    -webkit-text-fill-color: rgba(139, 92, 246, 0.5);
}

@keyframes glitchTop {
    2%, 64% {
        transform: translate(2px, -2px);
    }
    4%, 60% {
        transform: translate(-2px, 2px);
    }
    62% {
        transform: translate(13px, -1px) skew(-13deg);
    }
}

@keyframes glitchBottom {
    2%, 64% {
        transform: translate(-2px, 0);
    }
    4%, 60% {
        transform: translate(-2px, 0);
    }
    62% {
        transform: translate(-22px, 5px) skew(21deg);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    min-height: 2rem;
}

/* Typewriter Effect */
.typewriter::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ========== SECTIONS ========== */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* ========== CORE HIGHLIGHTS ========== */
.core-highlights {
    background: var(--secondary-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.highlight-card:hover .card-shine {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    border-color: var(--primary-accent);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
    position: relative;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.animated-icon {
    transition: all 0.3s ease;
}

.highlight-card:hover .animated-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--glow-color));
}

.rotating {
    animation: rotateIcon 3s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pulse {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== ECOSYSTEM PRODUCTS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-accent);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4),
                0 0 40px rgba(139, 92, 246, 0.3),
                inset 0 0 30px rgba(99, 102, 241, 0.1);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(99, 102, 241, 0.12) 100%);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ========== PRODUCT ICON SVG (NEW COOL DESIGN) ========== */
.product-icon-svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-icon-svg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-icon-svg svg {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 8px 30px rgba(99, 102, 241, 0.5));
}

/* Icon animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.3)); }
    50% { filter: drop-shadow(0 4px 30px rgba(99, 102, 241, 0.6)); }
}

.icon-animated {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Diamond animation */
.diamond {
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
}

/* Wallet animation */
.wallet {
    animation: float 3.5s ease-in-out infinite;
}

/* Bridge animation */
.bridge {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 2s ease-in-out infinite alternate;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Card animation */
.card {
    animation: float 3.2s ease-in-out infinite;
}

/* Chart animation */
.chart {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: chart-draw 3s ease-in-out infinite;
}

@keyframes chart-draw {
    0% { stroke-dashoffset: 300; }
    100% { stroke-dashoffset: 0; }
}

/* Bank animation */
.bank {
    animation: float 3.8s ease-in-out infinite;
}

/* Chain link animation */
.chain-link {
    animation: pulse-size 2s ease-in-out infinite;
}

@keyframes pulse-size {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chain-link:nth-child(2) {
    animation-delay: 0.2s;
}

.chain-link:nth-child(3) {
    animation-delay: 0.4s;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

/* ========== ROADMAP ========== */
.roadmap {
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

/* Roadmap background effects */
.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Roadmap phase container */
.roadmap-phase {
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.roadmap-phase:nth-child(1) { animation-delay: 0.1s; }
.roadmap-phase:nth-child(2) { animation-delay: 0.2s; }
.roadmap-phase:nth-child(3) { animation-delay: 0.3s; }
.roadmap-phase:nth-child(4) { animation-delay: 0.4s; }
.roadmap-phase:nth-child(5) { animation-delay: 0.5s; }
.roadmap-phase:nth-child(6) { animation-delay: 0.6s; }
.roadmap-phase:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phase header */
.phase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Phase badges */
.phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

/* Completed badge - green theme */
.completed-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.completed-badge .badge-icon {
    color: #10b981;
}

/* Active badge - purple/gold theme */
.active-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    animation: pulse-glow 2s ease-in-out infinite;
}

.active-badge .badge-icon {
    color: #ffd700;
    animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(139, 92, 246, 0.5);
    }
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Upcoming badge - blue theme */
.upcoming-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.upcoming-badge .badge-icon {
    color: #60a5fa;
}

/* Future badge - gray theme */
.future-badge {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.2), rgba(75, 85, 99, 0.2));
    border: 1px solid rgba(107, 114, 128, 0.4);
    color: #9ca3af;
}

.future-badge .badge-icon {
    color: #9ca3af;
}

/* Phase title */
.phase-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.phase-quarter {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.phase-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Phase content */
.phase-content {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.6), rgba(20, 20, 30, 0.6));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.phase-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roadmap-phase:hover .phase-content::before {
    opacity: 1;
}

.roadmap-phase:hover .phase-content {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    transform: translateY(-5px);
}

/* Completed phase styling */
.roadmap-phase.completed .phase-content {
    border-color: rgba(16, 185, 129, 0.3);
}

.roadmap-phase.completed .phase-content::before {
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.roadmap-phase.completed:hover .phase-content {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

/* Active phase styling */
.roadmap-phase.active .phase-content {
    border-color: rgba(139, 92, 246, 0.4);
}

.roadmap-phase.active .phase-content::before {
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.roadmap-phase.active:hover .phase-content {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

/* Milestone list */
.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.milestone-item:hover::before {
    opacity: 1;
}

/* Completed milestone */
.milestone-item.completed {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
}

.milestone-item.completed::before {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.6), rgba(5, 150, 105, 0.6));
}

.milestone-item.completed:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.milestone-item.completed .milestone-icon {
    filter: grayscale(0);
    opacity: 1;
}

/* Active milestone */
.milestone-item.active {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.milestone-item.active::before {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), rgba(99, 102, 241, 0.6));
    opacity: 1;
}

.milestone-item.active:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
}

.milestone-item.active .milestone-icon {
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Pending milestone */
.milestone-item.pending {
    opacity: 0.7;
}

.milestone-item.pending .milestone-icon {
    opacity: 0.6;
}

.milestone-item.pending:hover {
    opacity: 1;
}

/* Milestone icon */
.milestone-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-item:hover .milestone-icon {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Milestone text */
.milestone-item span:not(.milestone-icon) {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.milestone-item.completed span:not(.milestone-icon) {
    color: rgba(255, 255, 255, 0.85);
}

.milestone-item.active span:not(.milestone-icon) {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .phase-quarter {
        font-size: 1.5rem;
    }

    .phase-name {
        font-size: 1.1rem;
    }

    .phase-content {
        padding: 1.5rem;
    }

    .milestone-list {
        grid-template-columns: 1fr;
    }

    .roadmap-phase {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .phase-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .phase-quarter {
        font-size: 1.3rem;
    }

    .phase-name {
        font-size: 1rem;
    }

    .phase-content {
        padding: 1.25rem;
    }

    .milestone-item {
        padding: 0.875rem;
    }

    .milestone-icon {
        font-size: 1.3rem;
    }

    .milestone-item span:not(.milestone-icon) {
        font-size: 0.875rem;
    }
}

/* ========== PARTNERS ========== */
.partners {
    padding: 6rem 0;
    background: var(--primary-bg);
    overflow: hidden;
}

.partners .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-bg) 0%, transparent 100%);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--primary-bg) 100%);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll-partners 40s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    flex-shrink: 0;
    width: 220px;
}

.partner-logo {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    z-index: 1;
}

.partner-type {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    z-index: 1;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, var(--primary-accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.partner-logo:hover::before {
    opacity: 0.1;
}

/* 品牌配色 */
.partner-logo.binance .partner-name {
    background: linear-gradient(135deg, #F3BA2F 0%, #F0B90B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.binance:hover {
    border-color: #F3BA2F;
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.3);
}

.partner-logo.okx .partner-name {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fff;
}

.partner-logo.okx:hover {
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.partner-logo.coinbase .partner-name {
    background: linear-gradient(135deg, #0052FF 0%, #0041CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.coinbase:hover {
    border-color: #0052FF;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
}

.partner-logo.bybit .partner-name {
    background: linear-gradient(135deg, #F7A600 0%, #E09600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.bybit:hover {
    border-color: #F7A600;
    box-shadow: 0 10px 30px rgba(247, 166, 0, 0.3);
}

.partner-logo.uniswap .partner-name {
    background: linear-gradient(135deg, #FF007A 0%, #FF0066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.uniswap:hover {
    border-color: #FF007A;
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.3);
}

.partner-logo.curve .partner-name {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.curve:hover {
    border-color: #00D4AA;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.partner-logo.aave .partner-name {
    background: linear-gradient(135deg, #B6509E 0%, #9D4185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.aave:hover {
    border-color: #B6509E;
    box-shadow: 0 10px 30px rgba(182, 80, 158, 0.3);
}

.partner-logo.compound .partner-name {
    background: linear-gradient(135deg, #00D395 0%, #00B87C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.compound:hover {
    border-color: #00D395;
    box-shadow: 0 10px 30px rgba(0, 211, 149, 0.3);
}

.partner-logo.chainlink .partner-name {
    background: linear-gradient(135deg, #2A5ADA 0%, #1F47B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.chainlink:hover {
    border-color: #2A5ADA;
    box-shadow: 0 10px 30px rgba(42, 90, 218, 0.3);
}

.partner-logo.polygon .partner-name {
    background: linear-gradient(135deg, #8247E5 0%, #6B3BC3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.polygon:hover {
    border-color: #8247E5;
    box-shadow: 0 10px 30px rgba(130, 71, 229, 0.3);
}

.partner-logo.arbitrum .partner-name {
    background: linear-gradient(135deg, #28A0F0 0%, #1F8AD6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.arbitrum:hover {
    border-color: #28A0F0;
    box-shadow: 0 10px 30px rgba(40, 160, 240, 0.3);
}

.partner-logo.thegraph .partner-name {
    background: linear-gradient(135deg, #6F4CFF 0%, #5838E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.thegraph:hover {
    border-color: #6F4CFF;
    box-shadow: 0 10px 30px rgba(111, 76, 255, 0.3);
}

.partner-logo.metamask .partner-name {
    background: linear-gradient(135deg, #F6851B 0%, #E2761B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.metamask:hover {
    border-color: #F6851B;
    box-shadow: 0 10px 30px rgba(246, 133, 27, 0.3);
}

.partner-logo.trustwallet .partner-name {
    background: linear-gradient(135deg, #3375BB 0%, #2A5F99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.trustwallet:hover {
    border-color: #3375BB;
    box-shadow: 0 10px 30px rgba(51, 117, 187, 0.3);
}

.partner-logo.walletconnect .partner-name {
    background: linear-gradient(135deg, #3B99FC 0%, #2A7FD6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-logo.walletconnect:hover {
    border-color: #3B99FC;
    box-shadow: 0 10px 30px rgba(59, 153, 252, 0.3);
}

/* ========== FOOTER ========== */
/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a24 100%);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.5) 20%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(99, 102, 241, 0.5) 80%,
        transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* 左侧品牌区域 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-img {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 20px rgba(99, 102, 241, 0.5));
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* 社交图标 */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.social-icon:hover svg {
    color: #a78bfa;
}

/* 右侧链接网格 */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    position: relative;
}

/* SVG 图标样式 */
.footer-column a .link-icon-svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 0.8;
    filter: drop-shadow(0 0 0 transparent);
}

/* Emoji 图标样式（向后兼容） */
.footer-column a .link-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-column a:hover {
    color: #a78bfa;
    transform: translateX(4px);
}

.footer-column a:hover .link-icon {
    transform: scale(1.2);
}

.footer-column a:hover .link-icon-svg {
    opacity: 1;
    transform: scale(1.15) translateX(2px);
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.6));
}

/* 产品栏图标特殊效果 */
.footer-column:nth-child(1) a:hover .link-icon-svg {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* 开发者栏图标特殊效果 */
.footer-column:nth-child(2) a:hover .link-icon-svg {
    color: #60a5fa;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

/* 社区栏图标特殊效果 */
.footer-column:nth-child(3) a:hover .link-icon-svg {
    color: #a78bfa;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

/* 资源栏图标特殊效果 */
.footer-column:nth-child(4) a:hover .link-icon-svg {
    color: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

/* 底部版权区域 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a,
.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover,
.footer-bottom-right a:hover {
    color: #a78bfa;
}

.footer-bottom p {
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-left {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-img {
        width: 200px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
    body {
        cursor: auto;
    }

    .cursor-follower {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .footer-logo-img {
        width: 240px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-marker {
        left: 1px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .highlights-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .footer-logo-img {
        width: 200px;
    }

    .shape {
        display: none;
    }
}
