body {
  margin: 0;
  padding: 0;
  background-color: #0a0a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  min-height: 100vh;
  position: relative;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img:not([src]), .logo img[src=""], .logo img[src="./mintcraft-logo.png"]:not([alt]) {
  display: none;
}

.logo img[alt]:before {
  content: attr(alt);
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.wallet-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

#connectWallet, #disconnectWallet {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

#connectWallet:hover, #disconnectWallet:hover {
  background: linear-gradient(135deg, #5856eb, #7c3aed);
  transform: translateY(-1px);
}

#disconnectWallet {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  font-size: 13px;
  padding: 8px 16px;
}

#disconnectWallet:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

header {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 600px;
  margin: 0 auto;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

header p {
  font-size: 1.2rem;
  color: #c7d2fe;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.form-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  background: #1a1a2e;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #2a2a3e;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.upload-section {
  width: 100%;
}

.upload-box {
  border: 2px dashed #4a5568;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  background: #1e1e3f;
  position: relative;
  cursor: pointer;
}

.upload-box:hover {
  border-color: #6366f1;
  background: #252547;
}

.upload-box input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.image-preview {
  text-align: center;
  background: #1e1e3f;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #4a5568;
}

.image-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.preview-info p {
  color: #c7d2fe;
  margin-bottom: 10px;
  font-size: 14px;
}

.change-image-btn {
  background: #6366f1;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.change-image-btn:hover {
  background: #5856eb;
}

.demo-mode {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: white;
}

.mode-indicator {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mode-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}

.mode-indicator small {
  display: block;
  color: #c7d2fe;
  font-size: 12px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  background: #1a1a2e;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border: 1px solid #2a2a3e;
  text-align: center;
}

.modal h2 {
  margin-top: 0;
  color: #10b981;
}

.ca-section {
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.ca-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.ca-text {
  background: #2a2a3e;
  padding: 10px;
  border-radius: 6px;
  flex: 1;
  font-family: monospace;
  font-size: 12px;
  color: #10b981;
}

.copy-ca-button {
  background: #6366f1;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.copy-ca-button:hover {
  background: #5856eb;
}

.ca-note {
  color: #c7d2fe;
  font-size: 11px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.modal-button {
  padding: 12px 20px;
  background: #6366f1;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.modal-button:hover {
  background: #5856eb;
  transform: translateY(-1px);
}

.modal-button.secondary {
  background: #374151;
}

.modal-button.secondary:hover {
  background: #4b5563;
}

.modal-button.lp {
  background: linear-gradient(135deg, #10b981, #059669);
}

.modal-button.lp:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

.image-preview {
  background: #1e1e3f;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #2a2a3e;
  text-align: center;
  margin-top: 20px;
}

.image-preview img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #6366f1;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.preview-info p {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 10px 0;
  font-weight: 600;
}

.change-image-btn {
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 8px;
  padding: 8px 16px;
  color: #d1d5db;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.change-image-btn:hover {
  background: #4b5563;
  color: #ffffff;
  transform: translateY(-1px);
}

.upload-box:hover {
  border-color: #6366f1;
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.upload-box p {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #ffffff;
}

.upload-box small {
  color: #9ca3af;
  font-size: 0.9rem;
}

.upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.checkbox-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkbox-item {
  background: #1e1e3f;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #2a2a3e;
}

.toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.toggle-header strong {
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4a5568;
  transition: 0.4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #6366f1;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.feature-tag {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.checkbox-item small {
  color: #9ca3af;
  font-size: 0.85rem;
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

form {
  background: #2b2b3d;
  padding: 1rem;
  border-radius: 10px;
  display: inline-block;
}

.wallet-controls {
  margin: 1rem 0;
}

.wallet-controls button {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.wallet-controls button:hover {
  background: #3730a3;
}

.mode-indicator {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 8px;
  background: #2b2b3d;
}

.mode-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.mode-badge.real-mode {
  background: #10b981;
  color: white;
}

.mode-badge.demo-mode {
  background: #f59e0b;
  color: white;
}

.mode-indicator small {
  display: block;
  color: #9ca3af;
  font-size: 12px;
}

.mode-indicator {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: #1e1e3f;
  border-radius: 12px;
  border: 2px solid #10b981;
}

.mode-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.mode-badge.real-mode {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.mode-badge.real-mode-authorized {
  background: #10b981;
  color: white;
}

.mode-badge.real-mode-unauthorized {
  background: #ef4444;
  color: white;
}

.mode-badge.demo-mode {
  background: #ef4444;
  color: white;
}

.mode-badge.live-mode {
  background: #10b981;
  color: white;
}

.mode-tooltip {
  cursor: help;
  margin-left: 5px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.mode-tooltip:hover {
  opacity: 1;
}

.mode-indicator small {
  color: #9ca3af;
  font-size: 0.8rem;
  display: block;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  background: #2a2a3e;
  border: 1px solid #3a3a4e;
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.token-links-section {
  margin-top: 10px;
}

.token-links-section h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.token-links-section p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.create-button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.create-button:hover {
  background: linear-gradient(135deg, #5856eb, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

@media (max-width: 1024px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Trending Tokens Styles */
.header-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.secondary-button {
  background: #2a2a3e;
  border: 1px solid #3a3a4e;
  border-radius: 8px;
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secondary-button:hover {
  background: linear-gradient(135deg, #4b5563, #6b7280);
  transform: translateY(-2px);
}

.verify-button {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin: 8px;
}

.verify-button:hover {
  background: linear-gradient(135deg, #047857, #059669);
  transform: translateY(-2px);
}

.verify-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.trending-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Vest Modal Styles */
.vest-inputs {
  margin: 20px 0;
  text-align: left;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s;
}

.input-group input:focus {
  outline: none;
  border-color: #6366f1;
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.token-card {
  background: #1a1a2e;
  border: 1px solid #2a2a3e;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.token-card:hover {
  border-color: #6366f1;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.token-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.token-symbol-badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  min-width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-info {
  flex: 1;
}

.token-info h3 {
  margin: 0 0 4px 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.token-symbol {
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
}

.token-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: #0f0f1a;
  border-radius: 12px;
  border: 1px solid #2a2a3e;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-weight: 700;
  font-size: 0.95rem;
}

.metric-value.price {
  color: #10b981;
}

.metric-value.volume {
  color: #3b82f6;
}

.metric-value.marketcap {
  color: #f59e0b;
}

.created-time {
  color: #9ca3af;
  font-size: 0.85rem;
}

.token-description {
  color: #d1d5db;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.token-actions {
  display: flex;
  gap: 12px;
}

.clone-button, .view-button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.clone-button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.clone-button:hover {
  background: linear-gradient(135deg, #5856eb, #7c3aed);
}

.view-button {
  background: #374151;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-button:hover {
  background: #4b5563;
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.confirm-button, .cancel-button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.confirm-button {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.confirm-button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
}

.cancel-button {
  background: #6b7280;
  color: white;
}

.cancel-button:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

.loading, .error, .no-tokens {
  text-align: center;
  padding: 40px;
  color: #9ca3af;
  font-size: 1.1rem;
}

.error {
  color: #ef4444;
}

.no-tokens {
  color: #f59e0b;
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
}

.token-card {
  background: #1a1a2e;
  border: 1px solid #2a2a3e;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.token-card:hover {
  border-color: #6366f1;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.token-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.token-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #3a3a4e;
}

.token-info h3 {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.token-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.market-cap {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
}

.created-time {
  color: #9ca3af;
  font-size: 0.85rem;
}

.token-description {
  color: #d1d5db;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.token-actions {
  display: flex;
  gap: 12px;
}

.clone-button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  flex: 1;
}

.clone-button:hover {
  background: linear-gradient(135deg, #5856eb, #7c3aed);
  transform: translateY(-1px);
}

.view-button {
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 8px;
  padding: 10px 16px;
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.view-button:hover {
  background: #4b5563;
  color: #ffffff;
  transform: translateY(-1px);
}

.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
  font-size: 1.1rem;
}

/* Success Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal {
  background: #1a1a2e;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  border: 1px solid #2a2a3e;
}

.ca-section {
  background: #0f0f1a;
  border: 1px solid #2a2a3e;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.ca-section h3 {
  margin: 0 0 15px 0;
  color: #6366f1;
  font-size: 1.1rem;
  font-weight: 600;
}

.ca-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #16213e;
  border: 1px solid #3a3a4e;
  border-radius: 8px;
  padding: 12px;
}

.ca-text {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #ffffff;
  background: none;
  border: none;
  word-break: break-all;
  line-height: 1.4;
}

.copy-ca-button {
  background: #6366f1;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.copy-ca-button:hover {
  background: #5856eb;
  transform: translateY(-1px);
}

.copy-ca-button.copied {
  background: #10b981;
}

.ca-note {
  color: #9ca3af;
  font-size: 0.8rem;
  margin-top: 10px;
  display: block;
}

.modal h2 {
  color: #10b981;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.modal p {
  color: #d1d5db;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.modal-button:hover {
  background: linear-gradient(135deg, #5856eb, #7c3aed);
  transform: translateY(-1px);
}

.modal-button.secondary {
  background: #374151;
  border: 1px solid #4b5563;
}

.modal-button.secondary:hover {
  background: #4b5563;
}

.modal-button.lp {
  background: linear-gradient(135deg, #10b981, #059669);
}

.modal-button.lp:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

@media (max-width: 768px) {
  .logo {
    top: 15px;
    left: 15px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .wallet-controls {
    top: 15px;
    right: 15px;
  }

  #connectWallet, #disconnectWallet {
    font-size: 12px;
    padding: 8px 16px;
  }

  #disconnectWallet {
    font-size: 11px;
    padding: 6px 12px;
  }

  header {
    padding: 40px 20px 30px;
  }

  h1 {
    font-size: 2rem;
  }

  .form-container {
    padding: 20px;
  }

  .tokens-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .header-actions {
    flex-direction: column;
  }

  .token-actions {
    flex-direction: column;
  }

  .modal {
    padding: 30px 20px;
  }
}