/* Privacy Policy Pages - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&display=swap');

:root {
  --background: #121212;
  --surface: #1e1e1e;
  --card-bg: #1c1c1c;
  --text: #e0e0e0;
  --text-secondary: #bbbbbb;
  --border: #2c2c2c;
  --primary-color: #03DAC6;
  --secondary-color: #BB86FC;
  --accent-color: #CF6679;
  --transition: 0.3s ease-in-out;
}

.light-theme {
  --background: #EDEADE;
  --surface: #E6E2D3;
  --card-bg: #F2F0E7;
  --text: #2c2c2c;
  --text-secondary: #4a4a4a;
  --border: #D4CFC0;
  --primary-color: #00695c;
  --secondary-color: #6a1b9a;
}

body {
  font-family: 'Roboto Mono', monospace;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  background-image: radial-gradient(circle at 10% 20%, rgba(100, 100, 100, 0.03) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(100, 100, 100, 0.03) 0%, transparent 20%);
  background-size: 120% 120%;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  transition: background 0.4s, color 0.4s;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: fadeIn 0.8s ease-out;
}

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

.code-line {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.code-comment {
  color: var(--text-secondary);
}

.page-title {
  font-size: 2.5rem;
  margin: 5px 0;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: var(--primary-color);
}

.highlight {
  position: relative;
  z-index: 1;
  color: var(--primary-color);
}

.highlight::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -5px;
  right: -5px;
  height: 12px;
  background-color: rgba(3, 218, 198, 0.15);
  z-index: -1;
  transform: skewX(-15deg);
}

.blink-cursor {
  display: inline-block;
  width: 12px;
  height: 30px;
  background-color: var(--primary-color);
  margin-left: 5px;
  animation: cursor-blink 1.2s step-end infinite;
}

@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 25px 0 10px;
  color: var(--text-secondary);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.effective-date {
  background: rgba(3, 218, 198, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.back-button {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px 0;
  background: var(--primary-color);
  color: #121212;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(3, 218, 198, 0.3);
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(3, 218, 198, 0.4);
  color: #121212;
  text-decoration: none;
}

/* Content Section Styles */
.content-section {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.content-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.content-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.content-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.content-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.content-section a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.theme-toggle button {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.theme-toggle button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.theme-toggle button svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.light-theme .theme-toggle button {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.light-theme .theme-toggle button:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Special Highlight Boxes */
.privacy-highlight {
  background: rgba(187, 134, 252, 0.1);
  border: 1px solid rgba(187, 134, 252, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.privacy-highlight h3 {
  color: var(--secondary-color);
  margin-top: 0;
  font-size: 1.2rem;
}

.permission-highlight {
  background: rgba(207, 102, 121, 0.1);
  border: 1px solid rgba(207, 102, 121, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.permission-highlight h3 {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 1.2rem;
}

.privacy-notice {
  background: linear-gradient(135deg, rgba(3, 218, 198, 0.1), rgba(187, 134, 252, 0.1));
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}

.privacy-notice h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.3rem;
}

.privacy-notice p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-note {
  background: rgba(3, 218, 198, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.protection-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(3, 218, 198, 0.1), rgba(187, 134, 252, 0.1));
  border: 1px solid rgba(3, 218, 198, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.contact-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #121212;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 218, 198, 0.3);
  color: #121212;
  text-decoration: none;
}

.whatsapp-link {
  background: #25D366;
}

.email-link {
  background: var(--secondary-color);
}

.website-link {
  background: var(--accent-color);
}

/* Feature Cards & Grids */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.feature-card {
  background: rgba(187, 134, 252, 0.1);
  border: 1px solid rgba(187, 134, 252, 0.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.feature-card h4 {
  color: var(--secondary-color);
  margin-top: 0;
  font-size: 1.1rem;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.use-case {
  background: rgba(3, 218, 198, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

.use-case h4 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.2rem;
}

.tech-specs {
  background: rgba(30, 30, 30, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.tech-specs h4 {
  color: var(--accent-color);
  margin-top: 0;
}

.roadmap-item {
  background: rgba(207, 102, 121, 0.1);
  border: 1px solid rgba(207, 102, 121, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.roadmap-item h4 {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 1.1rem;
}

/* Light Theme Overrides */
.light-theme body {
  background: var(--background);
  color: var(--text);
}

.light-theme .header,
.light-theme .content-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.light-theme .page-title {
  color: var(--text);
}

.light-theme .highlight {
  color: var(--primary-color);
}

.light-theme .section-title {
  color: var(--secondary-color);
}

.light-theme .back-button {
  background: var(--primary-color);
  color: #ffffff;
}

.light-theme .back-button:hover {
  color: #ffffff;
}

.light-theme .theme-toggle button {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.light-theme .effective-date {
  background: rgba(0, 105, 92, 0.1);
  color: var(--primary-color);
}

.light-theme .privacy-highlight {
  background: rgba(106, 27, 154, 0.1);
  border: 1px solid rgba(106, 27, 154, 0.3);
}

.light-theme .permission-highlight {
  background: rgba(207, 102, 121, 0.1);
  border: 1px solid rgba(207, 102, 121, 0.3);
}

.light-theme .privacy-notice {
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.1), rgba(106, 27, 154, 0.1));
  border: 2px solid var(--primary-color);
}

.light-theme .footer-note {
  background: rgba(0, 105, 92, 0.05);
  border-left-color: var(--primary-color);
}

.light-theme .contact-section {
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.1), rgba(106, 27, 154, 0.1));
  border: 1px solid rgba(0, 105, 92, 0.3);
}

.light-theme .contact-link {
  color: #ffffff;
}

.light-theme .whatsapp-link:hover,
.light-theme .email-link:hover,
.light-theme .website-link:hover,
.light-theme .contact-link:hover {
  color: #ffffff;
}

.light-theme .feature-card {
  background: rgba(106, 27, 154, 0.1);
  border: 1px solid rgba(106, 27, 154, 0.3);
}

.light-theme .use-case {
  background: rgba(0, 105, 92, 0.1);
  border-left-color: var(--primary-color);
}

.light-theme .tech-specs {
  background: rgba(237, 234, 222, 0.5);
}

.light-theme .roadmap-item {
  background: rgba(207, 102, 121, 0.1);
  border: 1px solid rgba(207, 102, 121, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 20px 15px;
  }
  
  .header,
  .content-section {
    padding: 20px;
  }

  .feature-grid,
  .use-cases {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    width: 200px;
    text-align: center;
  }
}