* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Space Mono', monospace; }
body { background-color: #fdfae7; min-height: 100vh; padding: 15px; }

/* Top Nav Layout */
.top-bar { width: 100%; display: flex; justify-content: flex-end; padding: 10px; }
.dev-widget { background: #fff; border: 1px solid #e0dbb5; padding: 10px 15px; border-radius: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 4px 4px 0px #e0dbb5; }
.dev-info strong { font-size: 13px; display: block; }
.alpha-tag { font-size: 10px; color: #2e7d32; font-weight: bold; }
.follow-btn { background: #4caf50; color: white; border: none; padding: 8px 12px; border-radius: 6px; font-weight: bold; cursor: pointer; font-size: 11px; }

/* Social Dropdown */
.follow-dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; right: 0; background: white; min-width: 130px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 8px; border: 1px solid #eee; z-index: 50; }
.dropdown-content a { color: #333; padding: 10px; text-decoration: none; display: block; font-size: 11px; }
.follow-dropdown:hover .dropdown-content { display: block; }

/* Main UI Card */
.wrapper { display: flex; justify-content: center; align-items: center; padding-top: 20px; }
.app-card { background: #fff; width: 100%; max-width: 480px; padding: 30px; border-radius: 15px; border: 1px solid #e0dbb5; box-shadow: 12px 12px 0px #e0dbb5; }
h2 { text-align: center; margin-bottom: 25px; font-size: 20px; }
.gold-text { color: #b8860b; }

.connection-status { background: #fdfae7; border: 1px solid #e0dbb5; padding: 20px; border-radius: 10px; text-align: center; margin-bottom: 20px; }
.status-label { font-size: 10px; font-weight: bold; color: #888; margin-bottom: 5px; }
.wallet-id { font-size: 12px; font-weight: bold; margin-bottom: 12px; color: #333; }
.connect-button { background: #f5c518; border: none; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; }

.input-container { margin-bottom: 18px; }
label { font-size: 12px; font-weight: bold; display: block; margin-bottom: 6px; }
input { width: 100%; padding: 14px; background: #f6f6f6; border: 1px solid #e0dbb5; border-radius: 8px; font-size: 16px; outline: none; }

.balance-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; flex-wrap: wrap; gap: 10px; }
.bal-text { font-size: 11px; font-weight: bold; color: #666; }

/* Clicked Button Color */
.chip { padding: 6px 12px; border: 1px solid #ddd; background: #fff; border-radius: 4px; font-size: 11px; cursor: pointer; font-weight: bold; transition: 0.2s; }
.chip.active { background: #f5c518 !important; border-color: #f5c518 !important; }

.address-input-group { position: relative; }
.rand-btn { position: absolute; right: 5px; top: 5px; background: #1a1b2e; color: white; border: none; padding: 8px 12px; border-radius: 6px; font-size: 10px; cursor: pointer; }

.big-send-btn { width: 100%; background: #f5c518; border: none; padding: 16px; border-radius: 12px; font-size: 18px; font-weight: bold; cursor: pointer; margin-top: 10px; box-shadow: 0 4px 0 #b8860b; }
.big-send-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 #b8860b; }

.tx-result { text-align: center; margin-top: 15px; font-size: 13px; font-weight: bold; min-height: 40px; }
.footer { text-align: center; margin-top: 20px; border-top: 1px solid #eee; padding-top: 15px; }
.footer a { color: #333; text-decoration: none; font-size: 11px; font-weight: bold; }

@media (max-width: 480px) {
    .top-bar { justify-content: center; }
    .app-card { padding: 20px; }
}
