/* GScreenshot Lite Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #121214;
  --bg-card: #1a1a1e;
  --accent: #2fb4f6;
  --accent-glow: rgba(47, 180, 246, 0.3);
  --accent-hover: #62c5f9;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(47, 180, 246, 0.2);
  --nav-bg: rgba(18, 18, 20, 0.85);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar-custom {
  background-color: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.navbar-brand-custom {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-badge {
  background: rgba(47, 180, 246, 0.1);
  color: var(--accent);
  border: 1px solid rgba(47, 180, 246, 0.2);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.nav-link-custom {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.2s ease;
  padding: 8px 16px !important;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  padding: 120px 0 80px 0;
  z-index: 1;
}

.app-intro-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(47, 180, 246, 0.08);
  border: 1px solid rgba(47, 180, 246, 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 56px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-lead span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 580px;
}

.btn-accent {
  background: linear-gradient(135deg, #2fb4f6 0%, #0056b3 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 180, 246, 0.35);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #5fcaff 0%, #004494 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(47, 180, 246, 0.55);
}

.btn-secondary-custom {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-main) !important;
  border: 1px solid var(--border);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-left: 12px;
}

.btn-secondary-custom:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Features */
.features-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(47, 180, 246, 0.1);
  border: 1px solid rgba(47, 180, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Purpose / OAuth Integration Section */
.purpose-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.purpose-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  transition: all 0.3s ease;
}

.purpose-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.purpose-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(47, 180, 246, 0.1);
  border: 1px solid rgba(47, 180, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.purpose-card h4 {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 16px;
}

.purpose-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.purpose-card p:last-child {
  margin-bottom: 0;
}

.purpose-scopes-list {
  padding-left: 20px;
  margin-bottom: 16px;
}

.purpose-scopes-list li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Security / Google OAuth Section */
.security-section {
  padding: 80px 0;
  background-color: rgba(26, 26, 30, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.security-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.security-list li strong {
  color: var(--text-main);
}

/* Info Pages Style (Privacy & Terms) */
.info-page-container {
  padding: 140px 0 100px 0;
  min-height: 80vh;
}

.info-content-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px;
}

.info-content-card h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.info-content-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.info-content-card p,
.info-content-card li {
  font-size: 15px;
  color: var(--text-muted) !important;
  line-height: 1.65;
}

.info-content-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

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

/* Footer */
.footer-custom {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 13.5px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.footer-custom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-dot {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 8px;
  user-select: none;
}

/* --- PRELOADER STYLES --- */
#preloader {
  display: none !important; /* Temporarily disabled for Google Verification */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo {
  width: 80px;
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 0 20px rgba(47, 180, 246, 0.45));
  animation: logo-pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-lite-badge {
  position: absolute;
  bottom: 52px;
  background-color: rgba(47, 180, 246, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(47, 180, 246, 0.5);
  z-index: 6;
  animation: logo-pulse 2s cubic-bezier(0.3, 0, 0.8, 1) infinite;
  text-transform: uppercase;
  border: 1px solid rgba(47, 180, 246, 0.2);
}

.loader-ring {
  position: absolute;
  width: 180px;
  height: 180px;
}

.loader-ring circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 80 300;
  filter: drop-shadow(0 0 6px var(--accent));
  transform-origin: center;
  animation: rotate-ring 1.8s linear infinite;
}

.glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.18;
  animation: glow-breath 2s ease-in-out infinite;
}

@keyframes rotate-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes logo-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

@keyframes glow-breath {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.25;
  }
}