/* === MODERN SPORTZIO WEBSITE STYLES === */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Chrome rendering improvements */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0a 70%);
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea20, #764ba220);
  animation: float 8s ease-in-out infinite;
  filter: blur(1px);
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 10%;
  animation-delay: 3s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 80%;
  animation-delay: 6s;
}

.shape-4 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 30%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: white;
  font-weight: bold;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #667eea;
}

.reset-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.reset-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Main Content */
.main-content {
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  /* Chrome text rendering fixes */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Prevent text clipping */
  overflow: visible;
  word-wrap: break-word;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Chrome compatibility fixes */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline-block;
  /* Prevent text clipping and overlapping */
  position: relative;
  z-index: 1;
  /* Fallback for browsers that don't support background-clip */
  color: #667eea;
  /* Force hardware acceleration */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Chrome-specific fix */
@supports (-webkit-background-clip: text) {
  .gradient-text {
    color: transparent;
  }
}

/* Additional Chrome fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .gradient-text {
    -webkit-text-stroke: 0.01px transparent;
  }
}

/* Fallback for problematic Chrome versions */
.gradient-text-fallback {
  color: #667eea;
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  font-weight: 900;
}

/* Chrome detection and fallback */
@supports not (-webkit-background-clip: text) {
  .gradient-text {
    color: #667eea;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  }
}

/* Chrome-specific fixes when detected by JavaScript */
.chrome-browser .gradient-text {
  /* Force GPU acceleration */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  /* Improve subpixel rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix text baseline */
  vertical-align: baseline;
}

.chrome-browser .hero-title {
  /* Prevent text jumping */
  contain: layout;
  /* Improve rendering performance */
  will-change: auto;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.download-btn-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.download-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: #111;
}

.download-btn-primary i {
  font-size: 1.5rem;
  color: #4285f4;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.btn-large {
  font-size: 1rem;
  font-weight: 600;
}

.learn-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #667eea;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-container {
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border-radius: 40px;
  padding: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  font-weight: 700;
}

.notification-dot {
  width: 8px;
  height: 8px;
  background: #ff4757;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.live-score-card {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.match-status {
  background: #ff4757;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.team {
  flex: 1;
  text-align: center;
}

.team-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.team-score {
  font-size: 2rem;
  font-weight: 800;
  color: #667eea;
}

.vs-divider {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 20px;
}

.match-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.puzzle-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
}

.puzzle-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  font-weight: 600;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.puzzle-tile {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.puzzle-tile.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  animation: tileGlow 2s ease-in-out infinite alternate;
}

@keyframes tileGlow {
  0% { box-shadow: 0 0 5px rgba(102, 126, 234, 0.5); }
  100% { box-shadow: 0 0 15px rgba(102, 126, 234, 0.8); }
}

.phone-reflection {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 30px;
  filter: blur(20px);
  opacity: 0.3;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 1.2rem;
  animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 30%;
  left: -30px;
  animation-delay: 2s;
}

.icon-3 {
  top: 60%;
  right: -40px;
  animation-delay: 4s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Download Section */
.download-section {
  padding: 100px 0;
  background: rgba(102, 126, 234, 0.05);
  text-align: center;
}

.download-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.download-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.download-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.download-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-stat i {
  font-size: 2rem;
  color: #667eea;
}

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

.download-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.download-stat .stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.google-play-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #000000;
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.google-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: #111;
}

.google-play-btn .btn-icon i {
  font-size: 2rem;
  color: #4285f4;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.btn-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.coming-soon-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.coming-soon-btn .btn-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}

.qr-code-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.qr-code {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.5);
}

.qr-text {
  text-align: left;
}

.qr-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.qr-text small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Delete Account Page Specific Styles */
.warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warning-icon {
  color: #f59e0b;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.warning-content h3 {
  color: #f59e0b;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.warning-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.steps-container {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: #667eea;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-actions {
  text-align: center;
  margin: 2rem 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.data-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.data-icon {
  color: #667eea;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.data-category h4 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.data-category ul {
  list-style: none;
  text-align: left;
}

.data-category li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.data-category li::before {
  content: "•";
  color: #667eea;
  position: absolute;
  left: 0;
}

.retention-info {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.retention-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.retention-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.retention-icon.immediate {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.retention-icon.standard {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.retention-icon.backup {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}

.retention-content h4 {
  color: #667eea;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.retention-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.alternative-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.alternative-icon {
  color: #667eea;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.alternative-item h4 {
  color: #667eea;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.alternative-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.9rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  color: #667eea;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-details h4 {
  color: #667eea;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.legal-notice {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
}

.legal-notice h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legal-notice p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-notice .text-link {
  color: #667eea;
  text-decoration: none;
}

.legal-notice .text-link:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0 !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .retention-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .warning-box {
    flex-direction: column;
    text-align: center;
  }
  
  .data-grid {
    grid-template-columns: 1fr;
  }
  
  .alternatives-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Reset Password Page Styles */
.reset-container {
  max-width: 450px;
  margin: 140px auto 40px;
  padding: 2.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #ffffff;
}

input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: all 0.3s ease;
}

input[type="password"]:focus,
input[type="email"]:focus {
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

button {
  width: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

button:disabled {
  background: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  transform: none;
}

.error {
  color: #ff4757;
}

.success {
  color: #2ed573;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .phone-mockup {
    width: 240px;
    height: 480px;
  }
  
  .nav-link {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .download-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .qr-code-section {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .reset-container {
    margin: 120px 1rem 40px;
    padding: 2rem;
  }
}

/* Legal Pages Styles */
.page-content {
  padding-top: 100px;
  min-height: 100vh;
}

.page-header {
  text-align: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #667eea;
  text-decoration: none;
}

.breadcrumb .separator {
  margin: 0 0.5rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.last-updated {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

.content-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.toc-section {
  position: sticky;
  top: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem;
  border-radius: 8px;
}

.toc-list a:hover,
.toc-list a.active {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.terms-sections {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.legal-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.legal-link {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-link:hover {
  border-bottom-color: #667eea;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: #667eea;
  width: 16px;
}

/* About Page Specific Styles */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.content-main {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.mission-points {
  margin-top: 1.5rem;
}

.mission-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.mission-point i {
  color: #667eea;
  font-size: 1.1rem;
}

.features-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.value-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.stats-card,
.download-card,
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-card h3,
.download-card h3,
.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.download-btn-sidebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.download-btn-sidebar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.download-btn-sidebar i {
  font-size: 1.2rem;
}

.download-btn-sidebar .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-btn-sidebar .btn-small {
  font-size: 0.7rem;
  opacity: 0.9;
}

.download-btn-sidebar .btn-large {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Privacy Page Specific Styles */
.privacy-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.privacy-highlight i {
  color: #667eea;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.privacy-highlight h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-highlight p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.security-features {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item i {
  color: #667eea;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.security-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.security-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
  }
  
  .nav-links {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }
  
  .reset-btn {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .content-wrapper,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .toc-section {
    position: static;
    order: -1;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-content {
    padding: 0 1rem;
  }
  
  .reset-container {
    margin: 120px 1rem 40px;
    padding: 1.5rem;
  }
  
  input[type="password"],
  input[type="email"] {
    padding: 0.875rem;
    font-size: 1rem;
  }
  
  button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }
  
  .nav-links {
    gap: 0.25rem;
  }
  
  .nav-link,
  .reset-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .reset-container {
    margin: 100px 0.5rem 40px;
    padding: 1.25rem;
  }
}
