/* ========================================
   SHARED BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  min-height: 100vh;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Shared Typography */
h1 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

h2 {
  color: #fff;
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}

h3 {
  color: #fff;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  opacity: 0.95;
}

p {
  margin-bottom: 15px;
  color: #fff;
  opacity: 0.9;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #fff;
  opacity: 0.9;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #fff;
  font-weight: 600;
}

a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* Shared Container - used by all pages */
.container {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

/* Shared Page Body Layout */
body.home-body,
body.support-body,
body.privacy-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.privacy-body {
  padding: 40px 20px;
}

/* Shared Footer Navigation */
.footer-nav {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */
.home-body .container {
  max-width: 800px;
  text-align: center;
}

.home-body h1 {
  font-size: 3rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.home-body .footer-nav {
  margin-top: 50px;
  padding-top: 30px;
}

.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: #000;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 15px;
  opacity: 0.95;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.status {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.6s backwards;
  transition: transform 0.3s ease, background 0.3s ease;
}

.status:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.3);
}

.problem {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.feature {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature:nth-child(1) {
  animation: fadeInUp 0.8s ease 1s backwards;
}

.feature:nth-child(2) {
  animation: fadeInUp 0.8s ease 1.2s backwards;
}

.feature:nth-child(3) {
  animation: fadeInUp 0.8s ease 1.4s backwards;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.platforms {
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 1.6s backwards;
}

.platforms h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.platform-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform {
  background: rgba(255,255,255,0.2);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.3);
}

.platform svg, .platform img {
  width: 24px;
  height: 24px;
}

.cta {
  background: white;
  color: #667eea;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease 1.8s backwards;
}

.cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  opacity: 1;
}

/* ========================================
   SUPPORT PAGE STYLES
   ======================================== */
.support-body .container {
  max-width: 600px;
  text-align: center;
}

.support-subtitle {
  color: #fff;
  opacity: 0.9;
  font-size: 1.1em;
  margin-bottom: 40px;
}

/* Info boxes - shared between support and privacy pages */
.contact-box,
.contact-info {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.contact-info {
  padding: 20px;
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 5px;
}

.email-label {
  color: #fff;
  opacity: 0.8;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-weight: 600;
}

.email-link {
  color: #fff;
  font-size: 1.3em;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.email-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.deletion-button {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 12px 30px;
  border-radius: 25px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.company-name {
  margin-top: 40px;
  color: #fff;
  opacity: 0.8;
  font-size: 0.9em;
  font-weight: 500;
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   ======================================== */
.privacy-body .container {
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
}

.last-updated {
  color: #fff;
  opacity: 0.8;
  font-size: 0.9em;
  margin-bottom: 30px;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95em;
  color: #fff;
  opacity: 0.9;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 40px 25px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3em;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .problem {
    font-size: 1rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .privacy-body .container {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .email-link {
    font-size: 1.1em;
  }
}
