/* Modern CSS for deepnudefree.rocks - Dark theme with purple gradient */
:root {
  --primary: #8B5CF6;
  --secondary: #EC4899;
  --dark: #1E1B4B;
  --dark-alt: #312E81;
  --light: #F3F4F6;
  --text-light: #D1D5DB;
  --text-dark: #1F2937;
  --accent: #6D28D9;
  --bg-gradient: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --radius: 12px;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

html, body {
  scroll-behavior: smooth;
}

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

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

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

ul, ol {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
}

.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-title {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* Layout & Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--dark-alt);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(30, 27, 75, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 80px;
}

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

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
}

.domain {
  color: var(--primary);
}

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

.nav-item a {
  position: relative;
  padding: 0.5rem 0;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.hamburger {
  position: relative;
  width: 100%;
  height: 100%;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--light);
  border-radius: 4px;
  transition: var(--transition);
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 20%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 20%;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  z-index: 0;
}

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

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

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  position: relative;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.1;
}

.circle1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.circle2 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--light);
  border: none;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.5);
  color: var(--light);
}

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

.btn-outline:hover {
  background: var(--primary-gradient);
  color: var(--light);
}

/* Features */
.features {
  background-color: var(--dark);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--dark-alt);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* Steps Section */
.steps {
  background-color: var(--dark-alt);
  padding: 5rem 0;
}

.steps-container {
  margin-top: 3rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-gradient);
  z-index: 1;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--dark);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  max-width: 80%;
}

.step:nth-child(odd) {
  margin-left: auto;
}

.step-number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--light);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 2;
}

.step:nth-child(odd) .step-number {
  left: -25px;
}

.step:nth-child(even) .step-number {
  right: -25px;
}

.step-content {
  padding-left: 1rem;
}

.step-title {
  margin-bottom: 1rem;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ Section */
.faq {
  background-color: var(--dark);
  padding: 5rem 0;
}

.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-alt);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  background: var(--dark-alt);
  color: var(--light);
  font-weight: 600;
  font-size: 1.125rem;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(139, 92, 246, 0.1);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding-bottom: 1.25rem;
  max-height: 1000px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background-color: var(--dark-alt);
  padding: 5rem 0 0;
}

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

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

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

.footer-about p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .step {
    max-width: 100%;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .step:nth-child(odd) {
    margin-left: 0;
  }
  
  .step:nth-child(odd) .step-number,
  .step:nth-child(even) .step-number {
    left: 1rem;
    top: 1rem;
    transform: none;
  }
  
  .step-content {
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    position: sticky;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    flex-direction: column;
    background: var(--dark);
    padding: 3rem 2rem;
    transition: var(--transition);
    opacity: 0;
  }
  
  .nav-menu.active {
    left: 0;
    opacity: 1;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active .hamburger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  
  .menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .hamburger span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  
  .hero {
    padding: 150px 0 80px;
    min-height: auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
