:root {
  --bg-main: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(20, 20, 28, 0.7);
  --bg-card-hover: rgba(30, 30, 40, 0.8);
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.5);
  --secondary: #8b5cf6;
  --accent: #38bdf8;
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --danger: #ef4444;
  --danger-light: rgba(239, 68, 68, 0.1);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --info: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.1);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-color: rgba(99, 102, 241, 0.2);
  --border-hover: rgba(99, 102, 241, 0.4);
  --glass-effect: blur(20px);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 10px 40px -10px var(--primary-glow);
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
}

body { 
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; 
  background-color: var(--bg-main); 
  color: var(--text-main); 
  overflow-x: hidden; 
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, .font-heading { font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: -0.5px; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--secondary)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.btn { cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; transition: var(--transition-smooth); border: none; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.85rem; border-radius: var(--radius-sm); position: relative; overflow: hidden; }
.hidden { display: none !important; }

.fade-in { 
  opacity: 0; 
  transform: translateY(30px) scale(0.95); 
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in.visible { 
  opacity: 1; 
  transform: translateY(0) scale(1); 
}

@keyframes spin { 
  to { transform: rotate(360deg); } 
}

@keyframes pulse { 
 0%, 100% { opacity: 1; transform: scale(1); } 
 50% { opacity: 0.7; transform: scale(1.05); } 
}

@keyframes float {
 0%, 100% { transform: translateY(0px); }
 50% { transform: translateY(-10px); }
}

@keyframes glow {
 0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
 50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(99, 102, 241, 0.3); }
}

@keyframes shimmer {
 0% { background-position: -200% 0; }
 100% { background-position: 200% 0; }
}

@keyframes gradient {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}

@keyframes slideIn {
 from { transform: translateX(-20px); opacity: 0; }
 to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
 from { transform: scale(0.9); opacity: 0; }
 to { transform: scale(1); opacity: 1; }
}

.loader-overlay {
  position: fixed; inset: 0; background: #050508; z-index: 99999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transform: scale(1);
}

.loader-overlay.hidden-loader {
  opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.1);
}

.loader-text {
  display: none;
}

.page-section { 
  display: none; 
  opacity: 0; 
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  position: relative;
  z-index: 1;
}

.page-section.active-page { 
  display: block; 
  opacity: 1; 
  transform: translateX(0);
}

header {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: rgba(10, 10, 15, 0.85); 
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.navbar { height: 70px; display: flex; justify-content: space-between; align-items: center; }

.brand { 
  display: flex; align-items: center; gap: 12px; 
  text-decoration: none; color: white; 
  position: relative; 
  transition: var(--transition-smooth);
}

.brand:hover { transform: scale(1.02); }

.brand::before {
  content: ''; position: absolute; inset: -8px -16px; 
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 8px; opacity: 0; transition: 0.3s;
}

.brand:hover::before { opacity: 1; }

.brand i { 
  font-size: 1.8rem; 
  background: linear-gradient(135deg, var(--primary), var(--accent)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.brand span { 
  font-size: 1.2rem; 
  font-weight: 700; 
  letter-spacing: 2px; 
  background: linear-gradient(to right, #fff, #94a3b8); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.nav-toggle { 
  width: 42px; height: 42px; 
  display: flex; align-items: center; justify-content: center; 
  border: 1px solid var(--border-color); 
  background: rgba(255,255,255,0.03); 
  color: white; 
  cursor: pointer; 
  transition: var(--transition-smooth); 
  border-radius: 12px; 
  position: relative; 
  overflow: hidden;
}

.nav-toggle::before {
  content: ''; position: absolute; inset: 0; 
  background: linear-gradient(135deg, var(--primary), var(--accent)); 
  opacity: 0; transition: 0.3s;
}

.nav-toggle:hover::before { opacity: 0.15; }
.nav-toggle:hover { 
  border-color: var(--primary); 
  transform: rotate(90deg) scale(1.1); 
  box-shadow: 0 0 20px var(--primary-glow);
}

.nav-toggle i { position: relative; z-index: 1; }

.announcement-bar {
  position: sticky;
  top: 70px;
  width: 100%;
  z-index: 45;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.08));
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fbbf24;
  font-weight: 600;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.3s ease,
              margin 0.3s ease;
  margin-top: 0;
}

.announcement-bar.show { display: flex; }
.announcement-bar.hiding { transform: translateY(-100%); opacity: 0; }
.announcement-bar.collapsed {
  display: none;
  margin-top: -60px;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.announcement-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.announcement-text { font-size: 0.9rem; letter-spacing: 0.5px; }

.announcement-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.announcement-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
  transform: rotate(90deg) scale(1.1);
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex; 
  align-items: center; 
  padding-top: 70px;  
  position: relative; 
  overflow: hidden; 
}

.hero::before {
  content: ''; 
  position: absolute; 
  top: 20%; 
  right: -10%; 
  width: 600px; 
  height: 600px; 
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%); 
  filter: blur(80px); 
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: ''; 
  position: absolute; 
  bottom: 10%; 
  left: -5%; 
  width: 400px; 
  height: 400px; 
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%); 
  filter: blur(60px); 
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-grid { 
  display: grid; 
  grid-template-columns: 1fr 0.9fr; 
  gap: 80px; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-radius: 100px;
  width: fit-content;
  transition: var(--transition-smooth);
  box-shadow: none;
  animation: none;
}

.hero-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(99, 102, 241, 0.3);
  border-color: var(--primary);
}

.hero-text h1 { 
  font-size: 4rem; 
  line-height: 0.95; 
  margin-bottom: 24px; 
  background: linear-gradient(180deg, #fff 0%, #94a3b8 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  letter-spacing: -2px;
}

.hero-text p { 
  font-size: 1.2rem; 
  color: var(--text-muted); 
  margin-bottom: 40px; 
  line-height: 1.7; 
  max-width: 520px; 
}

.btn-cta {
  padding: 16px 32px; 
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
  color: white;
  box-shadow: var(--shadow-primary);
  position: relative; 
  overflow: hidden; 
  border: none;
  transition: var(--transition-bounce);
  will-change: transform;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-cta::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: -100%; 
  width: 100%; 
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); 
  transition: 0.5s;
}

.btn-cta:hover::before { left: 100%; }
.btn-cta:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.6); 
}

.btn-outline {
  padding: 16px 32px; 
  border-radius: var(--radius-sm);
  background: transparent; 
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: 16px; 
  position: relative; 
  overflow: hidden;
  transition: var(--transition-bounce);
  will-change: transform;
}

.btn-outline::before {
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(56, 189, 248, 0.1)); 
  opacity: 0; 
  transition: 0.3s;
}

.btn-outline:hover::before { opacity: 1; }
.btn-outline:hover { 
  border-color: rgba(99, 102, 241, 0.5); 
  transform: translateY(-3px) scale(1.02); 
}

.hero-visual { 
  position: relative; 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-visual:hover { 
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02); 
}

.hero-visual::before {
  content: ''; 
  position: absolute; 
  inset: 0; 
  z-index: 2;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 15, 0.9) 100%);
  pointer-events: none;
}

.hero-banner img { 
  width: 100%; 
  display: block; 
  filter: grayscale(100%) contrast(1.1); 
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual:hover img { 
  transform: scale(1.1); 
  filter: grayscale(0%) contrast(1.0); 
}

.features-section { 
  padding: 120px 0; 
  border-top: 1px solid var(--border-color); 
  position: relative; 
}

.features-section::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 200px; 
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.features-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
  margin-top: 60px; 
}

.feature-card {
  padding: 40px 30px; 
  background: var(--bg-card); 
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md); 
  transition: var(--transition-bounce); 
  position: relative; 
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  will-change: transform, box-shadow;
}

.feature-card::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent); 
  opacity: 0; 
  transition: 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover { 
  border-color: var(--border-hover); 
  transform: translateY(-12px) scale(1.02); 
  box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.4);
  background: var(--bg-card-hover);
}

.feature-icon { 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.15)); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 16px; 
  color: var(--primary); 
  font-size: 1.5rem; 
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
  will-change: transform;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.3);
}

.feature-card h4 { 
  font-size: 1.25rem; 
  margin-bottom: 12px; 
  color: white; 
  transition: var(--transition-smooth);
}

.feature-card:hover h4 {
  color: var(--accent);
}

.store-nav { 
  padding: 30px 0 20px 0; 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.store-header-text {
  flex: 1;
  min-width: 280px;
}

.store-header-text h2 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.store-header-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
  margin-top: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(59, 130, 246, 0.3);
}

.nav-actions { 
  display: flex; 
  gap: 12px;
  flex-shrink: 0;
  min-width: 280px;
  align-self: flex-start;
}

/* ========== PANEL PTERODACTYL - 1 KOLOM KE BAWAH (SEPERTI AWAL) ========== */
.packages-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 24px; 
  padding-bottom: 100px; 
}

/* ========== OTHER PRODUCTS - 4 KOLOM LANGSUNG TANPA SCROLL ========== */
.other-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 100px;
  overflow-x: visible;
}

/* Responsive Other Products: Tablet 3 kolom */
@media (max-width: 1024px) {
  .other-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Responsive Other Products: Mobile 2 kolom (tetap tanpa scroll) */
@media (max-width: 768px) {
  .other-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Responsive Other Products: Mobile kecil tetap 2 kolom */
@media (max-width: 480px) {
  .other-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ========== STYLE CARD OTHER PRODUCTS (DIPERKECIL AGAR MUAT) ========== */
.other-product-banner {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.other-product-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
}

.other-product-content {
  padding: 16px;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  margin-top: -50px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.other-product-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  letter-spacing: -0.5px;
}

.other-product-description {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.other-product-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--success);
  font-family: 'Space Grotesk', sans-serif;
}

.other-product-price small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-wa {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-wa:hover::before {
  left: 100%;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
}

.other-product-card {
  background: linear-gradient(145deg, rgba(30, 30, 38, 0.9), rgba(20, 20, 25, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-bounce);
  position: relative;
  backdrop-filter: blur(10px);
  transform: translateY(0) scale(1);
  will-change: transform, box-shadow;
}

.other-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 40px 80px -20px rgba(99, 102, 241, 0.35);
}

.other-product-card:focus {
  outline: none;
}

.other-product-card:focus .other-product-banner {
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.4s ease;
}


/* ========== STYLE CARD PANEL PTERODACTYL (TETAP SEPERTI AWAL) ========== */
.product-card {
  background: linear-gradient(145deg, rgba(30, 30, 38, 0.9), rgba(20, 20, 25, 0.9));
  border-radius: var(--radius-lg); 
  padding: 32px; 
  position: relative; 
  transition: var(--transition-bounce);
  display: flex; 
  flex-direction: column;
  overflow: hidden;
  transform: translateY(0) scale(1);
  will-change: transform, box-shadow;
  opacity: 0;
  animation: cardEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
.product-card:nth-child(10) { animation-delay: 1.0s; }
.product-card:nth-child(11) { animation-delay: 1.1s; }

.product-card::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); 
  opacity: 0; 
  transition: 0.3s;
}

.product-card:hover::before { opacity: 1; }

.product-card:hover { 
  border-color: var(--border-hover);
  transform: translateY(-12px) scale(1.03); 
  box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.35);
 background: linear-gradient(145deg, rgba(35, 35, 45, 0.95), rgba(25, 25, 32, 0.95));
}

.badge-best {
  position: absolute; 
  top: 20px; 
  right: -35px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
  color: white;
  padding: 6px 40px; 
  font-size: 0.7rem; 
  font-weight: 800; 
  text-transform: uppercase;
  transform: rotate(45deg); 
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  animation: glow 2s ease-in-out infinite;
}

.card-title { 
  font-size: 1.25rem; 
  font-weight: 700; 
  margin-bottom: 8px; 
  color: white; 
  letter-spacing: -0.5px; 
}

.card-subtitle { 
  font-size: 0.85rem; 
  color: var(--text-muted); 
  margin-bottom: 20px; 
}

.card-price { 
  font-size: 2.5rem; 
  font-weight: 700; 
  margin-bottom: 24px; 
  color: white; 
  display: flex; 
  align-items: baseline; 
  gap: 4px; 
  font-family: 'Space Grotesk', sans-serif; 
  letter-spacing: -1px;
}

.card-price small { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  font-weight: 400; 
}

.card-specs {
  margin-bottom: 28px; 
  padding: 20px; 
  background: rgba(0,0,0,0.3); 
  border-radius: var(--radius-md); 
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
}

.product-card:hover .card-specs {
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(0,0,0,0.4);
}

.spec-row { 
  display: flex; 
  justify-content: space-between; 
  font-size: 0.9rem; 
  margin-bottom: 12px; 
  font-family: 'JetBrains Mono', monospace; 
}

.spec-row:last-child { margin-bottom: 0; }

.spec-label { color: var(--text-muted); }

.spec-val { 
  color: white; 
  font-weight: 600; 
  transition: var(--transition-smooth);
}

.product-card:hover .spec-val {
  color: var(--accent);
}

.btn-card {
  width: 100%; 
  padding: 16px; 
  font-weight: 600;
  background: rgba(255,255,255,0.05); 
  color: white; 
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-bounce); 
  text-transform: uppercase; 
  font-size: 0.85rem; 
  border-radius: var(--radius-sm);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.btn-card:hover::before {
  left: 100%;
}

.btn-card:hover { 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
  color: white; 
  border-color: transparent; 
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.product-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 20px 0 40px 0;
}

.product-tab-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 40px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-tab-btn i {
  font-size: 1rem;
}

.product-tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
}

.product-tab-btn:hover:not(.active) {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: white;
}

.product-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-backdrop {
  position: fixed; 
  inset: 0; 
  z-index: 100;
  background: rgba(0,0,0,0.85); 
  backdrop-filter: blur(12px);
  display: flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-backdrop.show { 
  opacity: 1; 
  visibility: visible; 
}

.modal-panel {
  background: linear-gradient(145deg, #1a1a24, #14141c); 
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%; 
  max-width: 480px; 
  padding: 32px; 
  border-radius: var(--radius-lg);
  position: relative; 
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px); 
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  max-height: 85vh; 
  overflow-y: auto;
  will-change: transform, opacity;
}

.modal-backdrop.show .modal-panel { 
  transform: scale(1) translateY(0); 
  opacity: 1;
}

.modal-panel::before {
  content: ''; 
  position: absolute; 
  inset: 0; 
  border-radius: var(--radius-lg); 
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), transparent, rgba(56, 189, 248, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; 
  pointer-events: none;
}

.modal-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 24px;
}

.modal-title { 
  font-size: 1.5rem; 
  font-weight: 700; 
  letter-spacing: -0.5px; 
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-close {
  width: 36px; 
  height: 36px; 
  border-radius: 10px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
  color: var(--text-muted);
  cursor: pointer; 
  transition: var(--transition-smooth);
}

.btn-close:hover { 
  background: rgba(239, 68, 68, 0.1); 
  border-color: rgba(239, 68, 68, 0.3); 
  color: var(--danger); 
  transform: rotate(90deg); 
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block; 
  margin-bottom: 8px; 
  font-size: 0.75rem; 
  color: var(--text-muted); 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  font-weight: 600;
}

.input-wrapper { position: relative; }

.form-input {
  width: 100%; 
  padding: 14px 16px; 
  background: rgba(0,0,0,0.4); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: var(--radius-sm);
  color: white; 
  font-family: 'JetBrains Mono', monospace; 
  font-size: 0.95rem; 
  transition: var(--transition-smooth);
}

.form-input:focus { 
  border-color: var(--primary); 
  background: rgba(0,0,0,0.6); 
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15); 
}

.form-input.error { border-color: var(--danger); }

.form-input:disabled { opacity: 0.5; cursor: not-allowed; }

.input-loader {
  position: absolute; 
  right: 16px; 
  top: calc(50% - 10px);
  width: 20px; 
  height: 20px; 
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--primary); 
  border-radius: 50%; 
  animation: spin 0.8s linear infinite;
  display: none;
}

.input-wrapper.loading .input-loader { display: block; }
.input-wrapper.loading .form-input { padding-right: 48px; }

.validation-msg { 
  font-size: 0.75rem; 
  margin-top: 8px; 
  color: var(--danger); 
  display: none; 
  align-items: center; 
  gap: 4px;
}

.validation-msg.show { display: flex; }
.validation-msg.success { color: var(--success); }

.suggestions-container { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 12px; 
}

.suggestion-btn {
  padding: 8px 14px; 
  background: rgba(99, 102, 241, 0.1); 
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--primary-light); 
  border-radius: 20px; 
  font-size: 0.75rem; 
  cursor: pointer; 
  transition: var(--transition-smooth);
  font-family: 'JetBrains Mono', monospace;
}

.suggestion-btn:hover { 
  background: var(--primary); 
  color: white; 
  transform: translateY(-2px); 
  border-color: transparent;
}

.product-summary {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.2); 
  border-radius: var(--radius-md);
  padding: 20px; 
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.product-summary:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

.product-summary h4 { 
  color: var(--primary); 
  font-size: 1.1rem; 
  margin-bottom: 4px; 
}

.product-summary p { 
  color: var(--text-muted); 
  font-size: 0.85rem; 
}

.btn-submit {
  width: 100%; 
  padding: 16px; 
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; 
  font-weight: 600; 
  border: none; 
  font-size: 0.95rem;
  position: relative; 
  overflow: hidden; 
  transition: var(--transition-bounce);
  will-change: transform;
}

.btn-submit:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.5); 
}

.btn-submit:disabled { 
  opacity: 0.6; 
  cursor: not-allowed; 
  transform: none; 
}

.payment-timer {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--primary-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.qr-container {
  background: linear-gradient(135deg, #ffffff, #f0f0f0); 
  padding: 20px; 
  border-radius: var(--radius-lg); 
  width: 200px; 
  height: 200px; 
  margin: 0 auto 24px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.qr-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(56, 189, 248, 0.1));
  opacity: 0;
  transition: 0.3s;
}

.qr-container:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.4);
}

.qr-container:hover::before {
  opacity: 1;
}

.qr-container img { 
  max-width: 100%; 
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}

.amount-display { 
  text-align: center; 
  margin-bottom: 24px; 
  font-family: 'JetBrains Mono', monospace; 
  font-size: 1.8rem; 
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.payment-actions { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.btn-payment {
  padding: 14px; 
  border-radius: var(--radius-sm); 
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); 
  color: white; 
  cursor: pointer; 
  transition: var(--transition-smooth);
  font-weight: 600; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px;
  font-size: 0.9rem;
  will-change: transform;
}

.btn-payment:hover { 
  background: rgba(255,255,255,0.08); 
  transform: translateY(-2px); 
  border-color: rgba(255,255,255,0.2);
}

.btn-payment.primary { 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
  border-color: transparent; 
}

.btn-payment.primary:hover { 
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
}

.btn-payment.danger { 
  color: var(--danger); 
  border-color: rgba(239, 68, 68, 0.3); 
}

.btn-payment.danger:hover { 
  background: rgba(239, 68, 68, 0.1); 
  border-color: var(--danger);
  color: var(--danger);
}

.checking-status {
  text-align: center; 
  padding: 20px; 
  color: var(--primary); 
  font-family: 'JetBrains Mono', monospace; 
  font-size: 0.9rem;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 12px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.success-icon {
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border: 2px solid var(--success); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto 24px; 
  color: var(--success); 
  font-size: 2rem;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn { 
 from { transform: scale(0); opacity: 0; } 
 to { transform: scale(1); opacity: 1; } 
}

.data-grid {
  background: rgba(0,0,0,0.4); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: var(--radius-md);
  padding: 20px; 
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.data-grid:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

.data-row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 12px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
}

.data-row:last-child { border-bottom: none; }

.data-label { 
  color: var(--text-muted); 
  font-size: 0.85rem; 
  flex-shrink: 0; 
}

.data-value { 
  font-family: 'JetBrains Mono', monospace; 
  color: white; 
  font-weight: 600; 
  display: flex; 
  align-items: center; 
  gap: 12px;
  flex: 1; 
  min-width: 0; 
  word-break: break-all; 
  justify-content: flex-end;
  font-size: 0.9rem;
}

.btn-copy {
  width: 32px; 
  height: 32px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
  color: var(--text-muted);
  cursor: pointer; 
  transition: var(--transition-smooth);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.btn-copy:hover { 
  background: var(--primary); 
  color: white; 
  border-color: var(--primary); 
  transform: scale(1.1);
}

.success-actions { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 12px; 
}

.history-empty {
  text-align: center; 
  padding: 48px; 
  color: var(--text-muted);
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
}

.history-item {
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); 
  padding: 20px; 
  margin-bottom: 12px;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  transition: var(--transition-bounce);
  cursor: pointer;
  will-change: transform;
  animation: slideIn 0.3s ease;
}

.history-item:hover { 
  background: rgba(255,255,255,0.06); 
  border-color: var(--border-hover);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.history-info h4 { 
  color: white; 
  margin-bottom: 4px; 
  font-size: 1rem; 
}

.history-info p { 
  color: var(--text-muted); 
  font-size: 0.85rem; 
}

.history-price { 
  background: rgba(99, 102, 241, 0.1); 
  color: var(--primary-light);
  padding: 8px 16px; 
  border-radius: 100px; 
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; 
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.history-item:hover .history-price {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.05);
}

.history-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  padding: 4px 12px; 
  background: var(--success-light); 
  color: var(--success);
  border-radius: 100px; 
  font-size: 0.75rem; 
  margin-top: 8px;
}

.btn-clear-history {
  width: 100%; 
  padding: 16px; 
  margin-top: 20px;
  background: var(--danger-light); 
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--danger); 
  border-radius: var(--radius-sm); 
  cursor: pointer; 
  transition: var(--transition-smooth);
  font-weight: 600;
}

.btn-clear-history:hover { 
  background: rgba(239, 68, 68, 0.15); 
  transform: translateY(-2px);
  border-color: var(--danger);
}

.alert-icon { font-size: 3rem; margin-bottom: 16px; }
.alert-title { font-size: 1.5rem; margin-bottom: 8px; }
.alert-message { 
  color: var(--text-muted); 
  margin-bottom: 24px; 
  font-size: 0.95rem; 
  line-height: 1.6; 
}

.alert-actions { 
  display: flex; 
  gap: 12px; 
}

.alert-actions button { 
  flex: 1; 
  padding: 14px; 
  border-radius: var(--radius-sm); 
  border: none; 
  cursor: pointer; 
  font-weight: 600; 
  transition: var(--transition-smooth);
}

.btn-alert-primary { 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
  color: white; 
}

.btn-alert-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
}

.btn-alert-secondary { 
  background: rgba(255,255,255,0.1); 
  color: white; 
}

.btn-alert-secondary:hover { 
  background: rgba(255,255,255,0.15); 
  transform: translateY(-2px);
}

.drawer {
  position: fixed; 
  top: 0; 
  right: -400px; 
  width: 350px; 
  height: 100%;
  background: linear-gradient(180deg, #1a1a24, #0f0f17); 
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 60; 
  padding: 32px; 
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  box-shadow: var(--shadow-xl);
}

.drawer.open { right: 0; }

.drawer-overlay {
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.8); 
  z-index: 55;
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.3s ease, visibility 0.3s ease; 
  backdrop-filter: blur(8px);
}

.drawer-overlay.open { 
  opacity: 1; 
  visibility: visible; 
}

.drawer-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 40px;
  padding-bottom: 20px; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-nav a {
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 16px;
  color: var(--text-muted); 
  text-decoration: none; 
  border-radius: var(--radius-sm);
  margin-bottom: 8px; 
  transition: var(--transition-smooth);
  font-weight: 500;
}

.drawer-nav a:hover { 
  background: rgba(99, 102, 241, 0.15); 
  color: white; 
  transform: translateX(4px);
  border-left: 3px solid var(--primary);
}

.drawer-nav i { 
  color: var(--primary); 
  width: 24px; 
  transition: var(--transition-smooth);
}

.drawer-nav a:hover i {
  transform: scale(1.2);
}

.toast {
  position: fixed; 
  top: 24px; 
  right: 24px; 
  z-index: 10000;
  background: rgba(26, 26, 32, 0.95); 
  padding: 20px 24px; 
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; 
  align-items: center; 
  gap: 16px;
  transform: translateX(150%); 
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px); 
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  will-change: transform;
}

.toast.show { transform: translateX(0); }

.toast-icon { 
  width: 44px; 
  height: 44px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.3rem; 
  flex-shrink: 0;
}

.toast-icon.success { 
  background: var(--success-light); 
  color: var(--success); 
}

.toast-icon.error { 
  background: var(--danger-light); 
  color: var(--danger); 
}

.toast-icon.info { 
  background: var(--info-light); 
  color: var(--info); 
}

.toast-icon.warning { 
  background: var(--warning-light); 
  color: var(--warning); 
}

.toast-content h4 { 
  font-size: 1rem; 
  margin-bottom: 4px; 
}

.toast-content p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin: 0; 
}

.whatsapp-float {
  position: fixed; 
  bottom: 30px; 
  right: 30px; 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(135deg, #25d366, #128c7e); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: white; 
  font-size: 28px; 
  z-index: 40; 
  transition: var(--transition-bounce);
  text-decoration: none; 
  border-radius: 50%; 
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}

.whatsapp-float:hover { 
  transform: scale(1.15); 
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6); 
}

.server-info-box {
  background: linear-gradient(145deg, rgba(30, 30, 38, 0.9), rgba(20, 20, 25, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.server-info-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.server-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
}

.server-info-row:hover {
  background: rgba(255,255,255,0.02);
  margin: 0 -8px;
  padding: 8px;
  border-radius: 8px;
}

.server-info-row:first-child {
  border-bottom: none;
  padding: 4px 0;
  margin-bottom: 8px;
}

.server-info-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  min-width: 100px;
}

.server-info-value {
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  flex: 1;
  transition: var(--transition-smooth);
}

.server-info-row:hover .server-info-value {
  color: var(--accent);
}

.duration-buttons-container {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.duration-btn {
  padding: 8px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.duration-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.duration-btn:hover::before {
  left: 100%;
}

.duration-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.duration-btn.active {
  background: rgba(99, 102, 241, 0.25);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-renew {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-renew::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-renew:hover::before {
  left: 100%;
}

.btn-renew:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.5);
}

.server-info-panel {
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.95), rgba(15, 15, 22, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 60px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border-left: 4px solid rgba(59, 130, 246, 0.5);
  transition: var(--transition-smooth);
}

.server-info-panel:hover {
  border-color: var(--border-hover);
  box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.3);
}

.server-info-panel::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.8;
}

.server-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.server-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.server-title i {
  color: var(--primary);
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  animation: float 3s ease-in-out infinite;
}

.status-indicator { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 10px 20px; 
  background: rgba(0,0,0,0.4); 
  border-radius: var(--radius-sm); 
  border: 1px solid rgba(59, 130, 246, 0.25);
  min-width: 180px;
  transition: var(--transition-smooth);
}

.status-indicator:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.status-dot { 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  position: relative; 
  flex-shrink: 0;
}

.status-dot::before { 
  content: ''; 
  position: absolute; 
  inset: -4px; 
  border-radius: 50%; 
  border: 2px solid; 
  opacity: 0; 
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; 
}

.status-dot.online { 
  background: var(--success); 
  box-shadow: 0 0 20px var(--success); 
}

.status-dot.online::before { 
  border-color: var(--success); 
}

.status-dot.maintenance { 
  background: var(--warning); 
  box-shadow: 0 0 20px var(--warning); 
  animation: pulse 2s infinite; 
}

.status-dot.maintenance::before { 
  border-color: var(--warning); 
}

.status-dot.offline { 
  background: var(--danger); 
  box-shadow: 0 0 20px var(--danger); 
}

.status-dot.offline::before { 
  border-color: var(--danger); 
}

@keyframes ping { 
  75%, 100% { 
    transform: scale(2); 
    opacity: 0; 
  } 
}

.status-text { 
  font-size: 0.9rem; 
  font-family: 'JetBrains Mono', monospace; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.server-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.server-card.compact {
  padding: 24px;
  background: rgba(15, 15, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.server-card.compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-smooth);
}

.server-card.compact:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.3);
  background: rgba(20, 20, 28, 0.9);
}

.server-card.compact:hover::before {
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  height: 2px;
}

.server-card.compact .server-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  border: 1px solid;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
  will-change: transform;
}

.server-card.compact:hover .server-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.server-card.compact .server-card-icon.cpu { 
  background: rgba(59, 130, 246, 0.15); 
  color: #3b82f6; 
  border-color: rgba(59, 130, 246, 0.3);
}

.server-card.compact .server-card-icon.ram { 
  background: rgba(16, 185, 129, 0.15); 
  color: #10b981; 
  border-color: rgba(16, 185, 129, 0.3);
}

.server-card.compact .server-card-icon.disk { 
  background: rgba(245, 158, 11, 0.15); 
  color: #f59e0b; 
  border-color: rgba(245, 158, 11, 0.3);
}

.server-card.compact .server-card-icon.os { 
  background: rgba(139, 92, 246, 0.15); 
  color: #8b5cf6; 
  border-color: rgba(139, 92, 246, 0.3);
}

.server-card.compact .server-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.server-card.compact .server-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition-smooth);
}

.server-card.compact:hover .server-card-label {
  color: var(--accent);
}

.server-card.compact .server-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  transition: var(--transition-smooth);
}

.server-card.compact:hover .server-card-value {
  color: var(--accent);
}

.server-card.compact .server-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-top: auto;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

.server-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.server-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.server-stats:hover {
  border-color: var(--border-hover);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow-md);
}

.server-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.server-stat i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition-smooth);
  will-change: transform;
}

.server-stat:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.2);
}

.server-stat:last-child i {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.server-stat:last-child:hover i {
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.stat-content {
  flex: 1;
  min-width: 0;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.server-stat:hover .stat-number {
  color: var(--accent);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 24px;
}

.nav-btn {
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  min-width: 100px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.nav-btn.home:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  box-shadow: 0 8px 20px -10px rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.nav-btn.history:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: var(--primary);
  box-shadow: 0 8px 20px -10px rgba(99, 102, 241, 0.4);
  color: var(--primary-light);
}

.nav-btn.renew {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.nav-btn.renew:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  box-shadow: 0 8px 20px -10px rgba(16, 185, 129, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.hologram-title {
   position: relative;
   font-size: 4rem;
   font-family: 'Space Grotesk', sans-serif;
   letter-spacing: -1px;
   perspective: 500px;
   margin-bottom: 24px;
   line-height: 0.95;
}

.hologram-fastest {
   color: rgba(255, 255, 255, 0.95);
   position: relative;
   display: inline-block;
   text-shadow: 
       0 1px 0 #ccc,
       0 2px 0 #aaa,
       0 3px 0 #888,
       0 4px 0 #666,
       0 5px 0 #444,
       0 6px 1px rgba(0,0,0,.1),
       0 0 5px rgba(255,255,255,.1),
       0 1px 3px rgba(255,255,255,.3),
       0 3px 5px rgba(255,255,255,.2),
       0 5px 10px rgba(255,255,255,.25),
       0 10px 10px rgba(255,255,255,.2),
       0 20px 20px rgba(255,255,255,.15);
   animation: hologramFloat 4s ease-in-out infinite;
   transform-style: preserve-3d;
   will-change: transform;
}

.hologram-cloud {
   background: linear-gradient(
       135deg,
       #38bdf8 0%,
       #3b82f6 25%,
       #00ffff 50%,
       #3b82f6 75%,
       #38bdf8 100%
   );
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-size: 400% 400%;
   position: relative;
   display: inline-block;
   text-shadow: 
       0 0 15px rgba(56, 189, 248, 0.7),
       0 0 30px rgba(59, 130, 246, 0.5),
       0 0 45px rgba(0, 255, 255, 0.3);
   animation: 
       hologramColorShift 6s ease-in-out infinite,
       hologramGlow 2s ease-in-out infinite alternate;
   transform-style: preserve-3d;
   will-change: transform, text-shadow;
}

.hologram-cloud::before {
   content: 'CLOUD';
   position: absolute;
   top: 2px;
   left: 2px;
   background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   z-index: -1;
   opacity: 0.7;
   animation: hologramReflection 3s ease-in-out infinite alternate;
}

.hologram-title::after {
   content: '';
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 80%;
   height: 2px;
   background: linear-gradient(90deg, 
       transparent, 
       rgba(255,255,255,0.3), 
       rgba(56, 189, 248, 0.6), 
       rgba(255,255,255,0.3), 
       transparent);
   filter: blur(1px);
   animation: scanLine 3s ease-in-out infinite;
}

@keyframes hologramFloat {
   0%, 100% { 
       transform: translateY(0) rotateX(0deg); 
   }
   50% { 
       transform: translateY(-8px) rotateX(5deg); 
   }
}

@keyframes hologramColorShift {
   0% { background-position: 0% 50%; }
   50% { background-position: 100% 50%; }
   100% { background-position: 0% 50%; }
}

@keyframes hologramGlow {
   from {
       text-shadow: 
           0 0 15px rgba(56, 189, 248, 0.7),
           0 0 30px rgba(59, 130, 246, 0.5);
   }
   to {
       text-shadow: 
           0 0 20px rgba(56, 189, 248, 0.9),
           0 0 40px rgba(59, 130, 246, 0.7),
           0 0 60px rgba(0, 255, 255, 0.5);
   }
}

@keyframes hologramReflection {
   from { opacity: 0.5; transform: translateY(0); }
   to { opacity: 0.9; transform: translateY(3px); }
}

@keyframes scanLine {
   0%, 100% { opacity: 0.3; width: 50%; }
   50% { opacity: 0.8; width: 80%; }
}

.admin-login-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(56, 189, 248, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.admin-login-btn:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(56, 189, 248, 0.2));
  border-color: rgba(99, 102, 241, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -10px rgba(99, 102, 241, 0.4);
}

@keyframes slide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.brand i {
 font-size: 1.8rem;
 color: #3b82f6;
 text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
 animation: cloudFloat 3s ease-in-out infinite;
}

.logo-text {
 font-size: 1.3rem;
 font-weight: 800;
 letter-spacing: 1px;
 margin-left: 10px;
 background: linear-gradient(90deg, white, #94a3b8);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 position: relative;
}

.logo-text::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 100%;
 height: 2px;
 background: linear-gradient(90deg, #3b82f6, #00ffff, #3b82f6);
 border-radius: 2px;
 transform: scaleX(0);
 transition: transform 0.3s;
}

.brand:hover .logo-text::after {
 transform: scaleX(1);
}

@keyframes cloudFloat {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-3px); }
}

.nav-toggle {
 width: 42px;
 height: 42px;
 border: 2px solid rgba(59, 130, 246, 0.3);
 background: rgba(59, 130, 246, 0.1);
 color: #60a5fa;
 border-radius: 12px;
 cursor: pointer;
 transition: var(--transition-smooth);
}

.nav-toggle:hover {
 border-color: #3b82f6;
 background: rgba(59, 130, 246, 0.2);
 color: white;
 transform: rotate(90deg) scale(1.1);
 box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hologram-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #60a5fa;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.hologram-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
  border-color: var(--primary);
}

.slide-animation {
  animation: slide 2s infinite;
}

.width-pulse {
  animation: widthPulse 3s ease-in-out infinite;
}

.rocket-float {
  animation: rocketFloat 2s ease-in-out infinite;
}

.ripple-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

@keyframes widthPulse {
  0%, 100% { width: 60px; }
  50% { width: 100px; }
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.renew-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.renew-panel-card {
  background: rgba(15, 15, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: var(--transition-bounce);
  will-change: transform;
}

.renew-panel-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  background: rgba(20, 20, 28, 0.8);
  box-shadow: var(--shadow-sm);
}

.renew-panel-card.full-width {
  grid-column: 1 / -1;
}

.renew-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.renew-panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.renew-panel-card:hover .renew-panel-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(99, 102, 241, 0.2);
}

.renew-panel-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.renew-panel-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  transition: var(--transition-smooth);
}

.renew-panel-card:hover .renew-panel-value {
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-text p { margin: 0 auto 30px; }
  .btn-outline { margin-left: 0; margin-top: 12px; width: 100%; }
  .btn-cta { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  
  .store-nav { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-actions { width: 100%; min-width: auto; }
  .nav-actions .nav-btn { flex: 1; }
  
  .product-tabs { margin: 20px 0 30px 0; }
  .product-tab-btn { padding: 8px 20px; font-size: 0.8rem; }
  
  .server-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .server-card.compact {
    padding: 16px;
    min-height: 120px;
  }

  .server-card.compact .server-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .server-card.compact .server-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .server-card.compact .server-card-value {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .server-card.compact .server-card-sub {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .server-card.compact .progress-bar {
    height: 4px;
  }

  .server-stats {
    flex-direction: column;
    gap: 20px;
    padding: 16px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }

  .server-stat {
    width: 100%;
    justify-content: space-between;
  }

  .server-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .status-indicator {
    width: 100%;
    justify-content: center;
  }

  .server-title {
    font-size: 1.3rem;
  }

  .server-info-panel {
    padding: 20px;
  }

  .server-info-box {
    padding: 14px;
    border-radius: var(--radius-sm);
  }
  
  .server-info-row {
    padding: 6px 0;
  }
  
  .server-info-label {
    font-size: 0.7rem;
  }
  
  .server-info-value {
    font-size: 0.75rem;
  }
  
  .btn-renew {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  #renewModal .modal-panel {
    max-width: 95%;
    padding: 18px;
  }
  
  .modal-panel { padding: 24px; max-height: 90vh; }
  .success-actions { grid-template-columns: 1fr; }
  
  .announcement-bar {
    padding: 10px 16px;
  }
  
  .announcement-text {
    font-size: 0.8rem;
  }
  
  .announcement-close {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
}

@media (max-width: 480px) {
  .server-grid-container {
    gap: 8px;
  }
  
  .server-card.compact {
    padding: 14px;
    min-height: 110px;
  }
  
  .server-card.compact .server-card-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  #renewModal .modal-panel {
    padding: 16px;
  }
  
  .hologram-title {
    font-size: 2.5rem !important;
  }
  
  .product-tab-btn {
    padding: 6px 16px;
    font-size: 0.75rem;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn,
a,
.card,
.product-card,
.other-product-card,
.feature-card,
.btn-card,
.btn-cta,
.btn-outline,
.btn-wa,
.btn-payment,
.product-tab-btn,
.history-item,
img,
.modal-panel,
.fade-in {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
}

button:hover,
.btn:hover,
.card:hover,
.product-card:hover,
.other-product-card:hover,
.feature-card:hover {
  transform: translate3d(0, -3px, 0) scale(1.015);
}

button:active,
.btn:active {
  transform: translate3d(0, 0, 0) scale(0.975);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.fade-in.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  * {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  button:hover,
  .card:hover,
  .product-card:hover {
    transform: translate3d(0, -1.5px, 0) scale(1.01);
  }
}
