@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   SMV4 INFINITY - VIP Ultra-Premium Dark Obsidian & Cyber Ember Theme
   ========================================================================= */

:root {
  /* Core Deep Obsidian Dark Palette */
  --bg-main: #05070c;
  --bg-surface: #090d15;
  --bg-sidebar: #06080e;
  --bg-card: rgba(12, 16, 26, 0.88);
  --bg-card-hover: rgba(18, 24, 38, 0.95);
  --bg-glass: rgba(10, 14, 22, 0.75);
  --bg-glass-modal: rgba(8, 11, 18, 0.96);
  
  /* Brand Flame & Gold Accent Colors */
  --primary-orange: #ff6a00;
  --primary-orange-light: #ff8533;
  --primary-orange-dark: #e55300;
  --accent-gold: #ffb800;
  --accent-amber: #ffa000;
  --accent-glow: rgba(255, 106, 0, 0.4);
  --accent-glow-subtle: rgba(255, 106, 0, 0.12);
  --accent-glow-gold: rgba(255, 184, 0, 0.35);

  /* Luxury Gradients */
  --grad-orange: linear-gradient(135deg, #ff7a00 0%, #ff4d00 100%);
  --grad-orange-hover: linear-gradient(135deg, #ff8e1a 0%, #ff5e00 100%);
  --grad-gold: linear-gradient(135deg, #ffb800 0%, #ff6a00 100%);
  --grad-ember-dark: linear-gradient(180deg, rgba(22, 28, 44, 0.9) 0%, rgba(9, 12, 20, 0.98) 100%);
  --grad-header: linear-gradient(135deg, #ffffff 30%, #ffb800 70%, #ff6a00 100%);
  --grad-sidebar: linear-gradient(180deg, #07090e 0%, #05060a 100%);
  --grad-danger: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  --grad-success: linear-gradient(135deg, #10b981 0%, #047857 100%);

  /* Borders & Shadows */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.07);
  --border-orange: 1px solid rgba(255, 115, 0, 0.28);
  --border-orange-strong: 1px solid rgba(255, 120, 0, 0.6);
  --border-glow-top: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  --shadow-card: 0 16px 40px -8px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 106, 0, 0.05);
  --shadow-card-hover: 0 20px 50px -5px rgba(0, 0, 0, 0.92), 0 0 35px rgba(255, 106, 0, 0.22);
  --shadow-glow: 0 0 25px rgba(255, 106, 0, 0.5);
  --shadow-glow-sm: 0 0 12px rgba(255, 106, 0, 0.35);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* Global Reset & Base */
html, body {
  font-family: var(--font-body);
  background-color: var(--bg-main) !important;
  background-image: 
    radial-gradient(circle at 50% -15%, rgba(255, 106, 0, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(255, 160, 0, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(255, 90, 0, 0.04) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 42px 42px, 42px 42px;
  background-attachment: fixed;
  color: #f1f5f9;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide Scrollbars Everywhere (Seamless Clean Scroll) */
html, body, #sidebar-wrapper, .table-responsive, div {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

::-webkit-scrollbar {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.gradient-text, 
.card-header h2, 
.card-body h3 {
  background: var(--grad-header);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

a {
  color: var(--primary-orange-light);
  transition: all 0.25s ease;
  text-decoration: none !important;
}
a:hover {
  color: #ffb800;
  text-shadow: 0 0 12px var(--accent-glow);
}

/* ==========================================================================
   Particles Background Canvas
   ========================================================================== */
#js-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

/* ==========================================================================
   Sidebar Navigation (Obsidian VIP Layout)
   ========================================================================== */
#wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  position: relative;
}

#sidebar-wrapper {
  height: 100vh;
  position: fixed !important;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18rem !important;
  min-width: 18rem !important;
  background: var(--grad-sidebar) !important;
  border-right: 1px solid rgba(255, 120, 0, 0.2) !important;
  box-shadow: 5px 0 35px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
  display: flex;
  flex-direction: column;
  z-index: 1040;
  white-space: nowrap !important;
  overflow-y: auto;
  overflow-x: hidden;
}

#sidebar-wrapper .list-group {
  width: 100% !important;
  padding: 0.5rem 0.85rem;
  gap: 4px;
  white-space: nowrap !important;
}

/* Brand Box in Sidebar */
.infinity-brand-box {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1.6rem 1.25rem 1.1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 120, 0, 0.15);
  background: rgba(6, 8, 14, 0.98) !important;
  backdrop-filter: blur(20px);
}

.infinity-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.brand-hex-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 120, 0, 0.2) 0%, rgba(255, 60, 0, 0.05) 100%);
  border: 1px solid rgba(255, 120, 0, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.3);
}

.brand-hex-icon i {
  font-size: 1.5rem;
  color: var(--primary-orange);
  filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.8));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 2px;
}

.sidebar-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 14px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 120, 0, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffb800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap !important;
}

/* Category Dividers in Sidebar */
.sidebar-category-header {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.75rem 0.75rem 0.35rem 0.75rem;
  white-space: nowrap !important;
}

/* Sidebar Navigation Items */
.infinity-nav-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.15rem !important;
  border-radius: var(--radius-md) !important;
  color: #94a3b8 !important;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: all 0.22s ease;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.infinity-nav-item span {
  white-space: nowrap !important;
}

.infinity-nav-item i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  color: var(--primary-orange);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.infinity-nav-item:hover {
  background: rgba(255, 106, 0, 0.1) !important;
  border-color: rgba(255, 120, 0, 0.3) !important;
  color: #ffffff !important;
  transform: translateX(5px);
  white-space: nowrap !important;
}

.infinity-nav-item:hover i {
  color: #ffb800;
  filter: drop-shadow(0 0 6px rgba(255, 184, 0, 0.6));
}

/* Active State: Glowing Vibrant Orange Pill */
.infinity-nav-item.active {
  background: linear-gradient(135deg, #ff7a00 0%, #ff4d00 100%) !important;
  color: #000000 !important;
  border-color: transparent !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 22px rgba(255, 110, 0, 0.5) !important;
  white-space: nowrap !important;
}

.infinity-nav-item.active i {
  color: #000000 !important;
}

.infinity-nav-item.active span {
  color: #000000 !important;
}

.badge-ad {
  background: #ff7700;
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 2px;
}

.sidebar-footer-box {
  border-top: 1px solid rgba(255, 120, 0, 0.12);
  padding-top: 0.85rem;
  color: #64748b;
  font-size: 0.78rem;
}

/* Sidebar responsiveness */
#page-content-wrapper {
  width: 100%;
  min-height: 100vh;
  margin-left: 18rem;
  padding-top: 68px;
  position: relative;
  z-index: 1;
  transition: all 0.25s ease-out;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: -18rem;
}

#wrapper.toggled #page-content-wrapper {
  margin-left: 0;
}

#wrapper.toggled .navbar-infinity {
  left: 0 !important;
}

/* ==========================================================================
   Top Navbar Styling (VIP Obsidian Style - Desktop Default)
   ========================================================================== */
.navbar-infinity {
  position: fixed !important;
  top: 0 !important;
  left: 18rem !important;
  right: 0 !important;
  height: 68px !important;
  background: rgba(6, 9, 15, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 120, 0, 0.25);
  padding: 0 1.6rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.85);
  z-index: 1030;
  transition: left 0.25s ease-out;
}

.btn-infinity-toggle {
  background: rgba(255, 106, 0, 0.1) !important;
  border: 1px solid rgba(255, 120, 0, 0.35) !important;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange) !important;
  font-size: 1.1rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-infinity-toggle:hover {
  background: var(--grad-orange) !important;
  color: #000 !important;
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-sm);
}

.navbar-infinity-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* Sidebar Backdrop for Mobile */
.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 5, 8, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  transition: all 0.25s ease-out;
}

#wrapper.toggled .sidebar-backdrop {
  display: block;
}

/* ==========================================================================
   Mobile Responsive Rules (Smartphones & Tablets < 768px)
   ========================================================================== */
@media (max-width: 767.98px) {
  #wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  #sidebar-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 18rem !important;
    min-width: 18rem !important;
    margin-left: -18rem !important;
    z-index: 1060 !important;
    box-shadow: 10px 0 45px rgba(0, 0, 0, 0.95) !important;
    transition: margin 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: 0 !important;
  }

  #page-content-wrapper {
    margin-left: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-top: 68px !important;
  }

  #wrapper.toggled #page-content-wrapper {
    margin-left: 0 !important;
  }

  .navbar-infinity {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 0 0.85rem !important;
  }

  #wrapper.toggled .navbar-infinity {
    left: 0 !important;
  }

  .navbar-infinity-title {
    font-size: 0.88rem !important;
    gap: 6px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .dns-main-card {
    padding: 1.25rem 0.85rem !important;
    border-radius: 16px !important;
  }

  .dns-page-title {
    font-size: 1.15rem !important;
  }

  .dns-header-icon {
    font-size: 1.35rem !important;
  }

  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .infinity-table {
    min-width: 620px !important;
  }

  .dns-url {
    white-space: nowrap !important;
    word-break: normal !important;
  }

  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none !important;
    width: 100% !important;
    margin-bottom: 0.75rem !important;
  }

  .dataTables_wrapper .dataTables_filter input {
    width: 100% !important;
  }

  .dataTables_wrapper .dataTables_paginate {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 4px;
  }

  .nav-pill-user {
    padding: 5px 9px !important;
    font-size: 0.78rem !important;
  }

  .nav-btn-logout {
    padding: 5px 9px !important;
    font-size: 0.78rem !important;
  }
}

.pulse-dot-green {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px #10b981;
  animation: greenPulse 2s infinite ease-in-out;
}

@keyframes greenPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.nav-pill-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.nav-pill-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-color: rgba(255, 120, 0, 0.35);
}

.nav-pill-user {
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 120, 0, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-btn-logout {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  border-radius: var(--radius-full) !important;
  padding: 7px 18px !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  transition: all 0.25s ease;
}

.nav-btn-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  color: #ffffff !important;
}

/* ==========================================================================
   Main Cards & Container (Obsidian VIP Glass Style)
   ========================================================================== */
.dns-main-card {
  background: linear-gradient(145deg, rgba(14, 18, 28, 0.9) 0%, rgba(8, 11, 18, 0.98) 100%) !important;
  border: 1px solid rgba(255, 120, 0, 0.25);
  border-radius: 22px;
  padding: 1.85rem 2.2rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 106, 0, 0.05);
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
  position: relative;
}

.dns-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 120, 0, 0.5), transparent);
}

.dns-header-icon {
  font-size: 1.85rem;
  color: var(--primary-orange);
  filter: drop-shadow(0 0 12px rgba(255, 106, 0, 0.7));
}

.dns-page-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.btn-add-dns {
  background: linear-gradient(135deg, #ff7a00 0%, #ff4d00 100%) !important;
  color: #000000 !important;
  border-radius: var(--radius-full) !important;
  padding: 0.75rem 1.75rem !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none !important;
  box-shadow: 0 4px 18px rgba(255, 110, 0, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-add-dns {
  background: linear-gradient(135deg, #ff7a00 0%, #ff4d00 100%) !important;
  color: #000000 !important;
  border-radius: var(--radius-full) !important;
  padding: 0.75rem 1.75rem !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none !important;
  box-shadow: 0 4px 18px rgba(255, 110, 0, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-add-dns:hover {
  background: linear-gradient(135deg, #ff8e1a 0%, #ff5e00 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 110, 0, 0.65);
}

/* Custom Table Layout (VIP Obsidian Table) */
/* Custom Table Layout (VIP Obsidian Table) */
.infinity-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  margin-top: 0.5rem;
}

.infinity-table thead th {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffb800 !important;
  padding: 0.85rem 1rem !important;
  border: none !important;
  background: transparent !important;
  vertical-align: middle !important;
  line-height: 1.2;
}

.infinity-table tbody tr {
  background: rgba(14, 18, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: all 0.22s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.infinity-table tbody tr:hover {
  background: rgba(22, 30, 48, 0.95);
  border-color: rgba(255, 120, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 106, 0, 0.1);
}

.infinity-table td {
  padding: 0.95rem 1rem !important;
  vertical-align: middle !important;
  border-top: 1px solid rgba(255, 120, 0, 0.08);
  border-bottom: 1px solid rgba(255, 120, 0, 0.08);
  line-height: 1.4;
}

.infinity-table td:first-child {
  border-left: 1px solid rgba(255, 120, 0, 0.15);
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.infinity-table td:last-child {
  border-right: 1px solid rgba(255, 120, 0, 0.15);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

/* Row elements */
.badge-id {
  background: rgba(255, 120, 0, 0.12) !important;
  border: 1px solid rgba(255, 120, 0, 0.35) !important;
  border-radius: var(--radius-full) !important;
  padding: 4px 12px !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  color: #ffb800 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 28px !important;
  line-height: 1 !important;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.15) !important;
}

.dns-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.96rem;
  display: block;
  margin: 0;
  line-height: 1.3;
}

.dns-url {
  color: #94a3b8;
  font-family: monospace;
  font-size: 0.9rem;
  display: inline-block;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap !important;
  word-break: normal !important;
}

/* Copy Action Button */
.btn-copy-action {
  background: rgba(255, 120, 0, 0.1);
  border: 1px solid rgba(255, 120, 0, 0.3);
  border-radius: 8px;
  color: var(--primary-orange);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
}

.btn-copy-action:hover {
  background: var(--primary-orange);
  color: #000;
  box-shadow: 0 0 12px rgba(255, 120, 0, 0.6);
}

/* Online Status Badge */
.badge-status-online {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #34d399;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  vertical-align: middle;
}

.dot-online {
  width: 7px;
  height: 7px;
  background: #34d399;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #34d399;
}

/* Action Edit & Delete Buttons */
.btn-action-edit {
  background: linear-gradient(135deg, #ff7a00 0%, #ff5500 100%) !important;
  color: #000000 !important;
  border-radius: var(--radius-full) !important;
  width: 36px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  margin-right: 6px;
  box-shadow: 0 3px 12px rgba(255, 110, 0, 0.4);
  transition: all 0.2s ease;
  vertical-align: middle;
  line-height: 1;
}

.btn-action-edit:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 18px rgba(255, 120, 0, 0.65);
  color: #000000 !important;
}

.btn-action-delete {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  border-radius: var(--radius-full) !important;
  width: 36px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  box-shadow: 0 3px 12px rgba(239, 68, 68, 0.4);
  transition: all 0.2s ease;
  vertical-align: middle;
  line-height: 1;
}

.btn-action-delete:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 18px rgba(239, 68, 68, 0.65);
  color: #ffffff !important;
}

/* DataTables Controls Custom Styling */
.dataTables_wrapper {
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 1.25rem;
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #94a3b8 !important;
  font-family: var(--font-heading) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.dataTables_wrapper .dataTables_length select {
  background: rgba(8, 11, 18, 0.95) !important;
  border: 1px solid rgba(255, 120, 0, 0.35) !important;
  border-radius: 8px !important;
  color: #ffb800 !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 4px 10px !important;
  margin: 0 !important;
  outline: none;
  height: 34px !important;
  line-height: 1 !important;
}

.dataTables_wrapper .dataTables_filter input {
  background: rgba(8, 11, 18, 0.95) !important;
  border: 1px solid rgba(255, 120, 0, 0.35) !important;
  border-radius: var(--radius-full) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  padding: 5px 14px !important;
  margin: 0 !important;
  width: 200px;
  height: 34px !important;
  outline: none;
  transition: all 0.25s ease;
  line-height: 1 !important;
}

.dataTables_wrapper .dataTables_filter input:focus {
  border-color: var(--primary-orange) !important;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.4) !important;
}

.dataTables_wrapper .dataTables_info {
  color: #64748b !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding-top: 1rem !important;
}

.dataTables_wrapper .dataTables_paginate {
  padding-top: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: rgba(14, 18, 30, 0.8) !important;
  border: 1px solid rgba(255, 120, 0, 0.25) !important;
  color: #e2e8f0 !important;
  border-radius: var(--radius-full) !important;
  padding: 6px 14px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  margin: 0 4px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 34px !important;
  line-height: 1 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: rgba(255, 106, 0, 0.25) !important;
  border-color: var(--primary-orange) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.4) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--grad-orange) !important;
  border-color: transparent !important;
  color: #000000 !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.6) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

/* ==========================================================================
   Cards & Content Containers
   ========================================================================== */
.card, .card.bg-primary {
  background: var(--grad-dark-card) !important;
  border: var(--border-orange) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-card) !important;
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 2rem;
}

.card:hover {
  box-shadow: var(--shadow-card-hover) !important;
  border-color: rgba(255, 130, 0, 0.45) !important;
}

.card-header,
.card-header.card-header-warning {
  background: rgba(255, 106, 0, 0.08) !important;
  border-bottom: 1px solid rgba(255, 120, 0, 0.2) !important;
  padding: 1.25rem 1.5rem !important;
}

.card-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card-header h2 i {
  color: var(--primary-orange);
  margin-right: 8px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.card-body {
  padding: 1.75rem !important;
  color: #e2e8f0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.4rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary, 
.btn-warning,
input[type="submit"].btn-warning,
.btn-info {
  background: var(--grad-orange) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(255, 90, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover, 
.btn-warning:hover,
input[type="submit"].btn-warning:hover,
.btn-info:hover {
  background: var(--grad-orange-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 100, 0, 0.6);
}

.btn-primary:active, 
.btn-warning:active,
.btn-info:active {
  transform: translateY(0);
}

.btn-default, .btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  border: var(--border-subtle) !important;
}

.btn-default:hover, .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

/* Action buttons in tables */
.btn-ok {
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Forms, Inputs & Labels
   ========================================================================== */
.form-group {
  margin-bottom: 1.4rem;
}

.form-label, label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-orange-light);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  background: rgba(10, 10, 15, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-md) !important;
  color: #ffffff !important;
  padding: 0.75rem 1.15rem !important;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  outline: none !important;
}

.btn-toggle-password:hover {
  color: var(--primary-orange) !important;
  transform: translateY(-50%) scale(1.1);
}

.form-control:focus {
  background: rgba(15, 15, 24, 0.9) !important;
  border-color: var(--primary-orange) !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 106, 0, 0.35) !important;
  outline: none;
}

.form-control::placeholder {
  color: #64748b;
}

/* Custom File Upload Input Styling */
input[type="file"],
input[type="file"].form-control,
.form-control[type="file"],
.form-control-file {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem !important;
  font-size: 0.9rem;
  color: #cbd5e1;
  background: rgba(12, 16, 26, 0.85) !important;
  border: 1px dashed rgba(255, 120, 0, 0.4) !important;
  border-radius: var(--radius-md) !important;
  cursor: pointer;
  height: auto !important;
  min-height: 52px !important;
  line-height: 1.5;
  transition: all 0.25s ease;
}

input[type="file"]::-webkit-file-upload-button {
  background: var(--grad-orange) !important;
  color: #000000 !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  padding: 6px 18px !important;
  margin-right: 14px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  box-shadow: 0 2px 10px rgba(255, 106, 0, 0.35) !important;
  transition: all 0.2s ease !important;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background: linear-gradient(135deg, #ff8e1a 0%, #ff5e00 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.5) !important;
}

input[type="file"]:hover {
  border-color: var(--primary-orange) !important;
  background: rgba(16, 22, 36, 0.95) !important;
}

/* ==========================================================================
   Tables & DataTables
   ========================================================================== */
.table-responsive {
  border-radius: var(--radius-md);
  border: none !important;
  background: transparent !important;
  padding: 0.25rem 0.5rem;
  overflow-x: auto;
}

.table {
  color: #e2e8f0;
  margin-bottom: 0;
  background: transparent !important;
}

.table thead th {
  background: rgba(255, 106, 0, 0.12) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  border: none !important;
  padding: 1rem 1.25rem !important;
}

.table tbody tr {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.02) !important;
}

.table tbody tr:hover {
  background: rgba(255, 106, 0, 0.1) !important;
}

.table tbody td {
  padding: 1rem 1.25rem !important;
  vertical-align: middle;
  border: none !important;
  font-size: 0.92rem;
}

/* DataTables styling */
.dataTables_wrapper {
  color: #94a3b8;
  padding: 1rem 0;
}

.dataTables_length select,
.dataTables_filter input {
  background: rgba(10, 10, 15, 0.75);
  border: var(--border-orange);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.35rem 0.75rem;
  outline: none;
}

.dataTables_filter input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px var(--accent-glow);
}

.dataTables_paginate .paginate_button {
  border-radius: var(--radius-sm) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin: 0 2px;
}

.dataTables_paginate .paginate_button.current,
.dataTables_paginate .paginate_button:hover {
  background: var(--grad-orange) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-glow-sm);
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-content {
  background: var(--grad-dark-card) !important;
  border: var(--border-orange-strong) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px var(--accent-glow) !important;
  backdrop-filter: blur(20px);
  color: #fff;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 120, 0, 0.2);
  padding: 1.25rem 1.5rem;
}

.modal-header h2 {
  font-size: 1.4rem;
  margin: 0;
  background: var(--grad-header);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-body {
  padding: 1.5rem;
  font-size: 1rem;
  color: #cbd5e1;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 1.5rem;
}

/* ==========================================================================
   Alerts & Notifications
   ========================================================================== */
#pageMessages {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  width: 90%;
  max-width: 600px;
  z-index: 99999;
}

.alert {
  border-radius: var(--radius-md) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  font-weight: 500;
  padding: 1rem 1.25rem;
  margin-bottom: 10px;
  color: #ffffff !important;
}

.alert-success {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3) !important;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.2) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3) !important;
}

.alert-info, .alert-dismissible {
  background: rgba(255, 106, 0, 0.15) !important;
  border-color: rgba(255, 120, 0, 0.45) !important;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.25) !important;
}

.alert-info h3, .alert-info strong, .alert-info em {
  color: #ffffff !important;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.2) !important;
  border-color: rgba(245, 158, 11, 0.5) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3) !important;
}

/* Custom Selects, Checkboxes & File Inputs */
select.form-control, select {
  background-color: #0d0d14 !important;
  color: #f8fafc !important;
  border: 1px solid rgba(255, 120, 0, 0.25) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.6rem 1rem !important;
}

select.form-control option {
  background: #12121c;
  color: #fff;
}

input[type="file"] {
  background: rgba(14, 14, 22, 0.6);
  border: 1px dashed rgba(255, 120, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 10px;
  color: #cbd5e1;
  width: 100%;
}

input[type="file"]::-webkit-file-upload-button {
  background: var(--grad-orange);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.2s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--grad-orange-hover);
  box-shadow: var(--shadow-glow-sm);
}

/* Custom switch / radio enhancements */
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-orange) !important;
  border-color: var(--primary-orange-light) !important;
  box-shadow: var(--shadow-glow-sm) !important;
}

/* Image preview boxes */
img.img-thumbnail {
  background-color: rgba(20, 20, 30, 0.7);
  border: 1px solid rgba(255, 120, 0, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Infinity Glow Pulsing Animation */
@keyframes infinityPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.55);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.25);
  }
}

.infinity-pulse {
  animation: infinityPulse 3s infinite ease-in-out;
}

/* ==========================================================================
   Login / Landing Page Specific Styles (Exact Mockup Layout)
   ========================================================================== */
.infinity-layout-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  position: relative;
  z-index: 1;
}

/* Background Orbital Rings */
.infinity-orbital-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.infinity-orbital-ring-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 75vw;
  height: 75vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.12);
  box-shadow: 0 0 80px rgba(255, 106, 0, 0.04);
}

.infinity-orbital-ring-2 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 55vw;
  height: 55vw;
  max-width: 650px;
  max-height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(255, 120, 0, 0.08);
}

.infinity-orbital-ring-3 {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.08);
}

/* Hero Section (Left Column) */
.infinity-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 120, 0, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-orange-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.18);
  margin-bottom: 1.5rem;
}

.infinity-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.infinity-orange-text {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.infinity-hero-headline {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.text-orange-glow {
  color: #ff841f;
  text-shadow: 0 0 15px rgba(255, 120, 0, 0.4);
}

.infinity-hero-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* 3 Feature Boxes on Left */
.infinity-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 540px;
  margin-bottom: 2rem;
}

.infinity-feature-card {
  background: rgba(18, 18, 26, 0.7);
  border: 1px solid rgba(255, 120, 0, 0.22);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.infinity-feature-card:hover {
  background: rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.2);
}

.infinity-feature-card i {
  font-size: 1.5rem;
  color: var(--primary-orange);
  filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.6));
}

.infinity-feature-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.3;
}

/* Micro badges at bottom of left column */
.infinity-mini-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #94a3b8;
}

.infinity-mini-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.infinity-mini-badge-item i {
  color: var(--primary-orange);
}

/* Right Column (Card Form) */
.infinity-auth-card {
  background: rgba(16, 16, 24, 0.88);
  border: 1px solid rgba(255, 120, 0, 0.3);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 106, 0, 0.18);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.infinity-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ff8c00 50%, transparent 100%);
}

/* 3D Glowing Brand Hologram on top of card */
.infinity-brand-hologram {
  position: relative;
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}

.infinity-3d-text {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffa726 0%, #ff6a00 50%, #d84315 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.65)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
  display: inline-block;
  transform: perspective(200px) rotateX(4deg);
}

.infinity-glowing-ring {
  width: 140px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 140, 0, 0.85);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.8), inset 0 0 15px rgba(255, 106, 0, 0.6);
  margin: -12px auto 0 auto;
  transform: rotateX(70deg);
  background: radial-gradient(ellipse at center, rgba(255, 120, 0, 0.25) 0%, transparent 70%);
}

.infinity-card-heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  text-align: center;
}

.infinity-card-subheading {
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 1.75rem;
}

/* Input Fields in Login Card */
.infinity-input-group {
  margin-bottom: 1.25rem;
}

.infinity-input-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 0.45rem;
  display: block;
}

.infinity-input-control {
  background: #0d0d15 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md) !important;
  color: #ffffff !important;
  padding: 0.75rem 1.15rem !important;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.25s ease;
}

.infinity-input-control:focus {
  background: #11111c !important;
  border-color: #ff7700 !important;
  box-shadow: 0 0 15px rgba(255, 119, 0, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  outline: none;
}

.infinity-input-control::placeholder {
  color: #475569;
  font-size: 0.9rem;
}

/* Main CTA Pill Button */
.infinity-btn-cta {
  background: linear-gradient(135deg, #ff7a00 0%, #ffa500 50%, #ff4d00 100%) !important;
  color: #08080c !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  padding: 0.85rem 1.5rem !important;
  font-family: var(--font-heading) !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.75rem;
  box-shadow: 0 6px 25px rgba(255, 110, 0, 0.55);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.infinity-btn-cta:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ffb700 50%, #ff5a00 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(255, 120, 0, 0.75);
}

.infinity-btn-cta:active {
  transform: translateY(0);
}

.infinity-card-footer {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.infinity-card-footer strong,
.infinity-card-footer a {
  color: var(--primary-orange);
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .infinity-layout-wrapper {
    padding: 2rem 1rem;
  }
  .infinity-feature-grid {
    max-width: 100%;
  }
  .infinity-auth-card {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .infinity-feature-grid {
    grid-template-columns: 1fr;
  }
  .infinity-hero-title {
    font-size: 2.2rem;
  }
  .infinity-mini-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
