/* 
* Porn-aigenerator.pw - Pornai | AI Generated Video Porn GIFs
* Modern, responsive design with SEO optimizations
*/

/* Base Styles and CSS Reset */
:root {
  --primary-color: #8A2387;
  --secondary-color: #E94057;
  --accent-color: #F27121;
  --dark-bg: #111111;
  --light-bg: #222222;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--dark-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.highlight {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

/* Header Styles */
header {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 15px 0;
  position: sticky;
  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 h1 {
  margin-left: 10px;
  font-size: 28px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 1) 0%, rgba(34, 34, 34, 1) 100%);
}

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

.hero-content {
  flex: 1;
  padding-right: 30px;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(233, 64, 87, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 64, 87, 0.4);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(30, 30, 30, 0.5);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card svg {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-gray);
}

/* Technology Section */
.technology {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 1) 0%, rgba(34, 34, 34, 1) 100%);
}

.technology h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.tech-info {
  flex: 1;
  padding-right: 30px;
}

.tech-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.tech-info p {
  margin-bottom: 20px;
  color: var(--text-gray);
}

.tech-info ul {
  margin-bottom: 30px;
}

.tech-info ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.tech-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.tech-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
}

.secondary-button {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: white;
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  font-weight: bold;
  transition: var(--transition);
}

.secondary-button:hover {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-color: transparent;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-item {
  background: rgba(30, 30, 30, 0.5);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.faq-item p {
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(138, 35, 135, 0.2) 0%, rgba(233, 64, 87, 0.2) 100%);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: rgba(10, 10, 10, 1);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-logo p {
  margin-top: 15px;
  color: var(--text-gray);
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
}

.link-group h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  color: var(--text-gray);
  transition: var(--transition);
}

.link-group ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }
  
  .tech-content {
    flex-direction: column;
  }
  
  .tech-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul li {
    margin-left: 15px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .footer-links {
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .link-group {
    margin-bottom: 30px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
}
