/* Main styles for aipornmaker.best */
:root {
  --primary: #6200EA;
  --secondary: #FF4081;
  --accent: #00BCD4;
  --dark: #121212;
  --light-dark: #1E1E1E;
  --light: #E0E0E0;
  --white: #FFFFFF;
}

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

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

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

/* Header */
header {
  background: linear-gradient(90deg, var(--primary), #9575CD);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo svg {
  width: 42px;
  height: 42px;
}

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

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(98, 0, 234, 0.15) 0%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(255, 64, 129, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, var(--white) 0%, #B388FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), #9575CD);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(98, 0, 234, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(98, 0, 234, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: rgba(0, 188, 212, 0.1);
  transform: translateY(-2px);
}

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

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

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

.feature-card {
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  fill: var(--accent);
}

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

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

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: var(--dark);
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card {
  background-color: var(--light-dark);
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--light);
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #0F0F1A;
  padding: 60px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

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

.footer-links h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

@media (max-width: 768px) {
  .site-logo h1 {
    font-size: 1.5rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .site-logo h1 {
    font-size: 1.2rem;
  }
  
  .site-logo svg {
    width: 36px;
    height: 36px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
