/*
* hentaiporn.love - Main Stylesheet
* Theme: Anime-inspired with purple/pink gradient
*/

:root {
  /* Primary color palette - anime inspired */
  --primary: #8A2BE2; /* Electric purple */
  --secondary: #FF6B9E; /* Pink */
  --tertiary: #36EEE0; /* Turquoise accent */
  --dark: #2D0A31; /* Deep purple */
  --light: #FFF0F5; /* Lavender blush */
  --background: #13111C; /* Dark anime background */
  --gradient: linear-gradient(135deg, var(--dark) 0%, #461E5C 100%);
  --card-bg: rgba(47, 25, 66, 0.9);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--background);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  background: -webkit-linear-gradient(var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  color: var(--light);
}

h3 {
  font-size: 1.8rem;
  color: var(--secondary);
}

h4 {
  font-size: 1.4rem;
  color: var(--tertiary);
}

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.highlight {
  color: var(--secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light);
  opacity: 0.8;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(19, 17, 28, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
  transition: all 0.4s ease;
}

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

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  background: -webkit-linear-gradient(var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--light);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 28px;
  height: 3px;
  background-color: var(--light);
  margin: 3px 0;
  border-radius: 3px;
  transition: 0.4s;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 30px;
}

.btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: -1;
  border-radius: 30px;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--light);
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-primary::after {
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

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

.btn-outline:hover {
  color: var(--light);
  background: var(--secondary);
  box-shadow: 0 4px 15px rgba(255, 107, 158, 0.4);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 35%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(255, 107, 158, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-right: 2rem;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image svg {
  max-width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Features Section */
.features {
  padding: 7rem 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 90% 10%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 43, 226, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--light);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* How it Works Section */
.how-it-works {
  padding: 7rem 0;
  background: rgba(19, 17, 28, 0.7);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(255, 107, 158, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 95% 20%, rgba(54, 238, 224, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2.5rem;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  position: relative;
  border: 1px solid rgba(138, 43, 226, 0.2);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 107, 158, 0.3);
}

.step-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--tertiary);
}

.step-card p {
  color: var(--light);
  opacity: 0.8;
  margin-bottom: 0;
}

/* Categories Section */
.categories {
  padding: 7rem 0;
  position: relative;
}

.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.category-card {
  background: var(--card-bg);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
}

.category-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image svg {
  width: 100%;
  height: 100%;
}

.category-content {
  padding: 1.5rem;
}

.category-content h4 {
  margin-bottom: 0.5rem;
}

.category-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--light);
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #461E5C 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 158, 0.1) 0%, transparent 60%);
  z-index: 0;
}

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

.cta-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.cta-content p {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 5rem 0 2rem;
  background: var(--background);
  border-top: 1px solid rgba(138, 43, 226, 0.2);
}

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

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo p {
  font-size: 1.2rem;
  color: var(--light);
  margin-top: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.footer-icon {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: var(--light);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--secondary);
  opacity: 1;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(138, 43, 226, 0.1);
  color: var(--light);
  opacity: 0.6;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--dark);
    width: 100%;
    max-width: 300px;
    height: 100vh;
    padding: 2rem;
    transition: right 0.3s ease;
    align-items: flex-start;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    width: 100%;
    gap: 2rem;
  }
  
  .footer-column {
    min-width: 150px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
}
