/* ============================================ */
/* GGROTTO AIRDROPPER - PREMIUM DESIGN         */
/* Token Distribution Tool by Wrathtank        */
/* ============================================ */

/* Branding */
.brand-header {
  text-align: center;
  margin-bottom: 10px;
}

.airdropper-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-top: 60px;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  text-align: center;
}

.airdropper-container > * {
  width: 100%;
  max-width: 800px;
}

.airdropper-container .subtitle {
  font-family: 'Teko', sans-serif;
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 30px;
  letter-spacing: 5px;
  text-shadow: 0 0 15px var(--cyan);
}

.airdropper-container .glitch-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--gold) 0%, #fff8dc 40%, var(--gold) 60%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  letter-spacing: 4px;
}

/* Pre-connect Section */
.pre-connect-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.pre-connect-section.hidden {
  display: none;
}

/* Connected Header Bar */
.connected-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 20px;
  background: linear-gradient(145deg, var(--gray), var(--darker));
  border: 2px solid var(--teal);
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(0, 139, 139, 0.3);
}

.connected-header.hidden {
  display: none;
}

.header-chain {
  display: flex;
  align-items: center;
}

.chain-badge {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.5rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal), var(--dark-teal));
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px var(--cyan);
}

.header-wallet {
  display: flex;
  align-items: center;
}

.connected-header .wallet-addr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
}

.connected-header .btn-small {
  padding: 6px 10px;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chain Selector */
.chain-selector-wrapper {
  display: flex;
  justify-content: center;
}

.chain-selector {
  position: relative;
  min-width: 200px;
}

.chain-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 15px;
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 6px;
  cursor: none;
  transition: all 0.3s ease;
}

.chain-selected:hover {
  border-color: var(--cyan);
}

#selected-chain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--white);
}

.chain-arrow {
  font-size: 0.5rem;
  color: var(--cyan);
  transition: transform 0.3s ease;
}

.chain-selected.open .chain-arrow {
  transform: rotate(180deg);
}

.chain-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--darker);
  border: 1px solid var(--cyan);
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 100;
  overflow: hidden;
}

.chain-dropdown.hidden {
  display: none;
}

.chain-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  cursor: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 139, 139, 0.3);
}

.chain-option:last-child {
  border-bottom: none;
}

.chain-option:hover {
  background: rgba(0, 255, 255, 0.1);
}

.chain-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: var(--white);
}

.chain-native {
  font-size: 0.5rem;
  color: var(--cyan);
  padding: 2px 6px;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 3px;
}

/* Wallet Address Display */
.wallet-addr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
}

.btn-small {
  padding: 8px 14px;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.45rem;
  color: #888;
  background: transparent;
  border: 1px solid #555;
  border-radius: 4px;
  cursor: none;
  transition: all 0.3s ease;
}

.btn-small:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  text-shadow: 0 0 5px var(--cyan);
}

/* Wallet Selector Modal */
.wallet-selector-box {
  max-width: 400px;
  text-align: center;
}

.wallet-selector-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 25px;
  text-shadow: 0 0 10px var(--cyan);
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--darker);
  border: 2px solid var(--teal);
  border-radius: 8px;
  cursor: none;
  transition: all 0.3s ease;
}

.wallet-option:hover {
  border-color: var(--cyan);
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.wallet-option img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.wallet-option span {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  color: var(--white);
}

.btn-cancel {
  width: 100%;
  margin-top: 10px;
}

/* Search Section */
.search-section {
  margin-bottom: 20px;
}

.search-section.hidden {
  display: none;
}

/* Snapshot Contract Section */
#snapshot-contract-section.hidden {
  display: none;
}

/* CSV Only Notice (for Avalanche) */
.csv-only-notice {
  text-align: center;
  padding: 30px 20px;
}

.csv-only-notice.hidden {
  display: none;
}

.notice-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--cyan);
}

.notice-text {
  font-size: 0.6rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.btn-upload-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  cursor: none;
}

.search-section > label {
  display: block;
  font-size: 0.6rem;
  color: #aaa;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.search-bar input {
  flex: 1;
  padding: 12px 15px;
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 5px;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-search {
  padding: 12px 20px;
  white-space: nowrap;
}

.search-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  color: #888;
  cursor: none;
}

.filter-checkbox input {
  accent-color: var(--cyan);
  cursor: none;
}

.search-results {
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.search-results.hidden {
  display: none;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(0, 139, 139, 0.3);
  cursor: none;
  transition: all 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(0, 255, 255, 0.1);
}

.search-result-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--gray);
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  display: flex;
  gap: 10px;
  font-size: 0.5rem;
  color: #666;
  margin-top: 3px;
}

.search-result-type {
  padding: 2px 6px;
  background: var(--dark-teal);
  border-radius: 3px;
  font-size: 0.45rem;
  color: var(--white);
  text-transform: uppercase;
}

.search-no-results {
  padding: 20px;
  text-align: center;
  font-size: 0.6rem;
  color: #666;
}

.search-loading {
  padding: 20px;
  text-align: center;
  font-size: 0.6rem;
  color: var(--cyan);
}

.divider-or {
  display: flex;
  align-items: center;
  margin: 25px 0;
  gap: 15px;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--teal);
}

.divider-or span {
  font-size: 0.5rem;
  color: #555;
  letter-spacing: 1px;
}

/* Main Interface */
.airdropper-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
}

.airdropper-main.hidden {
  display: none;
}

.connect-prompt {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 0.7rem;
}

.connect-prompt.hidden {
  display: none;
}

/* Not Owner Box */
.not-owner-box {
  background: linear-gradient(145deg, var(--gray), var(--darker));
  border: 2px solid var(--dark-teal);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 139, 139, 0.4);
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.error-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink);
  text-shadow: 0 0 15px var(--pink);
  margin-bottom: 20px;
}

.error-detail {
  font-size: 0.55rem;
  color: #666;
  margin-top: 10px;
}

/* ============================================ */
/* SECTIONS - Premium Design                   */
/* ============================================ */

.airdrop-section {
  background: linear-gradient(180deg, rgba(0, 25, 35, 0.95) 0%, rgba(0, 15, 20, 0.98) 100%);
  border: 1px solid rgba(0, 139, 139, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(0, 139, 139, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
}

.airdrop-section.hidden {
  display: none;
}

/* Gold corner accent */
.airdrop-section::before {
  content: '◈';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.6;
  z-index: 5;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(180deg, rgba(0, 30, 40, 0.8) 0%, rgba(0, 20, 30, 0.9) 100%);
  border-bottom: 1px solid rgba(0, 139, 139, 0.3);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  border-radius: 50%;
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--darker);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.section-header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  letter-spacing: 2px;
}

.section-content {
  padding: 25px;
}

/* Form Elements */
.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 0.6rem;
  color: #aaa;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 15px;
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 5px;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-row input::placeholder {
  color: #555;
}

.form-row select {
  cursor: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-row select option {
  background: var(--darker);
  color: var(--white);
}

/* Button Row */
.button-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.or-divider {
  font-size: 0.6rem;
  color: #666;
}

.btn-upload {
  display: inline-block;
  padding: 12px 20px;
  cursor: none;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-label {
  font-size: 0.5rem;
  color: #666;
  letter-spacing: 1px;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
}

/* Amount Mode Toggle */
.amount-mode {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.mode-btn {
  flex: 1;
  padding: 12px 15px;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem;
  color: #666;
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 5px;
  cursor: none;
  transition: all 0.3s ease;
}

.mode-btn:hover {
  color: var(--white);
  border-color: var(--cyan);
}

.mode-btn.active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.mode-content {
  margin-bottom: 20px;
}

.mode-content.hidden {
  display: none;
}

/* Holders Table */
.holders-table-wrapper {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--teal);
  border-radius: 5px;
}

.holders-table {
  width: 100%;
  border-collapse: collapse;
}

.holders-table th {
  position: sticky;
  top: 0;
  background: var(--darker);
  padding: 12px 15px;
  font-size: 0.55rem;
  color: var(--cyan);
  text-align: left;
  border-bottom: 1px solid var(--teal);
}

.holders-table td {
  padding: 10px 15px;
  font-size: 0.65rem;
  color: #ccc;
  border-bottom: 1px solid rgba(0, 139, 139, 0.3);
}

.holders-table tr:hover {
  background: rgba(0, 255, 255, 0.05);
}

.holders-table .addr {
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
}

.holders-table input {
  width: 120px;
  padding: 6px 10px;
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 3px;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
}

.holders-table input:focus {
  outline: none;
  border-color: var(--cyan);
}

/* Custom Token Selector */
.token-selector {
  position: relative;
  width: 100%;
}

.token-selected {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--darker);
  border: 1px solid var(--teal);
  border-radius: 5px;
  cursor: none;
  transition: all 0.3s ease;
}

.token-selected:hover {
  border-color: var(--cyan);
}

.token-selected::after {
  content: '';
  position: absolute;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--cyan);
  transition: transform 0.3s ease;
}

.token-selected.open::after {
  transform: rotate(180deg);
}

.token-placeholder {
  color: #555;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.token-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--darker);
  border: 1px solid var(--cyan);
  border-top: none;
  border-radius: 0 0 5px 5px;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.token-dropdown.hidden {
  display: none;
}

.token-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  cursor: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 139, 139, 0.3);
}

.token-option:last-child {
  border-bottom: none;
}

.token-option:hover {
  background: rgba(0, 255, 255, 0.1);
}

.token-option.selected {
  background: rgba(0, 255, 255, 0.15);
}

.token-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray);
}

.token-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), var(--dark-teal));
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.token-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.token-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--white);
}

.token-label {
  font-size: 0.55rem;
  color: #666;
}

.token-custom {
  border-top: 1px solid var(--teal);
}

.token-selected .token-icon,
.token-selected .token-icon-fallback {
  width: 24px;
  height: 24px;
  font-size: 0.7rem;
}

.token-selected .token-details {
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.token-selected .token-label {
  display: none;
}

/* Token Info Box */
.token-info {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.token-info.hidden {
  display: none;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.65rem;
  border-bottom: 1px solid rgba(0, 139, 139, 0.2);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span:first-child {
  color: #888;
}

.info-row span:last-child {
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
}

/* Approval Section */
.approval-section {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.approval-section.hidden {
  display: none;
}

.warning-text {
  font-size: 0.6rem;
  color: var(--cyan);
  margin-bottom: 15px;
}

.btn-approve {
  width: 100%;
}

/* Summary Box */
.summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--teal);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.summary-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--cyan);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.7rem;
  border-bottom: 1px solid rgba(0, 139, 139, 0.3);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span:first-child {
  color: #888;
}

.summary-row span:last-child {
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
}

/* Execute Button */
.btn-execute {
  width: 100%;
  padding: 18px;
  font-size: 0.9rem;
}

.btn-execute:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Transaction Success State */
.tx-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.tx-success.hidden {
  display: none;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, var(--green), #00aa00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.success-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 15px var(--green);
}

.success-text {
  font-size: 0.6rem;
  color: #888;
  text-align: center;
}

.tx-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(145deg, var(--teal), var(--dark-teal));
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.tx-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--cyan);
}

.tx-link span {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  color: var(--white);
}

.link-arrow {
  font-size: 1rem;
}

.btn-close-modal {
  margin-top: 15px;
  width: 100%;
}

/* Loading State */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 10;
}

.hint {
  font-size: 0.55rem;
  color: #555;
  margin-top: 15px;
}

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

@media (max-width: 768px) {
  .airdropper-container {
    padding: 60px 15px;
  }

  .airdropper-container .glitch-text {
    font-size: 2rem;
  }

  .airdropper-container .subtitle {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .section-header {
    padding: 15px;
  }

  .section-header h2 {
    font-size: 0.85rem;
  }

  .section-content {
    padding: 15px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 15px;
  }

  .amount-mode {
    flex-direction: column;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .btn-fire,
  .button-row .btn-secondary {
    width: 100%;
  }

  .holders-table-wrapper {
    overflow-x: auto;
  }

  .connected-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 15px;
  }

  .chain-badge {
    font-size: 0.4rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-filters {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .airdropper-container .glitch-text {
    font-size: 1.6rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 0.75rem;
  }

  .summary-row {
    flex-direction: column;
    gap: 5px;
  }

  .info-row {
    flex-direction: column;
    gap: 5px;
  }
}

/* Scrollbar Styling */
.holders-table-wrapper::-webkit-scrollbar {
  width: 8px;
}

.holders-table-wrapper::-webkit-scrollbar-track {
  background: var(--darker);
}

.holders-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

.holders-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}
