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

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a26;
    --border: #2a2a3a;
    --border-accent: #3a3a5a;
    --primary: #7c5cfc;
    --primary-glow: rgba(124, 92, 252, 0.3);
    --accent: #00ffcc;
    --accent-glow: rgba(0, 255, 204, 0.2);
    --text: #ffffff;
    --text-muted: #8a8a9a;
    --text-success: #00ff88;
    --text-warning: #ffb700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

header {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.5px; }
.logo-text span { color: var(--accent); }

nav { display: flex; gap: 8px; }

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.header-right { display: flex; align-items: center; gap: 15px; }

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 204, 0.08);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 204, 0.15);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent);
    animation: beacon 1.8s infinite;
}

@keyframes beacon {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 40px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content { position: relative; max-width: 800px; margin: 0 auto; }

.hero-badge {
    display: inline-block;
    background: rgba(124, 92, 252, 0.15);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 92, 252, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

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

.hero-stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Sections */
.section { padding: 80px 40px; }
.section-dark { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-container { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-badge {
    display: inline-block;
    background: rgba(124, 92, 252, 0.12);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(124, 92, 252, 0.1);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.15), rgba(0, 255, 204, 0.1));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
    font-size: 1.3rem;
}

.step-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Claim Layout */
.claim-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.claim-info { padding-top: 20px; }

.claim-features {
    list-style: none;
    margin-top: 24px;
}

.claim-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.claim-features li i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 255, 204, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Claim Card */
.claim-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.claim-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.claim-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.15), rgba(0, 255, 204, 0.1));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.claim-header h2 { font-size: 1.4rem; font-weight: 800; }
.claim-subtitle { color: var(--text-muted); font-size: 0.85rem; }

.pool-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
}

.pool-header { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 8px; }
.pool-label { color: var(--text-muted); }
.pool-value { font-weight: 700; color: var(--accent); }

.progress-bar-bg { width: 100%; height: 8px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; overflow: hidden; }

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.action-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #9b6eff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 92, 252, 0.3);
    transition: all 0.2s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 92, 252, 0.5);
}

/* Wallet Grid */
.wallet-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 8px;
}

.wallet-grid-v2::-webkit-scrollbar { width: 5px; }
.wallet-grid-v2::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

.wallet-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    animation: wallet-fade-in 0.3s ease-out;
}

@keyframes wallet-fade-in {
    0% { opacity: 0; transform: translateX(-8px); }
    100% { opacity: 1; transform: translateX(0); }
}

.wallet-row:nth-child(1) { animation-delay: 0s; }
.wallet-row:nth-child(2) { animation-delay: 0.03s; }
.wallet-row:nth-child(3) { animation-delay: 0.06s; }
.wallet-row:nth-child(4) { animation-delay: 0.09s; }
.wallet-row:nth-child(5) { animation-delay: 0.12s; }
.wallet-row:nth-child(6) { animation-delay: 0.15s; }
.wallet-row:nth-child(7) { animation-delay: 0.18s; }
.wallet-row:nth-child(8) { animation-delay: 0.21s; }
.wallet-row:nth-child(9) { animation-delay: 0.24s; }
.wallet-row:nth-child(10) { animation-delay: 0.27s; }
.wallet-row:nth-child(11) { animation-delay: 0.3s; }
.wallet-row:nth-child(12) { animation-delay: 0.33s; }
.wallet-row:nth-child(13) { animation-delay: 0.36s; }

.wallet-row:hover {
    background: rgba(124, 92, 252, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.wallet-left { display: flex; align-items: center; gap: 12px; }

.wallet-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.wallet-name { font-weight: 600; font-size: 0.95rem; }

.wallet-badge {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid var(--border);
}

.wallet-badge.popular { background: rgba(0, 255, 204, 0.08); color: var(--accent); border-color: rgba(0, 255, 204, 0.15); }
.wallet-badge.mobile { background: rgba(124, 92, 252, 0.08); color: var(--primary); border-color: rgba(124, 92, 252, 0.15); }
.wallet-badge.solana { background: rgba(0, 200, 255, 0.08); color: #00c8ff; border-color: rgba(0, 200, 255, 0.15); }
.wallet-badge.hardware { background: rgba(255, 180, 0, 0.08); color: #ffb400; border-color: rgba(255, 180, 0, 0.15); }
.wallet-badge.multi-chain { background: rgba(100, 200, 100, 0.08); color: #64c864; border-color: rgba(100, 200, 100, 0.15); }
.wallet-badge.browser { background: rgba(50, 150, 250, 0.08); color: #3296fa; border-color: rgba(50, 150, 250, 0.15); }
.wallet-badge.desktop { background: rgba(200, 100, 200, 0.08); color: #c864c8; border-color: rgba(200, 100, 200, 0.15); }
.wallet-badge.smart { background: rgba(100, 100, 250, 0.08); color: #6464fa; border-color: rgba(100, 100, 250, 0.15); }
.wallet-badge.multi-sig { background: rgba(250, 100, 50, 0.08); color: #fa6432; border-color: rgba(250, 100, 50, 0.15); }

/* Wallet Search */
.wallet-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.wallet-search-container:focus-within { border-color: var(--primary); }
.wallet-search-container i { color: var(--text-muted); }
.wallet-search-container input {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.wallet-search-container input::placeholder { color: var(--text-muted); }

/* Back Button */
.back-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.back-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--primary); color: var(--text); }

/* Success Screen */
.success-screen-v2 {
    text-align: center;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    animation: fadeIn 0.4s ease-out;
}

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

.success-animation {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 255, 204, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.success-glow-icon {
    font-size: 2.5rem;
    color: var(--text-success);
    animation: success-bounce 0.8s ease-out;
}

@keyframes success-bounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.success-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 16px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--accent);
    border: 1px solid rgba(0, 255, 204, 0.15);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.success-progress { width: 100%; }
.success-progress .progress-bar-bg { height: 5px; }
.success-progress .progress-bar-fill { height: 100%; }

/* Claim Screen */
.claim-screen {
    text-align: center;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 204, 0.15);
    animation: fadeIn 0.4s ease-out;
}

.claim-prize-animation {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.12), rgba(255, 100, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.15);
}

.prize-glow-icon { font-size: 2.2rem; color: #ffb400; animation: success-bounce 0.8s ease-out; }

.prize-box {
    background: rgba(255, 180, 0, 0.04);
    border: 1px solid rgba(255, 180, 0, 0.12);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 260px;
}

.prize-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.prize-amount { font-size: 1.8rem; font-weight: 800; color: #ffb400; }
.prize-usd { font-size: 0.85rem; color: var(--text-muted); }

.timer-box { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
.timer-label { font-size: 0.8rem; color: var(--text-muted); }

.timer-display {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--accent);
    letter-spacing: 3px;
}

.timer-sub { font-size: 0.75rem; color: var(--text-success); font-weight: 600; }

.timer-progress-bg { height: 6px; width: 100%; max-width: 260px; background: rgba(255, 255, 255, 0.05); border-radius: 3px; overflow: hidden; }

.timer-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 1s linear;
}

.claim-status {
    font-size: 0.8rem;
    color: var(--text-success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.04);
    width: 100%;
    justify-content: center;
}

/* Chain Selector */
.chain-selector { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.chain-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.chain-buttons { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

.chain-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.chain-btn:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); }

.chain-btn.active {
    background: rgba(0, 255, 204, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.chain-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.eth-dot { background: #627EEA; }
.bnb-dot { background: #F0B90B; }
.usdt-dot { background: #26A17B; }
.usdc-dot { background: #2775CA; }
.matic-dot { background: #8247E5; }
.avax-dot { background: #E84142; }

/* Detail List */
.detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.detail-name { color: var(--text-muted); }
.detail-value { font-weight: 600; }
.detail-value.success { color: var(--text-success); }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Live Logs */
.live-logs-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.logs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.logs-indicator { display: flex; align-items: center; gap: 6px; color: var(--text-success); font-size: 0.8rem; }

.logs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 120px;
    overflow-y: hidden;
}

.log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    border: 1px solid var(--border);
    animation: slide-in-top 0.4s ease-out;
}

@keyframes slide-in-top {
    0% { transform: translateY(-8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.log-address { font-family: monospace; color: var(--text-muted); }
.log-amount { font-weight: 600; color: var(--accent); }

/* Footer */
footer {
    border-top: 1px solid var(--border);
    background: rgba(10, 10, 15, 0.9);
    padding: 30px 40px;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.security-badges { display: flex; gap: 12px; color: var(--text-success); font-size: 0.75rem; font-weight: 600; }

.security-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 255, 136, 0.04);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.08);
}

/* TVL Bar */
.tvl-bar {
    background: linear-gradient(90deg, rgba(124, 92, 252, 0.08), rgba(0, 255, 204, 0.06));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    text-align: center;
}

.tvl-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tvl-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tvl-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Partner Grid */
.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 24px;
    transition: all 0.2s;
}

.partner-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.partner-card i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.partner-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
}

.team-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.team-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Verify Badges */
.verify-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.verify-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-success);
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Confetti Animation */
.confetti-piece {
    position: fixed;
    top: -20px;
    z-index: 9999;
    pointer-events: none;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(105vh) rotate(720deg); opacity: 0; }
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet: max-width 1024px */
@media (max-width: 1024px) {
    header { padding: 12px 24px; }
    .hero { padding: 80px 24px 60px; }
    .hero-title { font-size: 42px; }
    .section { padding: 60px 24px; }
    .section-title { font-size: 28px; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .step-card { padding: 24px; }
    .claim-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
    .claim-card { padding: 24px; }
    .faq-grid { gap: 12px; }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
    header { padding: 10px 16px; flex-wrap: wrap; gap: 10px; }
    .logo-text { font-size: 1.1rem; }
    .logo-icon { font-size: 1.3rem; }
    nav { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
    nav::-webkit-scrollbar { display: none; }
    .nav-link { font-size: 0.8rem; padding: 6px 12px; white-space: nowrap; }
    .header-right { gap: 10px; }

    .hero { padding: 60px 16px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-stat-value { font-size: 20px; }

    .section { padding: 40px 16px; }
    .section-title { font-size: 22px; }
    .section-desc { font-size: 0.9rem; }

    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-card { padding: 24px; }

    .claim-layout { grid-template-columns: 1fr; gap: 24px; }
    .claim-info { text-align: center; padding-top: 0; order: -1; }
    .claim-features { text-align: center; }
    .claim-features li { justify-content: center; }
    .claim-card { padding: 20px; }

    .faq-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { gap: 12px; }
    .tvl-bar { padding: 12px 16px; }
    .tvl-value { font-size: 1.2rem; }
    .wallet-grid-v2 { grid-template-columns: 1fr; max-height: 320px; }

    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .hero-bg-glow { width: 400px; height: 400px; top: -150px; }
}

/* Small Mobile: max-width 480px */
@media (max-width: 480px) {
    header { padding: 8px 12px; }
    .hero { padding: 40px 12px; }
    .hero-title { font-size: 24px; }
    .hero-badge { font-size: 0.75rem; padding: 4px 14px; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-stats { gap: 12px; }
    .hero-stat-value { font-size: 18px; }
    .hero-stat-label { font-size: 0.75rem; }

    .section { padding: 32px 12px; }
    .section-title { font-size: 20px; }
    .section-badge { font-size: 0.7rem; }

    .step-card { padding: 20px 16px; }
    .step-title { font-size: 1rem; }
    .step-desc { font-size: 0.8rem; }
    .step-icon { width: 44px; height: 44px; font-size: 1.1rem; }

    .claim-card { padding: 16px; gap: 14px; }
    .action-btn { font-size: 0.9rem; padding: 14px; }

    .wallet-row { padding: 12px 14px; }
    .wallet-name { font-size: 0.85rem; }

    .faq-item { padding: 16px; }
    .faq-item h3 { font-size: 0.9rem; }
    .faq-item p { font-size: 0.8rem; }

    .team-grid { grid-template-columns: 1fr; }
    .partner-card { padding: 10px 16px; }
    .partner-card span { font-size: 0.85rem; }

    footer { padding: 20px 12px; font-size: 0.75rem; }
}

/* ==============================================
   TOUCH OPTIMIZATIONS
   ============================================== */

.action-btn {
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.wallet-row {
    min-height: 52px;
    padding: 16px 18px;
    -webkit-tap-highlight-color: transparent;
}

.chain-btn {
    min-height: 40px;
    min-width: 60px;
    -webkit-tap-highlight-color: transparent;
}

.back-btn {
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

button, .nav-link {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
    font-size: 16px;
}

/* ==============================================
   iOS SAFARI & MOBILE WALLET IN-APP BROWSERS
   ============================================== */

@supports (-webkit-touch-callout: none) {
    input, select, textarea { font-size: 16px; }
    .action-btn { -webkit-appearance: none; }
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */

.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }
}

#walletWarning a { color: var(--accent) !important; text-decoration: none; }
#walletWarning button { background: none; border: none; color: var(--accent) !important; cursor: pointer; font-size: 0.85rem; font-weight: 600; padding: 4px 8px; border-radius: 6px; }
#walletWarning button:hover { background: rgba(0, 255, 204, 0.08); }
