/*
 * aiporndeepfake.pw - Main Stylesheet
 * A neon-cyberpunk themed design completely different from previous sites
 */

:root {
  /* Color Palette - Neon Cyberpunk - completely different from previous sites */
  --color-bg-dark: #15202B;
  --color-bg-light: #1E2C3D;
  --color-neon-cyan: #00DBDE;
  --color-neon-purple: #FC00FF;
  --color-text-primary: #F5F8FA;
  --color-text-secondary: #8899A6;
  --color-accent: #1DA1F2;
  
  /* Typography */
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-neon-cyan: 0 0 10px rgba(0, 219, 222, 0.5);
  --shadow-neon-purple: 0 0 10px rgba(252, 0, 255, 0.5);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  color: var(--color-bg-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-neon-cyan), var(--shadow-neon-purple);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 219, 222, 0.7), 0 0 20px rgba(252, 0, 255, 0.7);
}

.cta-button:active {
  transform: translateY(1px);
}

.cta-large {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

/* Header */
.site-header {
  padding: var(--space-sm) 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(21, 32, 43, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

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

.site-logo {
  width: 40px;
  height: 40px;
  margin-right: var(--space-sm);
}

.site-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: var(--space-md);
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  transition: width 0.3s ease;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  padding-top: calc(80px + var(--space-xl));
  padding-bottom: var(--space-xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 219, 222, 0.1), transparent 70%),
               radial-gradient(circle at bottom left, rgba(252, 0, 255, 0.1), transparent 70%);
  z-index: -1;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.hero-content h1 {
  margin-bottom: var(--space-md);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.feature-tags span {
  background-color: var(--color-bg-light);
  color: var(--color-text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  margin-right: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  border: 1px solid rgba(0, 219, 222, 0.3);
}

.hero-visual {
  position: relative;
}

.ai-visual {
  width: 100%;
  height: auto;
  max-width: 500px;
  filter: drop-shadow(0 0 15px rgba(0, 219, 222, 0.3)) drop-shadow(0 0 15px rgba(252, 0, 255, 0.3));
  animation: pulse 5s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 15px rgba(0, 219, 222, 0.3)) drop-shadow(0 0 15px rgba(252, 0, 255, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 219, 222, 0.6)) drop-shadow(0 0 20px rgba(252, 0, 255, 0.6));
  }
}

/* Features Section */
.features-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(252, 0, 255, 0.05), transparent 70%);
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background-color: var(--color-bg-dark);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 219, 222, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 219, 222, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
}

/* Technology Section */
.technology-section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(0, 219, 222, 0.1), transparent 70%);
  z-index: -1;
}

.technology-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  font-size: 1.1rem;
}

.tech-features {
  margin-bottom: var(--space-lg);
}

.tech-item {
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  position: relative;
  transition: all 0.3s ease;
  padding-left: var(--space-md);
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-neon-cyan), var(--color-neon-purple));
}

.tech-item:hover {
  transform: translateX(5px);
}

.tech-visual {
  position: relative;
}

.tech-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 219, 222, 0.2)) drop-shadow(0 0 10px rgba(252, 0, 255, 0.2));
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(0, 219, 222, 0.1), rgba(252, 0, 255, 0.1));
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  font-size: 1.1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.trust-badges span {
  background-color: var(--color-bg-dark);
  color: var(--color-text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  margin: 0 var(--space-xs) var(--space-sm);
  font-size: 0.9rem;
  border: 1px solid rgba(0, 219, 222, 0.2);
}

/* Footer */
.site-footer {
  background-color: var(--color-bg-light);
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

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

.footer-logo span {
  margin-left: var(--space-sm);
  font-weight: 600;
}

.footer-nav {
  display: flex;
}

.footer-links, .footer-legal {
  margin-left: var(--space-xl);
}

.site-footer h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

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

.site-footer li {
  margin-bottom: var(--space-xs);
}

.site-footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.footer-keywords {
  display: flex;
  flex-wrap: wrap;
}

.footer-keywords span {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--color-text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  margin-left: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section .container,
  .technology-section .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content,
  .technology-content {
    order: 1;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-visual,
  .tech-visual {
    order: 0;
    margin-bottom: var(--space-md);
  }
  
  .ai-visual,
  .tech-svg {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  
  .tech-item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 2000;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(21, 32, 43, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1500;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: var(--space-md) 0;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: var(--space-md);
  }
  
  .footer-nav {
    justify-content: space-between;
    width: 100%;
  }
  
  .footer-links, 
  .footer-legal {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .footer-keywords {
    justify-content: center;
    margin-top: var(--space-xs);
  }
  
  .footer-nav {
    flex-direction: column;
  }
  
  .footer-legal {
    margin-top: var(--space-md);
  }
}
