* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  background: #0a0e27;
  color: #f5f7fa;
  line-height: 1.5;
  min-height: 100vh;
  animation: pageAppear 0.8s ease-out forwards;
  opacity: 0;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(2px 2px at 20px 30px, #f5f7fa, rgba(245,247,250,0)),
    radial-gradient(2px 2px at 60px 70px, #ffffff, rgba(255,255,255,0)),
    radial-gradient(1px 1px at 50px 50px, #dddddd, rgba(221,221,221,0)),
    radial-gradient(1px 1px at 130px 80px, #ffffff, rgba(255,255,255,0)),
    radial-gradient(2px 2px at 90px 10px, #f5f7fa, rgba(245,247,250,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
  animation: twinkleStar 5s ease-in-out infinite;
}

@keyframes twinkleStar {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes pageAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(-24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.3); }
  50% { text-shadow: 0 0 20px rgba(255,255,255,0.6); }
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 20px;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  animation: glow 3s ease-in-out infinite;
}

.logo-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.08);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0);
}

.btn:hover,
.btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #c5d0dd;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #ffffff;
}

.hero {
  text-align: center;
  padding: 120px 32px 60px;
  border-radius: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1), inset 0 0 30px rgba(255, 255, 255, 0.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 0.9s ease-out forwards;
  margin-bottom: 48px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 60px);
  margin: 0 0 20px;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  letter-spacing: -1px;
}

.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #c5d0dd;
  margin: 0 0 32px;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px;
  border-radius: 18px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.card.highlighted {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

.card.selected {
  border-color: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 20px 40px rgba(255, 255, 255, 0.2);
  transform: translateY(-14px) scale(1.04);
  animation: pulseTariff 1.6s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

@keyframes pulseTariff {
  0% { transform: translateY(-12px) scale(1.04); }
  50% { transform: translateY(-16px) scale(1.06); }
  100% { transform: translateY(-12px) scale(1.04); }
}

.card h2 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.price {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin: 16px 0 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: -1px;
}

footer {
  margin-top: 50px;
  text-align: center;
  padding: 24px;
  color: #8a96a8;
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-bright {
  text-align: center;
  padding: 80px 24px;
  margin-top: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-bright h1 {
  font-size: clamp(28px, 6vw, 50px);
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 900;
}

.hero-bright p {
  color: #c5d0dd;
  max-width: 700px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 800;
}

.info-card ul,
.info-card p {
  color: #c5d0dd;
  margin: 0;
}

.info-card ul {
  margin-top: 12px;
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 8px;
}

.faq-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.faq-panel h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: #c5d0dd;
}

.services-box {
  position: relative;
  margin: 48px auto 32px;
  width: 100%;
  max-height: none;
  overflow: visible;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
  z-index: 1;
  animation: slideUp 0.9s ease-out forwards;
}

.services-title {
  font-size: 15px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.services-title::before {
  content: '🔆';
  font-size: 18px;
  animation: spin 4s linear infinite;
}

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

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fa;
  padding: 6px 13px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
}

.service::before {
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-size: 0.95em;
  line-height: 1;
}

.service-telegram::before { content: '✈️'; }
.service-instagram::before { content: '📸'; }
.service-youtube::before { content: '📺'; }
.service-tiktok::before { content: '🎵'; }
.service-whatsapp::before { content: '💬'; }
.service-twitter::before { content: '🐦'; }
.service-netflix::before { content: '🎬'; }
.service-discord::before { content: '💎'; }
.service-chatgpt::before { content: '🤖'; }
.service-gemini::before { content: '🌌'; }
.service-facebook::before { content: '📘'; }
.service-roblox::before { content: '🕹️'; }
.service-linkedin::before { content: '💼'; }
.service-gov::before { content: '🏛️'; }

@media (max-width: 960px) {
  .services-box {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .services-box {
    width: 100%;
    padding: 12px 16px;
  }
}

@media (max-width: 640px) {
  .services-box {
    display: none;
  }

  .hero {
    padding: 60px 16px 40px;
  }

  .topbar {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .card {
    width: 100%;
  }
}


@keyframes pageAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.btn-secondary {
  background: transparent;
  color: #cfd8e3;
  border: 1px solid rgba(148,163,184,0.45);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(56,189,248,0.16);
  color: #38bdf8;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #38bdf8;
}

.logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.4));
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
}

.btn {
  background: #334155;
  color: #e2e8f0;
  border: 1px solid rgba(148,163,184,0.4);
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: #38bdf8;
  color: #020617;
}

.btn-primary {
  border-color: #38bdf8;
  background: #38bdf8;
  color: #020617;
}

.hero {
  text-align: center;
  padding: 120px 16px 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  margin: 0 0 14px;
}

.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #cbd5e1;
  margin: 0 0 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148,163,184,0.35);
  padding: 24px;
  border-radius: 18px;
  width: 100%;
  text-align: center;
  box-shadow: 0 18px 28px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 35px rgba(0,0,0,0.45);
  border-color: rgba(56,189,248,0.55);
}

.card.highlighted {
  background: linear-gradient(135deg, rgba(56,189,248,0.14), rgba(56,189,248,0.08));
  border-color: #38bdf8;
  box-shadow: 0 20px 30px rgba(56,189,248,0.35);
}

.card.selected {
  border-color: #38bdf8;
  box-shadow: 0 0 24px rgba(56,189,248,0.65), 0 20px 30px rgba(56,189,248,0.25);
  transform: translateY(-12px) scale(1.03);
  animation: pulseTariff 1.6s ease-in-out infinite;
}

@keyframes pulseTariff {
  0% { transform: translateY(-10px) scale(1.03); }
  50% { transform: translateY(-12px) scale(1.05); }
  100% { transform: translateY(-10px) scale(1.03); }
}

.card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price {
  font-size: 34px;
  font-weight: 800;
  color: #38bdf8;
  margin: 14px 0 18px;
}

footer {
  margin-top: 42px;
  text-align: center;
  padding: 20px;
  color: #64748b;
  font-size: 13px;
}

.page {
  padding-bottom: 0;
}

.hero-bright {
  text-align: center;
  padding: 80px 24px;
  margin-top: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(8, 14, 30, 0.9), rgba(16, 25, 50, 0.88));
  border: 1px solid rgba(56,189,248,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

.hero-bright h1 {
  font-size: clamp(30px, 6vw, 52px);
  margin-bottom: 14px;
  color: #38bdf8;
}

.hero-bright p {
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.info-card {
  background: rgba(10, 18, 35, 0.9);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.35);
  border-color: rgba(56,189,248,0.65);
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #38bdf8;
}

.info-card ul,
.info-card p {
  color: #e2e8f0;
  margin: 0;
}

.info-card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.info-card li {
  margin-bottom: 8px;
}

.faq-panel {
  background: rgba(10, 15, 31, 0.95);
  border: 1px solid rgba(56,189,248,0.24);
  border-radius: 16px;
  padding: 22px;
}

.faq-panel h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #38bdf8;
  text-align: center;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-item h3 {
  margin: 0 0 6px;
  color: #e2e8f0;
}

.faq-item p {
  margin: 0;
  color: #cbd5e1;
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.services-title {
  font-size: 15px;
  margin-bottom: 12px;
  color: #38bdf8;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.services-title::before {
  content: '🔓';
  font-size: 16px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(56, 189, 248, 0.08);
  color: #e2e8f0;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.service:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(56, 189, 248, 0.2);
}

.service::before {
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-size: 0.95em;
  line-height: 1;
}

.service-telegram::before { content: '✈️'; }
.service-instagram::before { content: '📸'; }
.service-youtube::before { content: '📺'; }
.service-tiktok::before { content: '🎵'; }
.service-whatsapp::before { content: '💬'; }
.service-twitter::before { content: '🐦'; }
.service-netflix::before { content: '🎬'; }
.service-discord::before { content: '💎'; }
.service-chatgpt::before { content: '🤖'; }
.service-gemini::before { content: '🌌'; }
.service-facebook::before { content: '📘'; }
.service-roblox::before { content: '🕹️'; }
.service-linkedin::before { content: '💼'; }
.service-gov::before { content: '🏛️'; }

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(-12px) translateX(10px); }
  100% { opacity: 1; transform: translateY(0) translateX(0); }
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(148,163,184,0.08);
  color: #e2e8f0;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}

.service::before {
  display: inline-block;
  width: 1em;
  text-align: center;
  font-size: 0.92em;
  line-height: 1;
}

.service-telegram::before { content: '✈️'; }
.service-instagram::before { content: '�'; }
.service-youtube::before { content: '📺'; }
.service-tiktok::before { content: '🎵'; }
.service-whatsapp::before { content: '💬'; }
.service-twitter::before { content: '🐦'; }
.service-netflix::before { content: '🎬'; }
.service-discord::before { content: '💎'; }
.service-chatgpt::before { content: '🤖'; }
.service-gemini::before { content: '🌌'; }
.service-facebook::before { content: '📘'; }
.service-roblox::before { content: '🕹️'; }
.service-linkedin::before { content: '💼'; }
.service-gov::before { content: '🏛️'; }

@media (max-width: 950px) {
  .services-box {
    display: none;
  }

  .page {
    max-width: 100%;
  }

  .cards {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 16px 30px;
  }
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.btn-large {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 8px;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
  animation: slideUp 0.8s ease-out forwards;
}

.login-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(30, 144, 255, 0.04));
  border: 2px solid rgba(56, 189, 248, 0.35);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(56, 189, 248, 0.15);
  backdrop-filter: blur(10px);
}

.login-card h1 {
  font-size: 32px;
  margin: 0 0 8px;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.login-subtitle {
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
  margin: 0 0 32px;
  letter-spacing: 0.4px;
}

#loginForm {
  width: 100%;
}

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

.form-group label {
  display: block;
  color: #f1f5f9;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  color: #f1f5f9;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
}

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

.form-input:focus {
  outline: none;
  background: rgba(15, 23, 42, 0.8);
  border-color: #38bdf8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.3);
}

.form-input:hover {
  border-color: rgba(56, 189, 248, 0.4);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0;
  font-size: 13px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #38bdf8;
}

.checkbox:hover {
  color: #f1f5f9;
}

.forgot-password {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.btn-primary.btn-large {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border: 2px solid #38bdf8;
  color: #020617;
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.3);
}

.btn-primary.btn-large:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(56, 189, 248, 0.4);
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.btn-primary.btn-large:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-secondary.btn-large {
  background: rgba(56, 189, 248, 0.12);
  border: 2px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

.btn-secondary.btn-large:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.25);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  color: #64748b;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(56, 189, 248, 0.2);
}

.login-divider span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  color: #64748b;
  font-size: 13px;
}

.login-footer a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-footer a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .login-container {
    min-height: auto;
    padding: 20px 16px;
  }

  .login-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .login-card h1 {
    font-size: 28px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .login-divider {
    margin: 24px 0;
  }

  .topbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .card {
    width: 100%;
  }

  .services-box {
    right: 8px;
    top: 84px;
    width: calc(100vw - 20px);
    max-width: 320px;
  }
}
