/* style.css – Award-Winning Premium UI/UX Design System for NexStep Portal */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Futuristic Glowing Color Palette */
  --bg-dark: #05050d;
  --bg-deep: #090916;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.06);
  --text-white: #ffffff;
  --text-gray: #a1a1b5;
  
  /* Glowing gradients */
  --grad-cyan: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-purple: linear-gradient(135deg, #b92b27 0%, #1565c0 100%);
  --grad-sunset: linear-gradient(135deg, #ff8a00 0%, #da1b60 100%);
  --grad-neon: linear-gradient(135deg, #f02fc2 0%, #6094ea 100%);
  --grad-emerald: linear-gradient(135deg, #34e89e 0%, #0f3443 100%);
  
  --primary-glow: rgba(0, 242, 254, 0.15);
  --border-radius-lg: 16px;
  --border-radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Immersive Decorative Background */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: radial-gradient(circle at 50% -100px, rgba(96, 148, 234, 0.22) 0%, rgba(5, 5, 13, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Typography styles */
h1, h2, h3, .brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── SLEEK NAVBAR ── */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  background: rgba(9, 9, 22, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-white);
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.2));
  transition: var(--transition);
}

.brand:hover .brand-icon {
  filter: drop-shadow(0 0 12px rgba(255, 138, 0, 0.4));
}

.brand-logo-svg {
  transition: var(--transition);
  color: #00f2fe;
}

.brand:hover .brand-logo-svg {
  transform: rotate(5deg) scale(1.05);
  color: #ff8a00;
}

/* Mechanical clock hand micro-animations */
.logo-hand-hour, .logo-hand-minute {
  transform-origin: 50px 50px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .logo-hand-minute {
  transform: rotate(15deg);
}

.brand:hover .logo-hand-hour {
  transform: rotate(-5deg);
}

/* Clock letters dynamic state transitions */
.logo-char-dimmed {
  fill: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.logo-char-bright {
  fill: #ffffff;
  transition: var(--transition);
}

.brand:hover .logo-char-dimmed {
  fill: rgba(0, 242, 254, 0.6);
}

.brand:hover .logo-char-bright {
  fill: #ffffff;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text strong {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-cyan);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-white);
}

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

/* ── HERO SECTION ── */
.hero {
  padding-top: 12rem;
  padding-bottom: 7rem;
  text-align: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-title .gradient-text {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.2));
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Hero Search System */
.hero-search {
  max-width: 550px;
  margin: 0 auto 4rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15);
  transform: translateY(-2px);
}

.search-icon {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-right: 0.8rem;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 400;
}

.search-box input::placeholder {
  color: #5d5d75;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat strong {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat span {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 0.2rem;
}

/* Floating Ambient Orbs */
.hero-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  mix-blend-mode: screen;
}

.orb-1 {
  top: 10%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: #f02fc2;
  animation: floatOrb 8s infinite alternate ease-in-out;
}

.orb-2 {
  bottom: 20%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: #00f2fe;
  animation: floatOrb 12s infinite alternate-reverse ease-in-out;
}

.orb-3 {
  top: 40%;
  left: 45%;
  width: 200px;
  height: 200px;
  background: #7f00ff;
  animation: floatOrb 10s infinite alternate ease-in-out;
}

/* ── FILTER SECTION & TABS ── */
.filter-section {
  padding: 2rem 0;
  margin-bottom: 2.5rem;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  background: rgba(9, 9, 22, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  width: max-content;
  margin: 0 auto;
}

.tab {
  background: none;
  border: none;
  outline: none;
  color: var(--text-gray);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.tab svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.tab:hover svg {
  transform: scale(1.15);
}

.tab:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.03);
}

.tab.active {
  background: var(--text-white);
  color: var(--bg-dark);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
}

/* ── OPPORTUNITIES GRID ── */
.opportunities-section {
  padding-bottom: 8rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.count-badge {
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* PREMIUM GLOW CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(0, 242, 254, 0.06), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.06);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.card-deadline {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.card-deadline strong {
  color: #ff8a00;
  font-weight: 600;
}

.card-link {
  color: #00f2fe;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--text-white);
  gap: 0.6rem;
}

.card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card .tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition);
}

.card:hover .tag {
  border-color: rgba(0, 242, 254, 0.2);
  color: #00f2fe;
}

/* ── BEAUTIFUL BENTO ABOUT SECTION ── */
.about-section {
  padding: 8rem 0;
  background: var(--bg-deep);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(240, 47, 194, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.centered h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.centered p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

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

.about-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.about-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Bento custom gradients for cards */
.card-blue {
  border-left: 4px solid #4facfe;
}
.card-purple {
  border-left: 4px solid #7f00ff;
}
.card-green {
  border-left: 4px solid #34e89e;
}
.card-orange {
  border-left: 4px solid #ff8a00;
}

/* ── STATS SECTION ── */
.stats-section {
  padding: 6rem 0;
}

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 242, 254, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

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

/* ── FUTURISTIC FOOTER ── */
.footer {
  background: #030308;
  border-top: 1px solid var(--card-border);
  padding: 5rem 0 3rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer .brand {
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 500px;
  line-height: 1.6;
}

.footer-contact {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
}

.footer-contact a {
  color: #00f2fe;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: #ff8a00;
  text-shadow: 0 0 10px rgba(255, 138, 0, 0.3);
}

.footer-copy {
  font-size: 0.85rem;
  color: #5d5d75;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  width: 100%;
  padding-top: 2rem;
}

/* Spinner */
.loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  gap: 1rem;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-top: 3px solid #00f2fe;
  border-radius: 50%;
  animation: spin 1s infinite linear;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

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

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 138, 0, 0.2)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.5)); }
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.15); }
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 2rem);
    top: 1rem;
    padding: 0.6rem 1.5rem;
  }
  
  .nav-links {
    display: none; /* Mobile navigation toggleable or simplified */
  }
  
  .hero {
    padding-top: 10rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── AUTHENTICATION & PROFILE DESIGN ── */
.auth-container {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.user-profile-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50px;
  transition: var(--transition);
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0, 242, 254, 0.4);
  object-fit: cover;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.user-profile-menu:hover .user-avatar {
  border-color: rgba(0, 242, 254, 0.8);
  transform: scale(1.05);
}

.profile-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  width: 180px;
  background: rgba(9, 9, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.6rem;
  display: none;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.profile-dropdown.show {
  display: flex;
}

.dropdown-header {
  padding: 0.4rem;
  text-align: left;
}

.user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.4rem 0;
}

.dropdown-item {
  background: none;
  border: none;
  color: var(--text-gray);
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ff8a00;
}

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

/* Google Sign-in button custom premium design */
.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.15);
}

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

.google-btn svg {
  margin-right: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.google-btn:hover svg {
  transform: rotate(15deg) scale(1.1);
}

/* ── AUTH LOCK SECTION (PREMIUM LOCK SCREEN) ── */
.auth-lock-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.lock-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 4.5rem 3.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.lock-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.lock-card:hover {
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 30px 70px rgba(0, 242, 254, 0.05);
}

.lock-icon-wrapper {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.05);
  animation: pulseLock 2.5s infinite ease-in-out;
}

.lock-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lock-card p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.lock-btn {
  font-size: 1rem;
  padding: 0.8rem 2.2rem;
}

@keyframes pulseLock {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.05);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.15);
  }
}

#googleNavbarLoginBtn {
  min-width: 200px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

#googleLockLoginBtn {
  margin: 2.2rem auto 0;
  min-width: 320px;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}


