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

:root {
  --primary-color: #00ff88;
  --secondary-color: #00b8ff;
  --bg-color: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --danger-color: #ff3b30;
  --success-color: #34c759;
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Dynamic Navbar Logo */
.nv-logo {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

/* Social Media Buttons */
.scl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}
.scl-btn:hover {
  background: rgba(0,255,136,0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Classes */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 255, 136, 0.1);
}

/* TradingView Chart Container */
.chart-card-container {
  min-height: 500px;
  padding: 0;
}

.chart-card-container .tradingview-widget-container,
.chart-card-container #tradingview_chart {
  height: 100%;
  width: 100%;
  min-height: 500px;
}

@media (max-width: 768px) {
  .chart-card-container {
    min-height: 350px;
  }
  .chart-card-container .tradingview-widget-container,
  .chart-card-container #tradingview_chart {
    min-height: 350px;
  }
}

/* Typography elements */
.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-primary {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.text-muted-custom {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Navbar */
.custom-navbar {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary) !important;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}

/* Buttons */
.btn-neon {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.btn-neon:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.btn-neon-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(0, 184, 255, 0.2);
}

.btn-neon-secondary:hover {
  background: var(--secondary-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(0, 184, 255, 0.6);
}

/* Dashboard Balance Section */
.balance-card {
  text-align: center;
  padding: 2rem;
}

.balance-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* Live Feed Sections */
.feed-container {
  max-height: 250px;
  overflow: hidden;
  position: relative;
}

.feed-item {
  padding: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  animation: slideIn 0.5s ease-out forwards;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rent Slot Cards */
.coin-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Tables */
.table-custom {
  color: var(--text-primary);
  margin-bottom: 0;
}

.table-custom th {
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-weight: 500;
}

.table-custom td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  vertical-align: middle;
}

/* Mobile Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 1000;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.bottom-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bottom-nav-item:hover, .bottom-nav-item.active {
  color: var(--primary-color);
}

/* Forms */
.form-control-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary) !important;
  border-radius: 8px;
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
  color: var(--text-primary) !important;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

select.form-control-custom option {
  background-color: var(--bg-color);
  color: var(--text-primary);
}

/* Progress Bars */
.progress-custom {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.progress-bar-custom {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

/* General Layout spacing for fixed navbars */
.main-content {
  padding-top: 20px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 1.5rem 0;
  margin-bottom: 60px; /* space for mobile nav */
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--bg-color);
}

/* Utility classes */
.icon-success { color: var(--success-color); }
.icon-danger { color: var(--danger-color); }
.icon-primary { color: var(--primary-color); }
.icon-secondary { color: var(--secondary-color); }

/* Responsive adjustments */
@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
  footer {
    margin-bottom: 0;
  }
  .main-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.chart-card-container {
  height: 450px;
}
@media (max-width: 768px) {
  .chart-card-container {
    height: 320px;
  }
}

/* Hide TradingView Branding */
.tradingview-widget-copyright {
  display: none !important;
}

iframe[src*="tradingview"] {
  border-radius: 16px;
}

/* Beautiful Partner Borders */
.partner-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(30, 41, 59, 0.4);
  border-radius: 12px;
  padding: 12px 5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.partner-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
  filter: grayscale(0%) !important;
}
.partner-box img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Rent Card Mobile Optimization */
@media (max-width: 767px) {
  .rent-card .coin-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
  }
  .rent-card .coin-icon img {
    width: 20px;
  }
  .rent-card h4, .rent-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rent-card p {
    font-size: 0.75rem;
    margin-bottom: 0.25rem !important;
  }
  .rent-card .btn {
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
  .rent-card ul {
    margin-bottom: 0.5rem !important;
  }
  .rent-card li {
    font-size: 0.75rem;
    margin-bottom: 0.25rem !important;
  }
}

/* Premium Clean Task Cards */
.task-box {
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.task-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}
.task-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-tg { background: rgba(0, 136, 204, 0.1); color: #0088cc; border: 1px solid rgba(0, 136, 204, 0.2); }
.icon-tw { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.icon-dc { background: rgba(88, 101, 242, 0.1); color: #5865F2; border: 1px solid rgba(88, 101, 242, 0.2); }
.icon-user { background: rgba(0, 255, 136, 0.1); color: #00ff88; border: 1px solid rgba(0, 255, 136, 0.2); }

/* Ping Animation */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.letter-spacing-1 { letter-spacing: 1px; }

/* ==============================
   Forgot Password Page Styles
   ============================== */

/* Step Transition Animation */
.fp-animate-in {
  animation: fpFadeIn 0.4s ease-out;
}
@keyframes fpFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Glow Backgrounds */
.fp-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 184, 255, 0.1), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.fp-glow-blue {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at bottom left, rgba(0, 184, 255, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.fp-glow-green {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(0, 255, 136, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* Icon Circles */
.fp-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(0, 184, 255, 0.1);
  color: var(--secondary-color);
  border: 1px solid rgba(0, 184, 255, 0.25);
  animation: fpPulseIcon 2s ease-in-out infinite;
}
.fp-icon-blue {
  background: rgba(0, 184, 255, 0.12);
  color: var(--secondary-color);
  border-color: rgba(0, 184, 255, 0.3);
}
.fp-icon-green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary-color);
  border-color: rgba(0, 255, 136, 0.25);
}
@keyframes fpPulseIcon {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 255, 0.15); }
  50%      { box-shadow: 0 0 20px 6px rgba(0, 184, 255, 0.08); }
}

/* OTP Input Boxes */
.otp-box {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease;
  caret-color: var(--secondary-color);
}
.otp-box:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(0, 184, 255, 0.2), 0 0 15px rgba(0, 184, 255, 0.1);
  background: rgba(0, 184, 255, 0.05);
}
.otp-box:not(:placeholder-shown) {
  border-color: var(--primary-color);
}

/* Verify Button Style */
.fp-btn-verify {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #000 !important;
}
.fp-btn-verify:hover {
  box-shadow: 0 0 25px rgba(0, 184, 255, 0.5);
}

/* Password Strength Bar */
.fp-pw-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.fp-pw-progress .progress-bar {
  transition: width 0.3s ease, background 0.3s ease;
}
.fp-pw-weak  { background: #ff3b30 !important; color: #ff3b30 !important; }
.fp-pw-fair  { background: #ff9500 !important; color: #ff9500 !important; }
.fp-pw-good  { background: #ffcc00 !important; color: #ffcc00 !important; }
.fp-pw-strong { background: #34c759 !important; color: #34c759 !important; }
.fp-pw-excellent { background: var(--primary-color) !important; color: var(--primary-color) !important; }

/* Toggle Password Button */
.fp-toggle-pw {
  cursor: pointer;
  border-left: none !important;
  transition: color 0.2s ease;
}
.fp-toggle-pw:hover {
  color: var(--primary-color) !important;
}

/* Alert Styles */
.fp-alert {
  border-radius: 10px;
  animation: fpFadeIn 0.3s ease;
}
.fp-alert-danger {
  background: rgba(255, 59, 48, 0.1) !important;
  border-color: rgba(255, 59, 48, 0.3) !important;
  color: #ff6b6b !important;
}
.fp-alert-success {
  background: rgba(52, 199, 89, 0.1) !important;
  border-color: rgba(52, 199, 89, 0.3) !important;
  color: #34c759 !important;
}

/* Success Checkmark */
.fp-success-check {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: rgba(0, 255, 136, 0.12);
  color: var(--primary-color);
  border: 2px solid rgba(0, 255, 136, 0.3);
  animation: fpSuccessPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fpSuccessPop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive OTP boxes */
@media (max-width: 400px) {
  .otp-box {
    width: 40px;
    height: 48px;
    font-size: 1.2rem;
    border-radius: 10px;
  }
}

/* ==========================================
   P2P Trading Section Visibility Color Fixes
   ========================================== */

/* Overriding bootstrap's .text-muted and .text-secondary inside p2p layouts to be highly readable */
.p2p-container .text-muted,
.p2p-card .text-muted,
.p2p-container .text-secondary,
.p2p-card .text-secondary {
  color: #cbd5e1 !important;
}

/* Lightening the inline gray text styles used in P2P advertisements, orders, and limits */
.p2p-container [style*="color: #848e9c"],
.p2p-container [style*="color:#848e9c"],
.p2p-card [style*="color: #848e9c"],
.p2p-card [style*="color:#848e9c"] {
  color: #cbd5e1 !important;
}

/* Enhancing navigation link styles for better visibility */
.p2p-nav-link {
  color: #94a3b8 !important;
}
.p2p-nav-link.active, .p2p-nav-link:hover {
  color: #fcd535 !important;
  border-bottom-color: #fcd535 !important;
}

/* Overriding list group item texts for key-value labels in Order and Details page */
.p2p-container .list-group-item .text-muted {
  color: #cbd5e1 !important;
}

/* Improving step numbers and lines in the KYC stepper */
.kyc-stepper::before {
  background: #4f5b66 !important;
}
.step-item:not(.active):not(.completed) {
  border-color: #4f5b66 !important;
  color: #cbd5e1 !important;
  background: #2d3748 !important;
}

/* Enhancing input groups and select dropdown visibility on dark background */
.p2p-container .form-control,
.p2p-container .form-select {
  background-color: #1e2329 !important;
  color: #eaecef !important;
  border-color: #4f5b66 !important;
}
.p2p-container .form-control:focus,
.p2p-container .form-select:focus {
  border-color: #fcd535 !important;
  box-shadow: 0 0 0 0.25rem rgba(252, 213, 53, 0.25) !important;
}
.p2p-container select.form-select option {
  background-color: #1e2329 !important;
  color: #eaecef !important;
}

/* Making the upload box icons clearly visible */
.upload-box i {
  color: #cbd5e1 !important;
}

/* ==========================================
   P2P Transaction Invoice Style & Layout
   ========================================== */

.p2p-invoice-card {
  background: #1c2026 !important;
  border: 1px dashed rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.p2p-invoice-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.p2p-invoice-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fcd535;
}
.p2p-invoice-meta {
  font-size: 0.85rem;
  color: #94a3b8;
}
.invoice-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.invoice-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #eaecef;
}
.invoice-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}
.proof-img-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.3);
  max-width: 280px;
  cursor: pointer;
  transition: transform 0.2s;
}
.proof-img-container:hover {
  transform: scale(1.02);
}
.proof-img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.print-btn {
  background: transparent;
  border: 1px solid #4f5b66;
  color: #94a3b8;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.print-btn:hover {
  background: #eaecef;
  color: #15191e;
  border-color: #eaecef;
}

@media print {
  body * {
    visibility: hidden;
  }
  .p2p-invoice-card, .p2p-invoice-card * {
    visibility: visible;
  }
  .p2p-invoice-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none !important;
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .p2p-invoice-card .text-white,
  .p2p-invoice-card .invoice-value,
  .p2p-invoice-card h2,
  .p2p-invoice-card h3,
  .p2p-invoice-card h4,
  .p2p-invoice-card h5,
  .p2p-invoice-card h6,
  .p2p-invoice-card td,
  .p2p-invoice-card th,
  .p2p-invoice-card span.fw-bold {
    color: #000000 !important;
  }
  .p2p-invoice-card .text-muted,
  .p2p-invoice-card .invoice-label,
  .p2p-invoice-card .p2p-invoice-meta {
    color: #4a5568 !important;
  }
  .p2p-invoice-card .badge {
    border: 1px solid #000000 !important;
    color: #000000 !important;
    background: transparent !important;
  }
  .p2p-invoice-card .table {
    --bs-table-bg: transparent !important;
    color: #000000 !important;
  }
  .p2p-invoice-card .table tr {
    border-bottom: 1px solid #cbd5e1 !important;
  }
  .print-none, .print-btn, .navbar, .bottom-nav, .alert, .btn-outline-danger {
    display: none !important;
  }
}

/* Coin Avatar Mini Badge */
.coin-avatar-mini {
  width: 32px;
  height: 32px;
  font-size: 13px;
  background-color: #fcd535 !important;
  color: #1c2026 !important;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Invoice Total BDT Amount */
.invoice-total-amount {
  font-size: 1.25rem;
  color: #fcd535 !important;
  font-weight: 700;
}

/* Secure Escrow Console Terminal */
.escrow-terminal {
  background: #0d1117 !important;
  border: 1px solid rgba(252, 213, 53, 0.15) !important;
  border-left: 4px solid #fcd535 !important;
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(252, 213, 53, 0.02);
}
.terminal-header {
  background: #161b22 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 0.8rem 1.25rem;
}
.terminal-title {
  color: #8b949e !important;
  font-size: 0.75rem;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-weight: 700;
  letter-spacing: 1px;
}
.live-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.live-pulse-dot::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #34d399;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: terminalPulse 2s infinite ease-in-out;
}
.live-text {
  color: #34d399 !important;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.terminal-body {
  padding: 1.25rem;
}
.terminal-alert {
  background: rgba(252, 213, 53, 0.08) !important;
  border: 1px solid rgba(252, 213, 53, 0.15) !important;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: #eaecef !important;
}
.terminal-text {
  color: #e6edf3 !important;
  font-size: 0.85rem;
  line-height: 1.7;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-footer {
  background: #161b22 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
  color: #8b949e !important;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes terminalPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
