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

body { background-color: #09090b; color: #e4e4e7; font-family: 'Inter', sans-serif; margin: 0; line-height: 1.6; }

/* Header */
.zy-header { background: rgba(9, 9, 11, 0.9); border-bottom: 1px solid #27272a; padding: 15px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.zy-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo { font-weight: 800; font-size: 20px; color: #fff; }
nav a { color: #a1a1aa; text-decoration: none; margin-right: 20px; font-size: 14px; font-weight: 600; transition: 0.2s; }
nav a:hover, nav a.active { color: #fff; }

/* Buttons */
.connect-btn { background: #3b82f6; border: none; color: #fff; padding: 8px 16px; border-radius: 6px; cursor: pointer; font-weight: 600; }
.primary-btn { width: 100%; background: #10b981; color: #000; font-weight: 800; border: none; padding: 14px; border-radius: 8px; cursor: pointer; transition: 0.2s; margin-top: 10px; }
.primary-btn:hover { opacity: 0.9; }
.secondary-btn { background: #3b82f6; color: #fff; border: none; padding: 8px 16px; border-radius: 6px; cursor: pointer; margin-top: 10px; }

/* Copy Button Styling */
.referral-box { display: flex; align-items: center; gap: 10px; }
.icon-btn { 
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); 
  color: #a1a1aa; border-radius: 6px; cursor: pointer; padding: 6px; 
  display: inline-flex; align-items: center; justify-content: center;
  transition: 0.2s; min-width: 32px;
}
.icon-btn:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: #fff; }

/* Layout */
.wrapper { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }

/* Glass Cards */
.glass-card { background: rgba(24, 24, 27, 0.6); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 25px; }
.label { display: block; font-size: 11px; text-transform: uppercase; color: #71717a; font-weight: 700; margin-bottom: 5px; }
.value { font-size: 28px; font-weight: 800; color: #fff; }
.sub-value { font-size: 12px; color: #a1a1aa; }

/* Inputs */
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 12px; color: #a1a1aa; margin-bottom: 8px; }
.input-group input { width: 100%; box-sizing: border-box; background: rgba(0,0,0,0.3); border: 1px solid #333; padding: 12px; border-radius: 8px; color: #fff; font-size: 16px; }

/* Alerts */
.alert-box { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center; }
.safety-badge { background: rgba(255, 193, 7, 0.1); color: #fbbf24; padding: 10px; border-radius: 6px; font-size: 12px; margin-bottom: 20px; border: 1px solid rgba(255, 193, 7, 0.2); }