@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #c96277;
}

a {
  color: var(--primary-color);
}
body {
  background: linear-gradient(135deg, #170e2e 0%, #7a26b1 100%);
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #e0b3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-name {
  font-size: 1.2rem;
  color: #d4a5ff;
  font-weight: 400;
  margin-bottom: 20px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #ffffff;
}

.subtitle {
  font-size: 1.1rem;
  color: #e0b3ff;
  font-weight: 300;
}

.intro {
  margin-bottom: 40px;
}

.intro-text {
  font-size: 1.2rem;
  text-align: center;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Headings */
main section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

main section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Zero Tolerance Section */
.zero-tolerance-section {
  margin-bottom: 50px;
}

.highlight-box {
  background: rgba(255, 0, 0, 0.15);
  border: 3px solid rgba(255, 100, 100, 0.5);
  border-radius: 15px;
  padding: 35px;
  margin-top: 20px;
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.zero-tolerance-statement {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.8;
}

.highlight-box p {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 15px;
  line-height: 1.8;
}

.prohibited-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.prohibited-list li {
  font-size: 1.1rem;
  color: #f0f0f0;
  padding: 12px 0 12px 30px;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prohibited-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
  font-size: 1.2rem;
}

.prohibited-list li:last-child {
  border-bottom: none;
}

.enforcement-note {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ff6b6b;
  padding: 20px;
  border-radius: 8px;
  margin-top: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Prohibited Content Section */
.prohibited-content-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prohibited-content-section > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Reporting Section */
.reporting-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reporting-section > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: center;
}

.reporting-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.method-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 38, 177, 0.3);
}

.method-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.method-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 10px;
}

.method-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.method-card ul li {
  font-size: 0.95rem;
  color: #e0e0e0;
  padding: 8px 0 8px 25px;
  position: relative;
  line-height: 1.6;
}

.method-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a5ff;
  font-weight: bold;
  font-size: 1.5rem;
}

.reporting-note {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #d4a5ff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Moderation Section */
.moderation-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.moderation-section > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: center;
}

.moderation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 38, 177, 0.3);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.feature-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* Safety Measures Section */
.safety-measures-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.safety-measures-section > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: center;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.safety-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(122, 38, 177, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.safety-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
}

.safety-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.safety-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: left;
}

.standards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.standard-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(122, 38, 177, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.standard-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
}

.standard-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.standard-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: left;
}

.compliance-section,
.contact-section,
.updates-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-section > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: center;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.compliance-list li {
  font-size: 1.1rem;
  padding: 12px 0;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.7;
}

.compliance-list li:last-child {
  border-bottom: none;
}

.contact-section > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: center;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
  text-align: center;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-info a {
  color: #d4a5ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.response-note {
  text-align: center;
  font-style: italic;
  color: #d4a5ff;
  margin-top: 15px;
}

.updates-section p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  text-align: center;
}

.last-updated {
  text-align: center;
  font-size: 0.95rem;
  color: #d4a5ff;
  margin-top: 20px;
  font-style: italic;
}

footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: #d4a5ff;
}

footer p {
  margin: 10px 0;
  font-size: 1rem;
}

.footer-note {
  font-size: 0.9rem;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .logo-section h1 {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .standards-section,
  .safety-grid,
  .reporting-methods,
  .moderation-features {
    grid-template-columns: 1fr;
  }

  .intro-text {
    font-size: 1rem;
  }

  .standard-card,
  .safety-card {
    padding: 20px;
  }

  .highlight-box {
    padding: 25px;
  }

  .zero-tolerance-statement {
    font-size: 1.1rem;
  }

  main section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 15px;
  }

  .logo-section h1 {
    font-size: 2rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */

.home-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.home-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.8s ease-in;
}

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

.logo-center {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.app-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #e0b3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-tagline {
  font-size: 1.1rem;
  color: #d4a5ff;
  font-weight: 400;
  margin-bottom: 40px;
}

.app-description {
  margin-bottom: 50px;
}

.description-text {
  font-size: 1.2rem;
  color: #f0f0f0;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(122, 38, 177, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.feature-item p {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.platform-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

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

.platform-icon {
  font-size: 1.5rem;
}

.platform-text {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.safety-link-section {
  margin-bottom: 40px;
}

.safety-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 15px 30px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.safety-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.safety-icon {
  font-size: 1.2rem;
}

.home-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #d4a5ff;
  font-size: 0.9rem;
}

/* Home Page Responsive Design */
@media (max-width: 768px) {
  .app-title {
    font-size: 2.5rem;
  }

  .app-icon {
    width: 100px;
    height: 100px;
  }

  .description-text {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .platform-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .home-container {
    padding: 10px;
  }

  .app-title {
    font-size: 2rem;
  }

  .app-icon {
    width: 80px;
    height: 80px;
  }

  .app-tagline {
    font-size: 0.9rem;
  }

  .description-text {
    font-size: 0.95rem;
  }

  .safety-link {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
