/* Main CSS for pornxai.download */
:root {
  --primary: #7B1FA2;
  --secondary: #FF4081;
  --dark: #212121;
  --light: #f5f5f5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary), #9c27b0);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

/* Hero Section Styles */
.hero {
  padding: 9rem 0 5rem;
  text-align: center;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="40" height="40" patternTransform="rotate(45)"><rect width="100%" height="100%" fill="%23212121"/><rect width="1" height="40" fill="%23333333" x="20"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--light);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 64, 129, 0.6);
}

/* Features Section Styles */
.features {
  padding: 5rem 0;
  background-color: #2a2a2a;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--white);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-card {
  background-color: #333;
  border-radius: 10px;
  padding: 2rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  fill: var(--secondary);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-text {
  color: var(--light);
  opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.step-card {
  background-color: #333;
  border-radius: 10px;
  padding: 2rem;
  width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-text {
  color: var(--light);
  opacity: 0.8;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: #2a2a2a;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--light);
  opacity: 0.8;
}

/* Footer Styles */
footer {
  background-color: #1a1a1a;
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  color: var(--light);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .feature-card, .step-card {
    width: 100%;
  }
}
