/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');
:root {
  --primary: #1A2526;
  --accent: #FFC107;
  --primary-dark: #141C1D;
  --accent-dark: #FFB300;
  --secondary: #0ea5e9;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  /* Typogra
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   /* 
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Borders *
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Animation */
  --transition: all 0.3s ease-in-out;
  --transition-slow: all 0.5s ease-in-out;
  --transition-fast: all 0.15s ease-in-out;

  /* Spacing */
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;

  /* Z-index */
  --z-0: 0;
  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-40: 40;
  --z-50: 50;
  --z-modal: 100;
  --z-tooltip: 110;
  --z-popover: 120;

  /* Container */
  --container-padding: 1rem;
  --container-max-width: 1280px;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--gray-50);
  transition: var(--transition-slow);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
  gap: 0.5rem;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: 2px solid transparent;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

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

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


/* ===== NAVBAR ===== */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-30);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 0;
  transition: var(--transition-slow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.navbar .logo:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-30);
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
/* ===== BUY PROXY DROPDOWN - MOBILE OPTIMIZED ===== */

/* Desktop Base Styles */
.buy-proxy-container {
  position: relative;
  display: inline-block;
}

.buy-proxy-link {
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
  border: none;
  background: none;
  white-space: nowrap;
}

.buy-proxy-link:hover {
  color: var(--accent);
}

.dropdown-arrow {
  transition: var(--transition);
  color: var(--gray-500);
  font-size: 0.875rem;
}

.buy-proxy-container.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.proxy-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 300px;
  max-width: 900px;
  width: 90vw;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid var(--gray-100);
  max-height: 80vh;
  overflow-y: auto;
}

.buy-proxy-container.active .proxy-dropdown,
.proxy-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.proxy-types-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.proxy-types-header h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.proxy-types-header p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.4;
}

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

.proxy-type-btn {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 120px;
  justify-content: center;
}

.proxy-type-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.proxy-type-btn.active {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

.proxy-type-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.proxy-type-title {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 1rem;
}

.proxy-type-description {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.3;
  text-align: center;
}

.proxy-type-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.25rem;
}

.countries-section {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
}

.countries-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countries-header i {
  color: var(--accent);
  font-size: 1.125rem;
}

.countries-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-800);
}

.country-count {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.country-item:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.05);
}

.country-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== TABLET OPTIMIZATIONS (769px - 1024px) ===== */
@media (max-width: 1024px) {
  .proxy-dropdown {
    max-width: 85vw;
  }
  
  .proxy-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

/* ===== MOBILE OPTIMIZATIONS (up to 768px) ===== */
@media (max-width: 768px) {
  .buy-proxy-link {
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
  }

  .proxy-dropdown {
    position: fixed;
    top: auto;
    left: 1rem !important;
    right: 1rem !important;
    bottom: auto;
    transform: none !important;
    width: calc(100vw - 2rem);
    max-width: none;
    margin: 0;
    padding: 1.25rem;
    max-height: 85vh;
    border-radius: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .buy-proxy-container.active .proxy-dropdown,
  .proxy-dropdown.show {
    transform: none !important;
  }

  .proxy-types-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }

  .proxy-types-header p {
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .proxy-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .proxy-type-btn {
    padding: 0.75rem;
    min-height: 110px;
    gap: 0.375rem;
    border-radius: 10px;
  }

  .proxy-type-icon {
    font-size: 1.25rem;
  }

  .proxy-type-title {
    font-size: 0.875rem;
    font-weight: 600;
  }

  .proxy-type-description {
    font-size: 0.6875rem;
    line-height: 1.2;
  }

  .proxy-type-price {
    font-size: 0.8125rem;
  }

  .countries-section {
    padding-top: 1.25rem;
  }

  .countries-header {
    justify-content: center;
    margin-bottom: 0.875rem;
    gap: 0.375rem;
  }

  .countries-header h4 {
    font-size: 0.9375rem;
  }

  .country-count {
    padding: 0.2rem 0.375rem;
    font-size: 0.6875rem;
  }

  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 0.625rem;
  }

  .country-item {
    padding: 0.4375rem;
    font-size: 0.8125rem;
    min-height: 44px;
    justify-content: center;
  }

  .country-flag {
    width: 18px;
    height: 13px;
  }
}

/* ===== SMALL MOBILE (up to 480px) ===== */
@media (max-width: 480px) {
  .buy-proxy-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    gap: 0.375rem;
  }

  .proxy-dropdown {
    left: 0.5rem !important;
    right: 0.5rem !important;
    width: calc(100vw - 1rem);
    padding: 1rem;
    border-radius: 12px;
  }

  .proxy-types-header h3 {
    font-size: 1rem;
  }

  .proxy-types-header p {
    font-size: 0.75rem;
  }

  .proxy-types-grid {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }

  .proxy-type-btn {
    padding: 0.625rem;
    min-height: 95px;
    gap: 0.25rem;
  }

  .proxy-type-icon {
    font-size: 1.125rem;
  }

  .proxy-type-title {
    font-size: 0.8125rem;
  }

  .proxy-type-description {
    font-size: 0.65rem;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .country-item {
    padding: 0.375rem;
    font-size: 0.75rem;
    min-height: 40px;
  }

  .countries-header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .countries-header h4 {
    font-size: 0.875rem;
  }
}

/* ===== EXTRA SMALL MOBILE (up to 360px) ===== */
@media (max-width: 360px) {
  .proxy-dropdown {
    padding: 0.875rem;
  }

  .proxy-types-grid {
    gap: 0.5rem;
  }

  .proxy-type-btn {
    padding: 0.5rem;
    min-height: 85px;
    font-size: 0.8rem;
  }

  .proxy-type-title {
    font-size: 0.75rem;
  }

  .proxy-type-price {
    font-size: 0.75rem;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .country-item {
    padding: 0.25rem;
    font-size: 0.7rem;
  }
}

/* ===== TOUCH-FRIENDLY IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
  .proxy-type-btn,
  .country-item {
    min-height: 48px;
    padding: 0.75rem;
  }

  .buy-proxy-link {
    min-height: 44px;
    padding: 0.625rem 1rem;
  }

  .proxy-type-btn:active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
  }

  .country-item:active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
  }
}

/* ===== PROXY TYPES GRID - MODERN DESIGN ===== */

.proxy-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  perspective: 1000px;
}

.proxy-type-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Animated gradient overlay */
.proxy-type-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.proxy-type-btn:hover::before {
  opacity: 1;
}

/* Shimmer effect */
.proxy-type-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.proxy-type-btn:hover::after {
  left: 100%;
}

.proxy-type-btn:hover {
  border-color: var(--accent, #3b82f6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.proxy-type-btn.active {
  border-color: var(--accent, #3b82f6);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, #ffffff 100%);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

.proxy-type-btn.active::before {
  opacity: 1;
}

/* Icon styling */
.proxy-type-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
  color: var(--accent, #3b82f6);
  transition: transform 0.3s ease;
}

.proxy-type-btn:hover .proxy-type-icon {
  transform: scale(1.15) rotate(-5deg);
}

.proxy-type-btn.active .proxy-type-icon {
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

/* Title styling */
.proxy-type-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

/* Description styling */
.proxy-type-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Price badge */
.proxy-type-price {
  font-weight: 700;
  color: var(--accent, #3b82f6);
  margin-top: auto;
  font-size: 1.05rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  display: inline-block;
}

/* ===== COUNTRIES SECTION ===== */

.countries-section {
  border-top: 1.5px solid #e5e7eb;
  padding-top: 2rem;
}

.countries-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  font-size: 1.05rem;
}

.countries-header i {
  color: var(--accent, #3b82f6);
  font-size: 1.25rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.875rem;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  color: #374151;
  position: relative;
  overflow: hidden;
}

.country-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent, #3b82f6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.country-option:hover {
  background: linear-gradient(135deg, var(--accent, #3b82f6), rgba(59, 130, 246, 0.05));
  border-color: var(--accent, #3b82f6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
}

.country-option:hover::before {
  opacity: 0.1;
}

.country-flag {
  font-size: 1.35rem;
  min-width: 24px;
  text-align: center;
}

.country-name {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

/* ===== CUSTOM SCROLLBAR ===== */

.countries-grid::-webkit-scrollbar {
  width: 8px;
}

.countries-grid::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #f3f4f6, #f0f1f3);
  border-radius: 4px;
}

.countries-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent, #3b82f6), #60a5fa);
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.3);
}

.countries-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #2563eb, #3b82f6);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* Firefox scrollbar */
.countries-grid {
  scrollbar-color: var(--accent, #3b82f6) #f3f4f6;
  scrollbar-width: thin;
}

/* ===== MOBILE RESPONSIVENESS ===== */

@media (max-width: 768px) {
  .proxy-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .proxy-type-btn {
    padding: 1.5rem 1rem;
    min-height: 200px;
  }

  .proxy-type-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .proxy-type-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .proxy-type-description {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .proxy-type-price {
    font-size: 0.95rem;
  }

  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.7rem;
    max-height: 200px;
  }

  .country-option {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
  }

  .country-flag {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .proxy-types-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .proxy-type-btn {
    padding: 1.25rem;
    min-height: 180px;
  }

  .proxy-type-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }

  .proxy-type-title {
    font-size: 0.95rem;
  }

  .proxy-type-description {
    font-size: 0.75rem;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-height: 180px;
  }

  .country-option {
    padding: 0.625rem 0.75rem;
  }

  .country-flag {
    font-size: 1rem;
  }

  .country-name {
    font-size: 0.8rem;
  }
}
/* userprofiles */
.user-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.auth-links {
  color: var(--gray-700);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-link {
  color: var(--gray-700);
  text-decoration: none;
  transition: var(--transition);
}

.auth-link:hover {
  color: var(--accent);
}




  /* Modern Wallet Modal Styles - 2025 */
.wallet-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wallet-content {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.2),
      0 2px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Arial', sans-serif;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal:hover {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  transform: scale(1.05);
}

.close-modal:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.close-modal:active {
  transform: scale(0.95);
}

#wallet-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.025em;
}

.wallet-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.25rem;
  letter-spacing: 0.025em;
}

.form-group input,
.form-group select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus {
  border-color: #007bff;
  box-shadow: 
      0 0 0 3px rgba(0, 123, 255, 0.2),
      0 4px 12px rgba(0, 0, 0, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus) {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Custom select arrow */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
}

.btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 12px 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 4px 12px rgba(0, 123, 255, 0.4),
      0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.025em;
}

.btn-primary::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: left 0.5s;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 
      0 8px 20px rgba(0, 123, 255, 0.5),
      0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 
      0 0 0 3px rgba(0, 123, 255, 0.3),
      0 8px 20px rgba(0, 123, 255, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 
      0 2px 8px rgba(0, 123, 255, 0.4),
      0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wallet-error {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  padding: 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  animation: errorShake 0.5s ease-in-out;
}

/* Enhanced Animations */
@keyframes modalFadeIn {
  from { 
      opacity: 0;
      backdrop-filter: blur(0px);
  }
  to { 
      opacity: 1;
      backdrop-filter: blur(8px);
  }
}

@keyframes modalSlideIn {
  from { 
      transform: translateY(-40px) scale(0.95);
      opacity: 0;
  }
  to { 
      transform: translateY(0) scale(1);
      opacity: 1;
  }
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Loading state */
.btn-primary.loading {
  position: relative;
  color: transparent;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive Design */
@media (max-width: 640px) {
  .wallet-modal {
      padding: 20px;
  }
  
  .wallet-content {
      width: 95%;
      padding: 15px;
      margin: 10px auto;
      border-radius: 12px;
  }

  #wallet-modal-title {
      font-size: 1.25rem;
      margin-bottom: 15px;
  }

  .form-group label {
      font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .btn-primary {
      font-size: 16px; /* Prevents zoom on iOS */
      padding: 8px 10px;
  }

  .btn-primary {
      padding: 10px 15px;
  }

  .close-modal {
      width: 28px;
      height: 28px;
      font-size: 20px;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
  .wallet-content {
      max-width: 380px;
  }
}

/* High DPI displays */
@media (min-resolution: 2dppx) {
  .wallet-content {
      box-shadow: 
          0 32px 64px rgba(0, 0, 0, 0.15),
          0 0 0 1px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .wallet-content {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
      border: 1px solid rgba(75, 85, 99, 0.3);
      box-shadow: 
          0 32px 64px rgba(0, 0, 0, 0.5),
          0 0 0 1px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .close-modal {
      background: rgba(255, 255, 255, 0.1);
      color: #d1d5db;
  }

  .close-modal:hover {
      background: rgba(239, 68, 68, 0.2);
      color: #fca5a5;
  }

  #wallet-modal-title {
      background: linear-gradient(135deg, #f9fafb 0%, #d1d5db 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .form-group label {
      color: #e5e7eb;
  }

  .form-group input,
  .form-group select {
      background: #374151;
      border-color: #4b5563;
      color: #f9fafb;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .form-group input::placeholder {
      color: #9ca3af;
  }

  .form-group input:focus,
  .form-group select:focus {
      border-color: #60a5fa;
      box-shadow: 
          0 0 0 4px rgba(96, 165, 250, 0.2),
          0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .form-group input:hover:not(:focus),
  .form-group select:hover:not(:focus) {
      border-color: #6b7280;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .form-group select {
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  }

  .wallet-error {
      color: #fca5a5;
      background: rgba(239, 68, 68, 0.2);
      border-color: rgba(239, 68, 68, 0.3);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .wallet-modal,
  .wallet-content,
  .close-modal,
  .btn-primary,
  .form-group input,
  .form-group select {
      animation: none;
      transition: none;
  }
  
  .btn-primary::before {
      display: none;
  }
}

/* Print styles */
@media print {
  .wallet-modal {
      display: none !important;
  }
}
/* Trust Widget */
.trust-widget {
  position: fixed;
  top: 5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-20);
  transform: translateX(-120%);
  animation: slideIn 0.5s ease 1s forwards;
}

@keyframes slideIn {
  to { transform: translateX(0); }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 37, 38, 0.1), rgba(255, 193, 7, 0.1));
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 37, 38, 0.2), rgba(255, 255, 255, 0));
  z-index: -1;
  animation: pulse 12s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-banner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-banner h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.75rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-banner p {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: var(--gray-600);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ===== TRUST SEALS ===== */
.trust-seals {
  padding: 3rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.seal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.seal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}

.seal i {
  color: var(--accent);
  font-size: 1.5rem;
}

.seal:hover {
  transform: translateY(-5px);
  color: var(--accent);
}

/* ===== PROXY SELECTION ===== */
.proxy-selection {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  position: relative;
  overflow: hidden;
}

.proxy-selection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A2526' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.proxy-options {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.proxy-option {
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--gray-700);
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.proxy-option.active,
.proxy-option:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.proxy-details {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.proxy-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--primary);
}

.quantity-control {
  display: flex;
  align-items: center;
  width: 100%;
}

.quantity-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.quantity-btn:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.quantity-btn:hover {
  background-color: var(--gray-200);
}

#quantity {
  flex: 1;
  text-align: center;
  height: 48px;
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  border-left: none;
  border-right: none;
  margin: 0;
}

input, select, textarea {
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  color: var(--gray-800);
  background-color: var(--white);
  width: 100%;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231A2526' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 12a.5.5 0 0 1-.35-.15l-4-4a.5.5 0 0 1 .7-.7L8 10.79l3.65-3.64a.5.5 0 0 1 .7.7l-4 4a.5.5 0 0 1-.35.15z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select[size] {
  background-image: none;
  height: auto;
}

select option {
  padding: 0.5rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.coupon-group {
  display: flex;
  gap: 0.75rem;
}

.apply-coupon-btn {
  padding: 0 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  height: 48px;
  white-space: nowrap;
  transition: var(--transition);
}

.apply-coupon-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.price-display {
  grid-column: 1 / -1;
  text-align: right;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-md);
}

#total-price {
  color: var(--accent);
}

.price-warning {
  color: var(--danger);
  font-size: 0.9rem;
  text-align: right;
}

.purchase-btn {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.purchase-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== AUTH MODAL ===== */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal, 10000);
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  padding: 1rem;
  box-sizing: border-box;
}

.auth-modal[style*="display: block"] {
  display: flex;
}

.auth-content {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg, 16px);
  width: 90%;
  max-width: 550px;
  min-width: 320px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl, 0 25px 50px rgba(0, 0, 0, 0.15));
  position: relative;
  animation: fadeInModal 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}

@keyframes fadeInModal {
  from { 
    opacity: 0; 
    transform: scale(0.9) translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
}

.close-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition, all 0.3s ease);
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
}

.close-modal:hover {
  color: var(--danger, #ef4444);
  transform: rotate(90deg);
  background: var(--gray-100, #f3f4f6);
}

.close-modal:focus {
  outline: 2px solid var(--accent, #3b82f6);
  outline-offset: 2px;
}

.close-modal:active {
  transform: rotate(90deg) scale(0.95);
}

/* Modal Title */
#auth-modal-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: var(--primary, #1f2937);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}

.auth-tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200, #e5e7eb);
  position: relative;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  color: var(--gray-600, #4b5563);
  position: relative;
  cursor: pointer;
  transition: var(--transition, all 0.3s ease);
  background: none;
  border: none;
  font-size: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-tab:hover {
  color: var(--gray-800, #1f2937);
  background: var(--gray-50, #f9fafb);
}

.auth-tab:focus {
  outline: 2px solid var(--accent, #3b82f6);
  outline-offset: -2px;
}

.auth-tab.active {
  color: var(--accent, #3b82f6);
}

.auth-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent, #3b82f6);
  border-radius: 2px 2px 0 0;
  animation: slideInTab 0.3s ease;
}

@keyframes slideInTab {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}

.auth-form {
  display: none;
  animation: fadeInForm 0.3s ease;
}

.auth-form[style*="display: block"] {
  display: block;
}

@keyframes fadeInForm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: var(--primary, #1f2937);
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-800, #1f2937);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-md, 8px);
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--white, #ffffff);
  box-sizing: border-box;
  min-height: 44px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input:hover {
  border-color: var(--gray-300, #d1d5db);
}

.form-group input::placeholder {
  color: var(--gray-400, #9ca3af);
}

.form-group input:invalid {
  border-color: var(--danger, #ef4444);
}

/* Primary Button */
.btn-primary {
  width: 100%;
  background: var(--accent, #3b82f6);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md, 8px);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  min-height: 44px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--accent-dark, #2563eb);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.btn-primary:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary:disabled {
  background: var(--gray-400, #9ca3af);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-error {
  color: var(--danger, #ef4444);
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  display: none;
  background: var(--error-light, #fef2f2);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--error-border, #fecaca);
  animation: slideInError 0.3s ease;
}

.auth-error[style*="display: block"] {
  display: block;
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
  .auth-modal {
    padding: 0.5rem;
  }
  
  .auth-content {
    width: 95%;
    max-width: none;
    padding: 2rem;
    max-height: 95vh;
  }
  
  #auth-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .close-modal {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .auth-tabs {
    margin-bottom: 1.5rem;
  }
  
  .auth-tab {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-group input {
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .auth-modal {
    padding: 0.25rem;
  }
  
  .auth-content {
    width: 98%;
    padding: 1.5rem;
    border-radius: var(--radius-md, 12px);
  }
  
  #auth-modal-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
  
  .close-modal {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .auth-tabs {
    flex-direction: column;
    border-bottom: none;
    gap: 0.5rem;
    background: var(--gray-100, #f3f4f6);
    padding: 0.5rem;
    border-radius: var(--radius-md, 8px);
  }
  
  .auth-tab {
    border-radius: var(--radius-sm, 6px);
    background: transparent;
    border: 2px solid transparent;
  }
  
  .auth-tab.active {
    background: var(--white, #ffffff);
    border-color: var(--accent, #3b82f6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .auth-tab.active::after {
    display: none;
  }
  
  .form-group input {
    padding: 0.875rem 0.75rem;
  }
}

/* Landscape phone optimization */
@media (max-height: 600px) and (orientation: landscape) {
  .auth-content {
    max-height: 95vh;
    padding: 1.5rem;
  }
  
  #auth-modal-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .auth-tabs {
    margin-bottom: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
}

/* Windows-specific optimizations */
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .auth-content {
    border: 1px solid var(--gray-300);
  }
  
  .close-modal:hover {
    background: var(--gray-200);
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .auth-modal {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .form-group input {
    border-width: 3px;
  }
  
  .btn-primary {
    border: 2px solid transparent;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .auth-content,
  .auth-form,
  .auth-error,
  .close-modal,
  .auth-tab,
  .btn-primary {
    animation: none;
    transition: none;
  }
  
  .close-modal:hover,
  .btn-primary:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .auth-content {
    background: linear-gradient(135deg, var(--dark-bg, #1f2937), var(--dark-card, #374151));
    border: 1px solid var(--dark-border, #4b5563);
  }
  
  #auth-modal-title {
    color: var(--dark-text, #f9fafb);
  }
  
  .auth-tabs {
    border-bottom-color: var(--dark-border, #4b5563);
  }
  
  .auth-tab {
    color: var(--dark-text-muted, #d1d5db);
  }
  
  .auth-tab:hover {
    color: var(--dark-text, #f9fafb);
    background: var(--dark-hover, #4b5563);
  }
  
  .form-group label {
    color: var(--dark-text, #f9fafb);
  }
  
  .form-group input {
    background: var(--dark-input, #374151);
    border-color: var(--dark-border, #4b5563);
    color: var(--dark-text, #f9fafb);
  }
  
  .form-group input::placeholder {
    color: var(--dark-text-muted, #9ca3af);
  }
  
  .close-modal {
    color: var(--dark-text-muted, #9ca3af);
  }
  
  .close-modal:hover {
    color: var(--danger, #ef4444);
    background: var(--dark-hover, #4b5563);
  }
}

/* ===== PROXY DASHBOARD ===== */
/* ===== PROXY DASHBOARD ===== */
.proxy-dashboard {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(26, 37, 38, 0.1), rgba(255, 193, 7, 0.1));
  min-height: 60vh;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
  align-items: start;
}

.dashboard-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg, 16px);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg, 0 10px 25px rgba(0, 0, 0, 0.1));
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  transition: var(--transition, all 0.3s ease);
  border: 1px solid var(--gray-100, #f3f4f6);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent, #3b82f6), var(--primary, #1f2937));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl, 0 25px 50px rgba(0, 0, 0, 0.15));
}

.dashboard-card:hover::before {
  opacity: 1;
}

.dashboard-card:focus-within {
  outline: 2px solid var(--accent, #3b82f6);
  outline-offset: 2px;
}

.dashboard-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary, #1f2937);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

/* Chart Container */
.chart-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

canvas {
  width: 100% !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: 200px !important;
  min-height: 160px;
  border-radius: var(--radius-md, 8px);
}

/* Loading state for charts */
.chart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.chart-loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-top: 2px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== COUPON OFFERS ===== */
.coupon-offers {
  padding: 6rem 0;
  background-color: var(--white, #ffffff);
  position: relative;
}

.coupon-offers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.coupon-card {
  background: linear-gradient(135deg, var(--primary, #1f2937), var(--accent, #3b82f6));
  color: var(--white, #ffffff);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem;
  box-shadow: var(--shadow-lg, 0 10px 25px rgba(0, 0, 0, 0.1));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: var(--transition-slow, all 0.4s ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.coupon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.5;
}

.coupon-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.coupon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl, 0 25px 50px rgba(0, 0, 0, 0.15));
}

.coupon-card:hover::after {
  left: 100%;
}

.coupon-card:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.coupon-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

.coupon-card p {
  font-size: 1rem;
  opacity: 0.9;
  z-index: 2;
  position: relative;
  line-height: 1.5;
  margin: 0;
}

.coupon-discount {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin: 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}

.coupon-code {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md, 8px);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  z-index: 2;
  position: relative;
  margin-top: auto;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .proxy-dashboard {
    padding: 4rem 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .dashboard-card {
    max-width: none;
    padding: 1.25rem;
    min-height: 200px;
  }
  
  .dashboard-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  canvas {
    max-width: 280px !important;
    min-height: 140px;
    max-height: 180px !important;
  }
  
  .coupon-offers {
    padding: 4rem 0;
  }
  
  .coupon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .coupon-card {
    padding: 1.5rem;
    min-height: 200px;
  }
  
  .coupon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .coupon-card p {
    font-size: 0.875rem;
  }
  
  .coupon-discount {
    font-size: 2rem;
    margin: 0.75rem 0;
  }
  
  .coupon-code {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .proxy-dashboard {
    padding: 3rem 0;
  }
  
  .dashboard-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .dashboard-card {
    padding: 1rem;
    min-height: 180px;
    border-radius: var(--radius-md, 12px);
  }
  
  .dashboard-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  canvas {
    max-width: 240px !important;
    min-height: 120px;
    max-height: 160px !important;
  }
  
  .coupon-offers {
    padding: 3rem 0;
  }
  
  .coupon-grid {
    gap: 1rem;
  }
  
  .coupon-card {
    padding: 1.25rem;
    min-height: 180px;
    border-radius: var(--radius-md, 12px);
  }
  
  .coupon-card h3 {
    font-size: 1.375rem;
  }
  
  .coupon-discount {
    font-size: 1.75rem;
    margin: 0.5rem 0;
  }
}

/* Tablet landscape optimization */
@media (min-width: 768px) and (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .dashboard-card {
    max-width: none;
  }
  
  .coupon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screen optimization */
@media (min-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .coupon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .dashboard-card,
  .coupon-card {
    box-shadow: var(--shadow-lg), 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .dashboard-card:hover,
  .coupon-card:hover {
    transform: none;
  }
  
  .dashboard-card:active,
  .coupon-card:active {
    transform: scale(0.98);
  }
  
  .coupon-card {
    min-height: 44px;
  }
}

/* Print styles */
@media print {
  .proxy-dashboard,
  .coupon-offers {
    padding: 2rem 0;
    background: none !important;
  }
  
  .dashboard-card,
  .coupon-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    background: white !important;
    color: black !important;
    break-inside: avoid;
  }
  
  .coupon-card::before,
  .coupon-card::after {
    display: none !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .proxy-dashboard {
    background: linear-gradient(135deg, rgba(26, 37, 38, 0.3), rgba(255, 193, 7, 0.2));
  }
  
  .dashboard-card {
    background: linear-gradient(135deg, var(--dark-card, #374151), var(--dark-bg, #1f2937));
    border-color: var(--dark-border, #4b5563);
  }
  
  .dashboard-card h3 {
    color: var(--dark-text, #f9fafb);
  }
  
  .coupon-offers {
    background-color: var(--dark-bg, #1f2937);
  }
  
  .coupon-card {
    border-color: rgba(255, 255, 255, 0.2);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .dashboard-card,
  .coupon-card {
    transition: none;
  }
  
  .dashboard-card:hover,
  .coupon-card:hover {
    transform: none;
  }
  
  .coupon-card::after {
    transition: none;
  }
  
  .chart-loading::after {
    animation: none;
  }
}

/* ===== PAYMENT METHODS ===== */
/* ===== PAYMENT METHODS ===== */
.payment-methods {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  position: relative;
  overflow: hidden;
}

.payment-methods::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(26, 37, 38, 0.1), transparent 70%);
  z-index: -1;
}

.payment-methods::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 60%);
  z-index: -1;
}

/* Container for the scrolling animation */
.payment-grid {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask: linear-gradient(
    90deg,
    transparent,
    white 10%,
    white 90%,
    transparent
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 10%,
    white 90%,
    transparent
  );
  min-height: 200px;
}

/* Scrolling wrapper that contains the cards */
.payment-scroll-wrapper {
  display: flex;
  animation: scrollRightToLeft 20s linear infinite;
  gap: 2.5rem;
  min-width: calc(200% + 400px);
  align-items: center;
}

/* Create duplicate content for seamless loop */
.payment-scroll-wrapper::after {
  content: "";
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* Individual payment cards */
.payment-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg, 16px);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100, #f3f4f6);
  cursor: pointer;
  user-select: none;
}

/* Continuous right-to-left scrolling animation */
@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover for better UX */
.payment-grid:hover .payment-scroll-wrapper {
  animation-play-state: paused;
}

/* Enhanced card styling */
.payment-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary, #1f2937), var(--accent, #3b82f6));
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.payment-card:hover::after {
  opacity: 1;
}

.payment-card:hover::before {
  left: 100%;
}

.payment-card:focus {
  outline: 2px solid var(--accent, #3b82f6);
  outline-offset: 2px;
}

.payment-card img {
  width: 90px;
  height: auto;
  margin: 0 auto 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.payment-card h3 {
  font-size: 1.25rem;
  color: var(--primary, #1f2937);
  margin-bottom: 0.5rem;
  margin-top: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-weight: 600;
  line-height: 1.2;
}

.payment-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-lg, 0 10px 25px rgba(0, 0, 0, 0.1)), 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-color: var(--accent, #3b82f6);
}

.payment-card:hover img {
  transform: scale(1.15) rotateZ(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.payment-card:hover h3 {
  color: var(--accent, #3b82f6);
  transform: translateY(-2px);
}

/* Payment card status indicators */
.payment-card.verified::before {
  content: "✓";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--success, #10b981);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-card.popular::after {
  content: "Popular";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent, #3b82f6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .payment-methods {
    padding: 4rem 0;
  }
  
  .payment-grid {
    min-height: 180px;
    mask: linear-gradient(
      90deg,
      transparent,
      white 5%,
      white 95%,
      transparent
    );
    -webkit-mask: linear-gradient(
      90deg,
      transparent,
      white 5%,
      white 95%,
      transparent
    );
  }
  
  .payment-scroll-wrapper {
    animation-duration: 15s; /* Faster on mobile */
    gap: 1.5rem;
  }
  
  .payment-card {
    width: 200px;
    min-width: 200px;
    padding: 1.5rem;
    min-height: 160px;
  }
  
  .payment-card img {
    width: 70px;
    max-height: 50px;
    margin-bottom: 1rem;
  }
  
  .payment-card h3 {
    font-size: 1.1rem;
  }
  
  /* Lighter hover effects on mobile */
  .payment-card:hover {
    transform: translateY(-4px) scale(1.02);
  }
  
  .payment-card:hover img {
    transform: scale(1.1);
  }
  
  .payment-card.verified::before {
    top: 0.75rem;
    right: 0.75rem;
    width: 20px;
    height: 20px;
    font-size: 0.6875rem;
  }
  
  .payment-card.popular::after {
    font-size: 0.6875rem;
    padding: 0.1875rem 0.625rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .payment-methods {
    padding: 3rem 0;
  }
  
  .payment-grid {
    min-height: 160px;
  }
  
  .payment-scroll-wrapper {
    animation-duration: 12s; /* Even faster on small screens */
    gap: 1rem;
  }
  
  .payment-card {
    width: 160px;
    min-width: 160px;
    padding: 1rem;
    min-height: 140px;
    border-radius: var(--radius-md, 12px);
  }
  
  .payment-card img {
    width: 60px;
    max-height: 40px;
    margin-bottom: 0.75rem;
  }
  
  .payment-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .payment-card.verified::before {
    top: 0.5rem;
    right: 0.5rem;
    width: 18px;
    height: 18px;
    font-size: 0.625rem;
  }
  
  .payment-card.popular::after {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    top: -6px;
  }
}

/* Tablet landscape optimization */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .payment-scroll-wrapper {
    animation-duration: 18s;
    gap: 2rem;
  }
  
  .payment-card {
    width: 240px;
    min-width: 240px;
    padding: 1.75rem;
  }
  
  .payment-card img {
    width: 80px;
    max-height: 55px;
  }
  
  .payment-card h3 {
    font-size: 1.125rem;
  }
}

/* Large screens optimization */
@media (min-width: 1200px) {
  .payment-scroll-wrapper {
    animation-duration: 25s;
    gap: 3rem;
  }
  
  .payment-card {
    width: 320px;
    min-width: 320px;
    padding: 2.5rem;
    min-height: 240px;
  }
  
  .payment-card img {
    width: 100px;
    max-height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .payment-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
}

/* Alternative animation speeds (add these classes to .payment-scroll-wrapper for variety) */
.payment-scroll-wrapper.slow {
  animation-duration: 30s;
}

.payment-scroll-wrapper.fast {
  animation-duration: 10s;
}

.payment-scroll-wrapper.ultra-slow {
  animation-duration: 45s;
}

/* Reverse direction option */
.payment-scroll-wrapper.reverse {
  animation-direction: reverse;
}

/* Bounce animation variant */
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
}

.payment-scroll-wrapper.bounce {
  animation-name: scrollBounce;
  animation-timing-function: ease-in-out;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .payment-card:hover {
    transform: none;
  }
  
  .payment-card:hover img {
    transform: none;
  }
  
  .payment-card:hover h3 {
    transform: none;
    color: var(--primary);
  }
  
  .payment-card:hover::before {
    left: -100%;
  }
  
  .payment-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .payment-grid:hover .payment-scroll-wrapper {
    animation-play-state: running;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .payment-scroll-wrapper {
    animation: none;
  }
  
  .payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
    mask: none;
    -webkit-mask: none;
    padding: 2rem 0;
  }
  
  .payment-card {
    width: 100%;
    max-width: 280px;
    position: static;
  }
  
  .payment-card::before {
    display: none;
  }
  
  .payment-card:hover {
    transform: none;
  }
  
  .payment-card:hover img {
    transform: none;
  }
}

/* Print styles */
@media print {
  .payment-methods {
    padding: 2rem 0;
    background: none !important;
  }
  
  .payment-methods::before,
  .payment-methods::after {
    display: none !important;
  }
  
  .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    mask: none !important;
    -webkit-mask: none !important;
  }
  
  .payment-scroll-wrapper {
    animation: none !important;
    display: contents;
  }
  
  .payment-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    background: white !important;
    color: black !important;
    break-inside: avoid;
    position: static !important;
    width: auto !important;
    min-width: auto !important;
  }
  
  .payment-card::before,
  .payment-card::after {
    display: none !important;
  }
  
  .payment-card h3 {
    color: black !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .payment-methods {
    background: linear-gradient(135deg, var(--dark-card, #374151), var(--dark-bg, #1f2937));
  }
  
  .payment-methods::before {
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 70%);
  }
  
  .payment-methods::after {
    background: radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.05), transparent 60%);
  }
  
  .payment-card {
    background: linear-gradient(135deg, var(--dark-card, #374151), var(--dark-bg-light, #4b5563));
    border-color: var(--dark-border, #6b7280);
  }
  
  .payment-card h3 {
    color: var(--dark-text, #f9fafb);
  }
  
  .payment-card:hover h3 {
    color: var(--accent-light, #60a5fa);
  }
  
  .payment-card img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  
  .payment-card:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .payment-card {
    border: 2px solid var(--primary);
  }
  
  .payment-card::after {
    height: 6px;
  }
  
  .payment-card h3 {
    font-weight: 700;
  }
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(26, 37, 38, 0.1), rgba(255, 193, 7, 0.1));
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.2), transparent 70%);
  z-index: -1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 37, 38, 0.1), transparent 70%);
  transition: var(--transition-slow);
}

.feature-card:hover::before {
  transform: scale(1.3);
}

.feature-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 1rem;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* ===== SPEED TEST ===== */
.speed-test {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.speed-test::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 37, 38, 0.05), transparent);
  z-index: -1;
}

.speed-test-form {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.speed-test-form .form-group {
  flex: 1;
  min-width: 220px;
}

.start-speed-test {
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.start-speed-test::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-fast);
}

.start-speed-test:hover::before {
  left: 100%;
}

.speed-test-results {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 850px;
  margin: 0 auto;
}

.speed-test-results[style*="display: block"] {
  display: flex;
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.25rem;
  color: var(--gray-800);
  position: relative;
}

.result-item::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  width: 50%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.result-item:hover::after {
  opacity: 1;
}

.result-item span:first-child {
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.result-item span:last-child {
  font-weight: 700;
  color: var(--accent);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== NETWORK STATUS ===== */
.proxy-status {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(26, 37, 38, 0.1), rgba(255, 193, 7, 0.1));
  position: relative;
}

.proxy-status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A2526' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.522 4.477-10 10-10s10 4.478 10 10-4.477 10-10 10-10-4.478-10-10zM10 10c0-5.522 4.477-10 10-10s10 4.478 10 10-4.477 10-10 10-10-4.478-10-10zM10 50c0-5.522 4.477-10 10-10s10 4.478 10 10-4.477 10-10 10-10-4.478-10-10zM50 10c0-5.522 4.477-10 10-10s10 4.478 10 10-4.477 10-10 10-10-4.478-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

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

.status-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  position: relative;
}

.status-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: var(--transition);
}

.status-card:hover::after {
  opacity: 0.3;
}

.status-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.status-indicator {
  display: inline-block;
  font-weight: 600;
  color: var(--gray-600);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background-color: var(--gray-100);
  transition: var(--transition);
}

.status-indicator.online {
  background: linear-gradient(135deg, var(--success), #0d8b6b);
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.status-indicator.offline {
  background: linear-gradient(135deg, var(--danger), #dc3545);
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.status-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.refresh-status {
  display: block;
  margin: 2.5rem auto 0;
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.refresh-status::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-fast);
}

.refresh-status:hover::before {
  left: 100%;
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(26, 37, 38, 0.1), transparent 70%);
  z-index: -1;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-slide p {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-slide h4 {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-prev,
.slider-next {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.slider-prev::after,
.slider-next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.slider-prev:hover::after,
.slider-next:hover::after {
  opacity: 0.3;
}

.slider-prev:hover,
.slider-next:hover {
  transform: translateY(-5px);
}


/* ===== BLOG PREVIEW ===== */
.blog-preview {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.blog-preview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231A2526' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  position: relative;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  padding: 1.25rem 1.5rem 0.75rem;
}

.blog-card p {
  color: var(--gray-600);
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
}

.blog-card .btn-secondary {
  margin: 0 1.5rem 1.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
  z-index: 1;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(26, 37, 38, 0.05), rgba(255, 193, 7, 0.05));
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(26, 37, 38, 0.1), transparent 70%);
  z-index: -1;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item summary {
  padding: 1.25rem 1.75rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary:hover {
  background-color: var(--gray-100);
}

.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item[open] summary {
  background-color: var(--gray-100);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 1.25rem 1.75rem;
  color: var(--gray-600);
  font-size: 1rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== AFFILIATE PROGRAM ===== */
.affiliate-program {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
}

.affiliate-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.affiliate-card, .affiliate-stats {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.affiliate-card h3, .affiliate-stats h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.affiliate-card p, .affiliate-stats p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

#affiliate-link {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background-color: var(--gray-50);
  color: var(--gray-700);
  transition: var(--transition);
}

#affiliate-link:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.copy-btn, .generate-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
}

.copy-btn:hover, .generate-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
}

.affiliate-stats h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 1rem 0 0.5rem;
}

.reward-list {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
}

.newsletter .section-title,
.newsletter .section-subtitle {
  color: var(--white);
}

.newsletter .section-subtitle {
  max-width: 650px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 650px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--gray-800);
  transition: var(--transition);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn-primary {
  padding: 0.875rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.newsletter-form .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-fast);
}

.newsletter-form .btn-primary:hover::before {
  left: 100%;
}

/* ===== FOOTER ===== */
/* ===== MODERN FOOTER ===== */
.footer {
  padding: 5rem 0 2rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--gray-200);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(255, 193, 7, 0.1), transparent 70%);
  z-index: -1;
}

.footer-content {
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand .logo span {
  background: linear-gradient(135deg, var(--white), var(--gray-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-300);
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.25rem 0;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -10px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 15px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-300);
  font-size: 0.9rem;
}

.contact-item i {
  width: 18px;
  color: var(--accent);
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-dark), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.footer-social a::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: var(--transition-slow);
}

.footer-social a:hover::before {
  left: 100%;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-newsletter {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 300px;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: var(--gray-400);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--gray-300);
}

.security-badge i {
  color: #10b981;
  font-size: 1rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 1.5rem 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .newsletter-form {
    max-width: none;
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 1rem 0;
  }
  
  .footer-grid {
    gap: 1.5rem;
  }
  
  .footer-social {
    gap: 0.75rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
  
  .security-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===== MOBILE RESPONSIVENESS & HAMBURGER ADDITIONS ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--white), var(--gray-50));
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    z-index: var(--z-20);
    text-align: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-banner h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
  }

  .hero-banner p {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .proxy-form {
    grid-template-columns: 1fr;
  }

  .dashboard-grid, .features-grid, .payment-grid, .status-grid, .blog-grid, .coupon-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .testimonial-slide p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .proxy-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .speed-test-form, .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .auth-content, .deposit-content {
    max-width: 90%;
    padding: 1.5rem;
  }

  .auth-tabs {
    flex-direction: column;
  }

  .auth-tab {
    padding: 0.75rem;
  }

  .buy-proxy-container .proxy-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .hero-banner h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }

  .nav-link {
    padding: 0.375rem 0;
  }

  .user-profile {
    gap: 1rem;
  }

  .deposit-btn {
    padding: 0.375rem 1rem;
  }

  .trust-widget {
    top: 3rem;
    padding: 0.625rem 1rem;
  }

  .proxy-details {
    padding: 1.5rem;
  }

  .coupon-card, .payment-card, .feature-card, .status-card {
    padding: 1.25rem;
  }

  .blog-card img {
    height: 180px;
  }

  .newsletter-form .btn-primary {
    width: 100%;
  }
}

/* Ensure Font Awesome is included for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

     /* VPS Popup Styles */
     .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .popup-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  .popup-container {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 20px;
      padding: 0;
      max-width: 450px;
      width: 90%;
      position: relative;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transform: scale(0.7) translateY(50px);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      overflow: hidden;
  }

  .popup-overlay.active .popup-container {
      transform: scale(1) translateY(0);
  }

  .popup-header {
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      color: white;
      padding: 25px 30px;
      text-align: center;
      position: relative;
  }

  .popup-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

  .beta-badge {
      background: rgba(255, 255, 255, 0.2);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      display: inline-block;
      border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .popup-title {
      font-size: 24px;
      font-weight: 700;
      margin: 0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .popup-body {
      padding: 30px;
      text-align: center;
      background: white;
      color: #333;
  }

  .popup-icon {
      font-size: 48px;
      margin-bottom: 20px;
      display: block;
      color: #667eea;
  }

  .popup-message {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
      color: #666;
  }

  .popup-features {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 20px;
      margin: 20px 0;
      text-align: left;
  }

  .popup-features h4 {
      color: #333;
      margin: 0 0 10px 0;
      font-size: 16px;
      font-weight: 600;
  }

  .popup-features ul {
      list-style: none;
      padding: 0;
      margin: 1;
  }

  .popup-features li {
      padding: 5px 0;
      position: relative;
      padding-left: 25px;
      font-size: 14px;
      color: #666;
  }

  .popup-features li::before {
      content: '⚡';
      position: absolute;
      left: 0;
      color: #667eea;
  }

  .popup-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 25px;
  }

  .popup-btn {
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      min-width: 120px;
  }

  .popup-btn-primary {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }

  .popup-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  }

  .popup-btn-secondary {
      background: #e9ecef;
      color: #666;
      border: 2px solid #dee2e6;
  }

  .popup-btn-secondary:hover {
      background: #f8f9fa;
      border-color: #adb5bd;
  }

  .popup-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      font-size: 20px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
  }

  .popup-close:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .popup-container {
          max-width: 95%;
          margin: 20px;
      }

      .popup-header {
          padding: 20px;
      }

      .popup-title {
          font-size: 20px;
      }

      .popup-body {
          padding: 20px;
      }

      .popup-buttons {
          flex-direction: column;
          gap: 10px;
      }

      .popup-btn {
          width: 100%;
      }

      .popup-icon {
          font-size: 36px;
      }

      .popup-message {
          font-size: 14px;
      }
  }

  @media (max-width: 480px) {
      .popup-container {
          max-width: 100%;
          margin: 10px;
          border-radius: 15px;
      }

      .popup-header {
          padding: 15px;
      }

      .popup-body {
          padding: 15px;
      }

      .popup-title {
          font-size: 18px;
      }

      .beta-badge {
          font-size: 10px;
          padding: 6px 12px;
      }
    }



    /* Additional styles for forgot password functionality */
.auth-links-extra {
  margin-top: 15px;
  text-align: center;
}

.forgot-password-link,
.back-to-login-link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.forgot-password-link:hover,
.back-to-login-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.form-help {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  line-height: 1.4;
}

/* Enhanced auth tab styling for three tabs */
.auth-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.auth-tab {
  flex: 1;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: all 0.2s ease;
  position: relative;
}

.auth-tab:hover {
  color: #333;
  background-color: #f8f9fa;
}

.auth-tab.active {
  color: #007bff;
  font-weight: 600;
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #007bff;
}

/* Loading state for buttons */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d;
}

/* Success message styling */
.auth-error {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
  .auth-tab {
      font-size: 12px;
      padding: 10px 8px;
  }
  
  .forgot-password-link,
  .back-to-login-link {
      font-size: 13px;
  }
  
  .form-help {
      font-size: 11px;
  }
}