@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-700.woff2') format('woff2');
}
:root {
    --bg-primary: #0a0e27;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.4);
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --success: #10b981;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', 'Noto Sans Arabic', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Hero */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

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

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Auth Container */
.auth-container {
    max-width: 400px;
    margin: 8rem auto;
    padding: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--accent);
}

.auth-container button {
    width: 100%;
    margin-top: 1rem;
}

.auth-container p {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.auth-container a {
    color: var(--accent);
    text-decoration: none;
}
/* Forms */
.auth-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
}

/* Dashboard */
.dashboard {
    padding-top: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.modem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modem-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.status-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 10px;
}

.status-badge.online {
    background: #10b981;
    color: white;
}

.card-body p {
    margin: 10px 0;
    font-size: 0.95rem;
    color: #94a3b8;
}

.card-body strong {
    color: #e2e8f0;
}

.card-footer {
    margin-top: 24px;
}

.btn-rotate {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-rotate:hover:not(:disabled) {
    opacity: 0.9;
}

.btn-rotate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* CSS Custom Properties - Dark Theme */
:root {
  --bg-primary: #0F0B1F;
  --bg-secondary: #1A1432;
  --card-bg: #1A1729;
  --card-elevated: #1E1B2E;
  --accent-purple: #8B5CF6;
  --accent-purple-light: #A78BFA;
  --accent-cyan: #3B82F6;
  --accent-pink: #EC4899;
  --accent-green: #10B981;
  --text-primary: #FFFFFF;
  --text-secondary: #D4D4D8;
  --text-muted: #71717A;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glow-purple: rgba(139, 92, 246, 0.5);
  --glow-cyan: rgba(59, 130, 246, 0.5);
  --glow-pink: rgba(236, 72, 153, 0.5);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
}

/* Pricing Section */
.pricing-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

/* Background Effects */
.pricing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-label {
  display: inline-block;
  color: var(--accent-purple-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--glow-purple);
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.pricing-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
  opacity: 0.8;
}

/* Section Navigation */
.section-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-btn {
  padding: 14px 28px;
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border-color: var(--accent-purple-light);
}

.section-btn.active {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 8px 24px var(--glow-purple);
}

.section-icon {
  width: 20px;
  height: 20px;
}

/* ZIP Search Section */
.zip-search-container {
  max-width: 800px;
  margin: 0 auto 48px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-elevated);
}

.zip-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
}

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

.form-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.form-input, .form-select {
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px var(--glow-purple);
}

.search-results {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  width: 100%;
}

/* Country/State Navigation */
.country-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.country-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.country-tab.active {
  background: var(--accent-purple);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 0 20px var(--glow-purple);
}

.tab-flag {
  font-size: 18px;
}

.state-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 32px;
}

.state-tab {
  padding: 8px 16px;
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.state-tab.active {
  background: var(--accent-purple);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 0 15px var(--glow-purple);
}

/* Pricing Grid & Cards */
.pricing-grid, .multigeo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-purple .card-accent {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  box-shadow: 0 0 20px var(--glow-purple);
}

.multigeo-card {
  border: 1px solid var(--accent-pink);
  box-shadow: 0 0 40px var(--glow-pink);
}

.multigeo-card .card-accent {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
}

.multigeo-badge {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #DB2777 100%);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-block;
}

.card-header {
  margin-bottom: 16px;
}

.card-label {
  display: block;
  color: var(--accent-purple-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.duration-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.pill-btn {
  flex: 1;
  padding: 8px 12px;
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-btn.active {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border-color: transparent;
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--glow-purple);
}

.pricing-display {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-current {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px var(--glow-purple);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-purple-light);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--glow-purple));
}

.cta-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--glow-purple);
}

.cta-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--card-elevated);
}

.pricing-disclaimer {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-title { font-size: 36px; }
  .zip-form { grid-template-columns: 1fr; }
  .section-navigation { flex-direction: column; }
  .duration-pills { flex-direction: column; }
}/* Main CSS for new design - Dark Theme */

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 23, 41, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-purple);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.admin-link {
  color: var(--accent-cyan);
  font-weight: 600;
}

.nav-link.admin-link:hover {
  color: #60a5fa;
}

.nav-link.admin-link::after {
  background: var(--accent-cyan);
}

.nav-actions {
  display: flex;
  gap: 12px;
  margin-left: 16px;
}

.nav-btn-secondary,
.nav-btn-primary {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-btn-secondary {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-subtle);
}

.nav-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-btn-primary {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border: none;
  box-shadow: 0 4px 20px var(--glow-purple);
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--glow-purple);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero-section {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  color: var(--accent-purple-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 0 20px var(--glow-purple);
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
  line-height: 1.6;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-purple);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.visual-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-elevated);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.visual-status {
  font-size: 14px;
  font-weight: 600;
}

.visual-status.online {
  color: var(--accent-green);
}

.visual-network {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--card-elevated);
  padding: 4px 12px;
  border-radius: 12px;
}

.visual-body {
  margin-bottom: 24px;
}

.visual-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-row:last-child {
  border-bottom: none;
}

.visual-label {
  font-size: 14px;
  color: var(--text-muted);
}

.visual-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.visual-value.success {
  color: var(--accent-green);
}

.visual-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.visual-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--glow-purple);
}

/* Features Section */
.features-section {
  padding: 80px 24px;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--accent-purple-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

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

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon.purple {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple-light);
}

.feature-icon.cyan {
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-cyan);
}

.feature-icon.pink {
  background: rgba(236, 72, 153, 0.2);
  color: var(--accent-pink);
}

.feature-icon.green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
}

.feature-icon.orange {
  background: rgba(251, 146, 60, 0.2);
  color: #FB923C;
}

.feature-icon.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.feature-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Networks Section */
.networks-section {
  padding: 80px 24px;
  background: rgba(0, 0, 0, 0.2);
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.network-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.network-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.network-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.network-badge.telekom {
  background: rgba(226, 0, 116, 0.2);
  color: #E20074;
}

.network-badge.vodafone {
  background: rgba(230, 0, 0, 0.2);
  color: #E60000;
}

.network-badge.o2 {
  background: rgba(0, 159, 227, 0.2);
  color: #009FE3;
}

.network-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.network-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 20px 0;
}

.network-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.network-features li {
  background: var(--card-elevated);
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 80px 24px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-elevated);
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.cta-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-purple);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px 24px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent-purple);
  color: var(--text-primary);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.payment-badge {
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.payment-badge:hover {
  background: var(--card-hover);
  border-color: var(--accent-purple);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-purple-light);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badge {
  background: var(--card-elevated);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright,
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Page Title & Description */
.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  text-align: center;
}

.page-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(26, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-actions {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
  }

  .nav-btn-secondary,
  .nav-btn-primary {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .features-grid,
  .networks-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }
}

/* FAQ Section */
.faq-section {
  padding: 140px 24px 80px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  gap: 40px;
}

.faq-category {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.category-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-purple-light);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-purple-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-answer p {
  margin: 16px 0 0 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-cta {
  margin-top: 60px;
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}

.faq-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.faq-cta-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
}

.btn-faq-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-purple);
}

/* Contact Section */
.contact-section {
  padding: 140px 24px 80px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.info-description {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px 0;
}

.info-link {
  font-size: 14px;
  color: var(--accent-purple-light);
  text-decoration: none;
  font-weight: 500;
}

.info-link:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--glow-purple);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-purple);
}

.success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-green);
  border-radius: var(--radius-sm);
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 500;
}

.success-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

/* Dashboard Section */
.dashboard-section {
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.header-content {}

.dashboard-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.dashboard-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

.btn-refresh {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-refresh:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
}

.btn-refresh:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-refresh .btn-icon {
  width: 18px;
  height: 18px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-purple);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border-color: transparent;
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--glow-purple);
}

/* Proxies Section */
.proxies-section {
  min-height: 400px;
}

.proxies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.proxy-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-elevated);
}

.proxy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.proxy-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.proxy-accent.telekom {
  background: linear-gradient(135deg, #E20074 0%, #FF1493 100%);
  box-shadow: 0 0 20px rgba(226, 0, 116, 0.5);
}

.proxy-accent.vodafone {
  background: linear-gradient(135deg, #E60000 0%, #FF4444 100%);
  box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
}

.proxy-accent.o2 {
  background: linear-gradient(135deg, #009FE3 0%, #00C8FF 100%);
  box-shadow: 0 0 20px rgba(0, 159, 227, 0.5);
}

.proxy-accent.default {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  box-shadow: 0 0 20px var(--glow-purple);
}

.proxy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.proxy-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-dot.online {
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.status-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
}

.proxy-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proxy-badge.telekom {
  background: rgba(226, 0, 116, 0.2);
  color: #E20074;
}

.proxy-badge.vodafone {
  background: rgba(230, 0, 0, 0.2);
  color: #E60000;
}

.proxy-badge.o2 {
  background: rgba(0, 159, 227, 0.2);
  color: #009FE3;
}

.proxy-badge.default {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple-light);
}

.proxy-body {
  margin-bottom: 20px;
}

.proxy-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proxy-info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 13px;
  color: var(--text-muted);
}

.info-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.info-value.mono {
  font-family: 'Courier New', monospace;
  font-size: 13px;
}

.proxy-footer {
  display: flex;
  gap: 12px;
}

.btn-rotate-ip {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-rotate-ip:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--glow-purple);
}

.btn-rotate-ip:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-rotate-ip .btn-icon {
  width: 16px;
  height: 16px;
}

.btn-copy {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-purple-light);
  border-color: var(--accent-purple);
}

.btn-copy .btn-icon {
  width: 18px;
  height: 18px;
}

/* Loading State */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-subtle);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

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

.loading-state p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

/* Error State */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.error-icon {
  width: 64px;
  height: 64px;
  color: #F87171;
  margin-bottom: 20px;
}

.error-state p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.empty-icon {
  width: 64px;
  height: 64px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0 0 24px 0;
}

.btn-empty-cta {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-empty-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-purple);
}

/* Dashboard Responsive */
@media (max-width: 768px) {
  .dashboard-section {
    padding: 100px 16px 60px;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 20px;
  }

  .btn-refresh {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .filter-tab {
    width: 100%;
  }
}

/* Auth Section */
.auth-section {
  padding: 140px 24px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-section .auth-form {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.auth-section .error {
  color: #F87171;
  font-size: 14px;
  margin: 12px 0;
  padding: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
}

.auth-section .success {
  color: var(--accent-green);
  font-size: 14px;
  margin: 12px 0;
  padding: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-green);
  border-radius: var(--radius-sm);
}

.auth-section .success-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.auth-section .error a,
.auth-section .success a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.85;
}

.auth-section .error a:hover,
.auth-section .success a:hover {
  opacity: 1;
}

/* Pricing Section Adjustment */
.pricing-section {
  padding-top: 140px;
}

/* Auth Responsive */
@media (max-width: 768px) {
  .auth-section {
    padding: 100px 16px 60px;
  }
}

/* Admin Dashboard */
.admin-section {
  padding: 120px 24px 60px;
  min-height: 100vh;
}

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-container h1 {
  font-size: 32px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.tab-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border-color: transparent;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.stat-card h3 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.users-table-container {
  overflow-x: auto;
}

.users-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.users-table th,
.users-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.users-table th {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
}

.users-table td {
  color: var(--text-primary);
}

.users-table tr:hover {
  background: var(--bg-tertiary);
}

@media (max-width: 768px) {
  .admin-section {
    padding: 100px 16px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-value {
    font-size: 24px;
  }
}

/* Admin Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-elevated);
  animation: modal-in 0.3s ease-out;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal h2 {
  margin: 0 0 24px 0;
  font-size: 24px;
  color: var(--text-primary);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

/* Admin Actions */
.row-actions {
  display: flex;
  gap: 8px;
}

.btn-small {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all 0.2s;
}

.btn-small:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

.btn-danger {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.active,
.status-badge.completed,
.status-badge.success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
}

.status-badge.inactive,
.status-badge.expired,
.status-badge.failed,
.status-badge.cancelled {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.table-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-purple);
}

.form-group.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-group.checkbox input {
  width: auto;
}

.product-target {
  display: flex;
  flex-direction: column;
}

.sub-text {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-primary,
.btn-secondary {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border: none;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}
.mono {
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

/* ============================================
   API DOCS PAGE
   ============================================ */

/* Additional root variables for docs */
:root {
  --accent-purple-rgb: 139, 92, 246;
  --accent-cyan-rgb: 59, 130, 246;
  --border-subtle: rgba(255, 255, 255, 0.08);
}

/* Docs Page Wrapper */
.docs-page-wrapper {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0F0B1F 0%, #0c0c1e 50%, #0f1124 100%);
}

/* 3-Column Grid Layout */
.docs-grid {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  min-height: 100vh;
  align-items: start;
}

/* ---- Left Sidebar ---- */
.docs-sidebar {
  position: sticky;
  top: 90px;
  padding: 0 24px 0 0;
  border-right: 1px solid var(--border-subtle);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.docs-sidebar::-webkit-scrollbar {
  width: 4px;
}
.docs-sidebar::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 2px;
}

.docs-sidebar h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted, #71717A);
  margin: 0 0 16px 0;
}

/* Side Nav Links */
.side-nav-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary, #94a3b8);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
  border-left: 2px solid transparent;
}

.side-nav-link:hover {
  color: var(--text-primary, #f8fafc);
  background: rgba(139, 92, 246, 0.08);
  border-left-color: rgba(139, 92, 246, 0.4);
}

.side-nav-link.active {
  color: var(--accent-purple-light, #A78BFA);
  background: rgba(139, 92, 246, 0.12);
  border-left-color: var(--accent-purple-light, #A78BFA);
  font-weight: 600;
}

/* ---- Main Content ---- */
.docs-content {
  padding: 0 48px;
  min-width: 0;
}

/* Section spacing */
.docs-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-section:last-child {
  border-bottom: none;
}

/* Section headings */
.docs-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #f8fafc);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  letter-spacing: -0.3px;
}

/* ---- Endpoint Cards ---- */
.endpoint-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  border-left: 3px solid var(--accent-purple-light, #A78BFA);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.endpoint-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), -2px 0 0 rgba(139, 92, 246, 0.4);
}

.endpoint-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Method badges */
.method-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
}

.method-badge.get {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.method-badge.post {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.method-badge.put {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.method-badge.delete {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Endpoint path */
.endpoint-path {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary, #f8fafc);
  letter-spacing: 0.2px;
}

/* ---- Code Blocks ---- */
.docs-code-container {
  background: #0d0d1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-lang-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-purple-light, #A78BFA);
  background: rgba(139, 92, 246, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.copy-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary, #94a3b8);
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  color: var(--text-primary, #f8fafc);
  background: rgba(255,255,255,0.05);
  border-color: rgba(139, 92, 246, 0.4);
}

.code-pre {
  margin: 0;
  padding: 20px 24px;
  overflow-x: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #e2e8f0;
  white-space: pre;
}

.code-pre::-webkit-scrollbar {
  height: 4px;
}
.code-pre::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 2px;
}

/* Code syntax tokens */
.code-token-keyword {
  color: #c084fc;
  font-weight: 600;
}

.code-token-string {
  color: #86efac;
}

.code-token-const {
  color: #60a5fa;
}

.code-token-function {
  color: #f9a8d4;
}

.code-token-comment {
  color: #6b7280;
  font-style: italic;
}

.code-token-number {
  color: #fb923c;
}

/* ---- Right Column ---- */
.docs-right-col {
  position: sticky;
  top: 90px;
  padding: 0 0 0 32px;
  border-left: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.docs-right-col::-webkit-scrollbar {
  width: 4px;
}
.docs-right-col::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 2px;
}

/* Info boxes in right col */
.info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.info-box:hover {
  border-color: rgba(139, 92, 246, 0.25);
}

.info-box h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #f8fafc);
  margin: 0 0 10px 0;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .docs-grid {
    grid-template-columns: 220px 1fr 240px;
    padding: 80px 16px 80px;
  }
  .docs-content {
    padding: 0 32px;
  }
}

@media (max-width: 1024px) {
  .docs-grid {
    grid-template-columns: 200px 1fr;
  }
  .docs-right-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .docs-grid {
    grid-template-columns: 1fr;
    padding: 80px 16px 60px;
  }
  .docs-sidebar {
    display: none;
  }
  .docs-content {
    padding: 0;
  }
  .endpoint-card {
    padding: 18px 16px;
  }
  .docs-section h2 {
    font-size: 22px;
  }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-actions {
    margin-left: 0;
    margin-right: 16px;
}

[dir="rtl"] .nav-links {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .hero-title, [dir="rtl"] .section-title {
    letter-spacing: normal;
}

[dir="rtl"] .form-group label {
    text-align: right;
}

[dir="rtl"] .shimmer-line {
    transform-origin: right;
}

[dir="rtl"] .visual-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-hero-primary svg, [dir="rtl"] .btn-hero-secondary svg {
    margin-right: 0;
    margin-left: 8px;
    transform: scaleX(-1);
}

[dir="rtl"] .pricing-card, [dir="rtl"] .feature-card {
    text-align: right;
}
/* Language Switcher Styles */
.lang-switcher {
    position: relative;
    display: inline-block;
    text-align: left;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 200px;
    background: var(--card-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-inner {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.lang-dropdown-inner::-webkit-scrollbar {
    width: 6px;
}
.lang-dropdown-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-item:hover {
    background: rgba(139, 92, 246, 0.15); /* Soft purple */
    color: var(--text-primary);
}

.lang-item.active {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-primary);
    font-weight: 600;
}

.lang-flag {
    font-size: 16px;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}
[dir="rtl"] .lang-item {
    text-align: right;
}
[dir="rtl"] .lang-btn svg {
    margin-right: 8px;
}
