/*
 * AI Porn Videos Website Styles
 * A modern, purple gradient design with unique layout
 */

:root {
  /* Color scheme - completely different from previous websites */
  --primary: #8E2DE2;
  --secondary: #4A00E0;
  --accent: #c16ecf;
  --dark: #1a1a2e;
  --light: #ffffff;
  --light-purple: rgba(142, 45, 226, 0.1);
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--light);
  background-color: var(--dark);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

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

p {
  margin-bottom: 1rem;
}

/* Layout */
header, section, footer {
  padding: 2rem 5%;
}

section {
  padding: 5rem 5%;
}

.header-container, .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: rgba(26, 26, 46, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--light);
  margin: 6px 0;
  transition: transform 0.3s ease;
}

.nav-cta {
  background: var(--gradient);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  background: var(--gradient);
  color: var(--light);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(142, 45, 226, 0.4);
}

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

.glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.8);
  }
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(142, 45, 226, 0.3), transparent 70%);
  padding-top: 6rem;
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Featured Section */
.featured {
  background-color: rgba(26, 26, 46, 0.5);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--card-bg);
  overflow: hidden;
}

.duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.video-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.25rem;
  color: var(--light);
}

.video-card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-center {
  text-align: center;
}

/* Categories Section */
.categories {
  background-color: rgba(74, 0, 224, 0.05);
}

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

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.2);
}

.category-item h3 {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* About Section */
.about {
  background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><path d="M0,100 Q50,50 100,100 T200,100" stroke="rgba(142,45,226,0.1)" fill="none" stroke-width="0.5" /></svg>');
  background-size: 100px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

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

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

.check-icon {
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient);
  text-align: center;
  padding: 4rem 1rem;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-banner h2::after {
  background: var(--light);
}

/* Footer */
footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

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

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

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
  border-radius: 3px;
}

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

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
  color: var(--light);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--dark);
    padding: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: all;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 5%;
  }
  
  .video-grid, .category-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    justify-content: center;
  }
}
