/* Main CSS for pornvideoai.love */
:root {
  --primary-color: #8c1aff;
  --secondary-color: #ff4d94;
  --bg-color: #0a0118;
  --text-color: #ffffff;
  --accent-color: #00e6cc;
  --section-bg: #150329;
  --card-bg: #200d33;
  --gradient-start: #8c1aff;
  --gradient-end: #ff4d94;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #e0e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(140, 26, 255, 0.2), rgba(255, 77, 148, 0.2));
  z-index: -1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(140, 26, 255, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(140, 26, 255, 0.6);
}

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

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

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

.feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

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

.feature-icon {
  margin-bottom: 20px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  height: 100%;
  width: 100%;
}

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

.feature-description {
  font-size: 1rem;
  opacity: 0.9;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
}

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.benefit-item:nth-child(even) {
  flex-direction: row-reverse;
}

.benefit-text {
  flex: 1;
}

.benefit-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.benefit-description {
  font-size: 1.1rem;
  opacity: 0.9;
}

.benefit-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--section-bg);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(140, 26, 255, 0.2), transparent 70%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo-icon {
  height: 60px;
  width: 60px;
  margin-bottom: 15px;
}

.footer-brand {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-description {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-links {
  flex: 1 1 200px;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .benefit-item, .benefit-item:nth-child(even) {
    flex-direction: column;
  }
  
  .benefit-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 70px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(140, 26, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(140, 26, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(140, 26, 255, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}
