/* Veduce Support & Privacy Policy - Shared Stylesheet */

:root {
  --primary-color: #1b355d;     /* App Indigo */
  --secondary-color: #FFBC42;   /* App Amber/Gold */
  --neutral-dark: #111827;      /* Dark Theme Background */
  --neutral-surface: #1F2937;   /* Dark Theme Card Surface */
  --text-light: #F9FAFB;
  --text-muted: #9CA3AF;
  --border-color: rgba(255, 255, 255, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top right, rgba(27, 53, 93, 0.5) 0%, var(--neutral-dark) 75%);
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow-x: hidden;
}

/* Ambient glow effect */
.ambient-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 66, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow-top {
  top: -100px;
  right: -100px;
}

.ambient-glow-bottom {
  bottom: -100px;
  left: -100px;
}

/* Common Card/Wrapper Layout */
.card-container {
  background: rgba(31, 41, 55, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 
              0 0 60px rgba(27, 53, 93, 0.25);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.card-container:hover {
  border-color: rgba(255, 188, 66, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 
              0 0 65px rgba(27, 53, 93, 0.35);
}

/* Brand Assets */
.logo {
  text-align: center;
  margin-bottom: 12px;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.tagline {
  text-align: center;
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Common Typography & Headings */
h1 {
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 60%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Shared Footer styling */
footer {
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  text-align: center;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  margin-left: 8px;
}

footer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
