/*
 * 3D AI Porn - Main Stylesheet
 * A futuristic, cyber-themed design with teal/coral gradients
 */

/* Variables */
:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --dark: #0F1923;
  --darker: #060B11;
  --light: #FFFFFF;
  --gray: #9BA4B4;
  --accent: #FFE66D;
  --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-reverse: linear-gradient(135deg, var(--secondary), var(--primary));
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  --border-radius: 8px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glow: 0 0 10px rgba(78, 205, 196, 0.6);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

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

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

h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

.accent {
  color: var(--primary);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: -1rem;
  margin-bottom: 2rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 25, 35, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px rgba(78, 205, 196, 0.5));
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

.main-nav a:hover {
  color: var(--primary);
}

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

.nav-cta {
  background: var(--gradient-main);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: var(--glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.8);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light);
  margin: 5px 0;
  transition: var(--transition);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 10%, rgba(255, 107, 107, 0.2), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.2), transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  margin-right: auto;
}

.glitch-text {
  position: relative;
  display: inline-block;
  text-shadow: var(--text-shadow);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--primary);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: 2px 0 var(--secondary);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0%, 80%, 100% {
    clip-path: inset(0 0 0 0);
  }
  20% {
    clip-path: inset(20% 0 20% 0);
  }
  40% {
    clip-path: inset(60% 0 10% 0);
  }
  60% {
    clip-path: inset(10% 0 60% 0);
  }
}

@keyframes glitch-anim-2 {
  0%, 80%, 100% {
    clip-path: inset(0 0 0 0);
  }
  20% {
    clip-path: inset(30% 0 30% 0);
  }
  40% {
    clip-path: inset(10% 0 60% 0);
  }
  60% {
    clip-path: inset(60% 0 10% 0);
  }
}

.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.hero-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
  z-index: 1;
}

.cube-container {
  perspective: 1000px;
  width: 100%;
  height: 300px;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 20s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.front {
  transform: translateZ(150px);
  background: linear-gradient(45deg, var(--primary), transparent);
}

.back {
  transform: rotateY(180deg) translateZ(150px);
  background: linear-gradient(-45deg, var(--secondary), transparent);
}

.right {
  transform: rotateY(90deg) translateZ(150px);
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.left {
  transform: rotateY(-90deg) translateZ(150px);
  background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.top {
  transform: rotateX(90deg) translateZ(150px);
  background: linear-gradient(45deg, transparent, var(--secondary));
}

.bottom {
  transform: rotateX(-90deg) translateZ(150px);
  background: linear-gradient(45deg, transparent, var(--primary));
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray);
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--darker);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(78, 205, 196, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--light);
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(78, 205, 196, 0.1), transparent 50%),
              radial-gradient(circle at 90% 50%, rgba(255, 107, 107, 0.1), transparent 50%);
  pointer-events: none;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--gray);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.gallery-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.gallery-info {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-info h4 {
  margin: 0;
  font-size: 1rem;
}

.gallery-info span {
  font-size: 0.8rem;
  color: var(--secondary);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--dark);
  position: relative;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 400px;
  width: 100%;
}

.pricing-card.highlight {
  transform: scale(1.05);
  border-color: rgba(78, 205, 196, 0.3);
  background: linear-gradient(135deg, rgba(15, 25, 35, 0.9), rgba(6, 11, 17, 0.9));
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  margin-bottom: 1.5rem;
}

.pricing-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--light);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-right: 0.25rem;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-footer {
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  text-align: center;
}

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

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

.cta-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: var(--gradient-main);
  color: var(--light);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--box-shadow), var(--glow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(78, 205, 196, 0.8);
  color: var(--light);
}

.cta-button.large {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(78, 205, 196, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
  }
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  background-color: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  flex: 1;
  min-width: 300px;
}

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

.footer-icon {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light);
}

.footer-brand p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 2rem;
}

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

.footer-nav-group h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-nav-group ul li {
  margin-bottom: 0.75rem;
}

.footer-nav-group a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-nav-group a:hover {
  color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-visual {
    width: 35%;
  }
  
  h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-visual {
    position: relative;
    width: 80%;
    max-width: 400px;
    top: auto;
    right: auto;
    transform: none;
    margin: 3rem auto 0;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-connector {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    padding: 6rem 2rem 2rem;
    z-index: 100;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-card {
    max-width: 90%;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-nav {
    width: 100%;
    gap: 2rem;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .pricing-grid {
    padding: 0 1rem;
  }
  
  .footer-nav {
    flex-direction: column;
  }
  
  .main-nav {
    width: 85%;
  }
}
