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

:root {
  --primary-color: #ff7600;
  --secondary-color: #e65100;
  --accent-color: #ffb700;
  --dark-bg: #0b0f19;
  --darker-bg: #070a0f;
  --card-bg: rgba(22, 30, 47, 0.65);
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #8a99ad;
  --border-color: rgba(255, 118, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #ff7600 0%, #ffb700 100%);
  --gradient-secondary: linear-gradient(135deg, #ffb700 0%, #ffd000 100%);
  --shadow-primary: 0 4px 20px rgba(255, 118, 0, 0.35);
  --shadow-secondary: 0 8px 32px rgba(0, 0, 0, 0.6);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--darker-bg) !important;
  color: var(--text-primary) !important;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Force text colors globally - Cleaned up to inherit properly in dark mode */
body, body * {
  color: inherit;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  color: var(--text-primary);
}

body p, body span, body div, body li {
  color: var(--text-secondary);
}

body a {
  color: var(--primary-color);
}

body .text-muted, body .text-secondary {
  color: var(--text-muted);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-secondary);
  border-color: var(--primary-color);
}

/* Navigation */
.navbar {
  background: rgba(11, 17, 30, 0.85) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.navbar-brand img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 118, 0, 0.35);
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: none !important;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 200, 81, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  margin: 0 0.25rem;
  padding: 0.75rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(255, 118, 0, 0.1);
  transform: translateY(-2px);
}

.nav-link:active {
  transform: translateY(0);
}

.nav-link i {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-link:hover i {
  transform: scale(1.1);
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .navbar-brand img {
    height: 30px !important;
    margin-right: 6px !important;
  }
  
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 1rem 1.5rem !important;
    margin: 0;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: rgba(0, 200, 81, 0.15);
    border-color: rgba(0, 200, 81, 0.3);
    transform: translateX(5px);
  }
  
  .nav-link i {
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
  }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-brand img {
    height: 28px !important;
    margin-right: 5px !important;
  }
  
  #Anytool-typing {
    font-size: 0.9rem !important;
  }
  
  .nav-link {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem;
  }
  
  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem;
  }
}

/* Navbar scroll effect */
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Active link styling */
.nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(255, 118, 0, 0.15);
  border-color: rgba(255, 118, 0, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(circle at 30% 20%, rgba(255, 118, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 118, 0, 0.04) 0%, transparent 50%),
              var(--dark-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed navbar */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 2rem;
  max-width: 600px;
  font-weight: 400;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Mobile Hero Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
    padding-top: 70px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .hero-image img {
    max-height: 300px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 85vh;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-image img {
    max-height: 250px !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-secondary);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212529;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile Features Adjustments */
@media (max-width: 991.98px) {
  .features-section {
    padding: 4rem 0;
  }
  
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .features-section {
    padding: 3rem 0;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: var(--card-bg);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Mobile Stats Adjustments */
@media (max-width: 575.98px) {
  .stats-section {
    padding: 3rem 0;
  }
  
  .stat-item {
    padding: 1.5rem 0.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Mobile CTA Adjustments */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Disabled fade animation to prevent flickering 
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
*/

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.shadow-custom {
  box-shadow: var(--shadow-primary);
}

.border-custom {
  border: 1px solid var(--border-color);
}

.rounded-custom {
  border-radius: var(--border-radius);
}

/* Core Typography & Readability */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary) !important;
  font-weight: 600;
}

p, span, div:not(.alert):not(.btn) {
  color: var(--text-secondary);
}

.lead {
  color: var(--text-secondary) !important;
  font-weight: 400;
  opacity: 0.95;
}

.fw-bold {
  font-weight: 700 !important;
  color: var(--text-primary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
  opacity: 0.9;
}

/* List Styling */
ol, ul {
  color: var(--text-secondary) !important;
}

ol li, ul li {
  color: var(--text-secondary) !important;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

ol li strong, ul li strong {
  color: var(--text-primary) !important;
  font-weight: 700;
}

/* Specific overrides for instructions */
.alert ol li {
  color: inherit !important;
  font-weight: 500;
}

.card ol li, .card ul li {
  color: var(--text-secondary) !important;
  font-weight: 500;
}

h6.fw-bold, .fw-bold {
  color: var(--text-primary) !important;
  font-weight: 700;
}

/* Alert Text Improvements */
.alert {
  background-color: rgba(255, 106, 0, 0.1) !important;
  border: 1px solid rgba(255, 106, 0, 0.2) !important;
  color: var(--text-primary) !important;
}

.alert * {
  color: inherit !important;
}

.alert strong {
  color: var(--text-primary) !important;
  font-weight: 700;
}

.alert ol, .alert ul {
  color: var(--text-secondary) !important;
}

.alert li {
  color: var(--text-secondary) !important;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.alert-danger {
  background: rgba(220, 53, 69, 0.15) !important;
  border: 1px solid rgba(220, 53, 69, 0.3) !important;
  color: #ff8080 !important;
}

.alert-danger * {
  color: #ff8080 !important;
}

/* Card Text */
.card-body h1, .card-body h2, .card-body h3, 
.card-body h4, .card-body h5, .card-body h6 {
  color: var(--text-primary) !important;
}

.card-body p, .card-body span, .card-body div {
  color: var(--text-secondary);
}

/* Feature Icons and Text */
.feature-icon {
  color: white !important;
}

.feature-title {
  color: var(--text-primary) !important;
  font-weight: 600;
}

/* Navigation Text */
.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
}

/* Footer Text */
.footer h5 {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.footer p, .footer span {
  color: var(--text-muted) !important;
}

.footer-links a {
  color: var(--text-muted) !important;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color) !important;
}

/* Mobile Button Improvements */
@media (max-width: 575.98px) {
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  
  .btn-lg {
    padding: 12px 28px;
    font-size: 1rem;
  }
  
  .d-flex.gap-3 {
    gap: 0.75rem !important;
  }
  
  .d-flex.gap-3 .btn {
    flex: 1;
    min-width: 0;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .nav-link:hover {
    transform: none;
  }
  
  .btn:active,
  .nav-link:active {
    transform: scale(0.98);
  }
}

/* General Mobile Optimizations */
@media (max-width: 991.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .col, .col-md-3, .col-md-6, .col-lg-4, .col-lg-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .row {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  
  .col, .col-md-3, .col-md-6, .col-lg-4, .col-lg-6 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2rem !important;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 991.98px) {
  .hero-section::before {
    background: none;
  }
  
  .cta-section::before {
    background: none;
  }
  
  .feature-card::before {
    display: none;
  }
}

/* Prevent horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Improve touch targets */
@media (max-width: 575.98px) {
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Loading optimization - Disabled to prevent flickering 
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
*/

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #00E676;
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --border-color: #ffffff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-image {
    animation: none;
  }
  
  .feature-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* =========================================================================
   Login Page Glass Cards & Button Styles
   ========================================================================= */

.glass-card-login {
  background: var(--card-bg) !important;
  border: 1px solid rgba(255, 118, 0, 0.25) !important;
  border-radius: 24px !important;
  padding: 3.5rem 2.5rem !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition) !important;
}

.glass-card-login:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(255, 118, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 118, 0, 0.45) !important;
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.5rem !important;
  margin-bottom: 2rem !important;
  background: linear-gradient(135deg, rgba(255, 118, 0, 0.15) 0%, rgba(255, 183, 0, 0.05) 100%) !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--accent-color) !important;
  box-shadow: 0 0 15px rgba(255, 118, 0, 0.2) !important;
  transition: var(--transition) !important;
}

.glass-card-login:hover .icon-wrapper {
  transform: scale(1.1) !important;
  box-shadow: 0 0 25px rgba(255, 118, 0, 0.4) !important;
  background: linear-gradient(135deg, rgba(255, 118, 0, 0.25) 0%, rgba(255, 183, 0, 0.1) 100%) !important;
}

.icon-wrapper.reseller {
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.15) 0%, rgba(255, 118, 0, 0.05) 100%) !important;
  border-color: var(--accent-color) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 0 15px rgba(255, 183, 0, 0.2) !important;
}

.glass-card-login:hover .icon-wrapper.reseller {
  box-shadow: 0 0 25px rgba(255, 183, 0, 0.4) !important;
}

/* Glass Buttons on Login */
.btn-glass {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 118, 0, 0.4) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(255, 118, 0, 0.4) !important;
  transition: var(--transition) !important;
}

.btn-glass:hover {
  background: var(--gradient-secondary) !important;
  box-shadow: 0 6px 20px rgba(255, 118, 0, 0.6) !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.btn-glass-outline {
  background: rgba(255, 118, 0, 0.05) !important;
  color: var(--accent-color) !important;
  border: 2px solid var(--primary-color) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  transition: var(--transition) !important;
}

.btn-glass-outline:hover {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-primary) !important;
  transform: translateY(-2px) !important;
}

/* Features Pills on Login */
.features-pills {
  display: flex !important;
  justify-content: center !important;
  gap: 2rem !important;
  margin-top: 4rem !important;
  flex-wrap: wrap !important;
}

.feature-pill {
  background: rgba(22, 30, 47, 0.5) !important;
  border: 1px solid rgba(255, 118, 0, 0.15) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  font-weight: 500 !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.feature-pill i {
  color: var(--primary-color) !important;
  font-size: 1.2rem !important;
}

.feature-pill span {
  color: var(--text-primary) !important;
}