/* 
* aixxx.best - Main Stylesheet
* Modern, responsive design for AI adult content website
* Optimized for mobile and desktop viewing
*/

/* ===== Base Styles & Reset ===== */
:root {
  /* Color palette - purple/blue theme different from previous websites */
  --primary-color: #6A5ACD;
  --primary-dark: #483D8B;
  --primary-light: #9370DB;
  --accent-color: #FF5E85;
  --text-color: #333333;
  --text-light: #ffffff;
  --bg-color: #ffffff;
  --bg-dark: #21204A;
  --bg-gradient: linear-gradient(135deg, #6A5ACD 0%, #4169E1 100%);
  --card-bg: #f9f9ff;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-dark);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 4rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.primary-btn {
  background: var(--accent-color);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(255, 94, 133, 0.3);
}

.primary-btn:hover {
  background: #ff3e6c;
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 94, 133, 0.4);
}

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

.secondary-btn:hover {
  background: var(--primary-light);
  color: var(--text-light);
  border-color: var(--primary-light);
}

.large {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-svg {
  width: 4.8rem;
  height: 4.8rem;
}

nav ul {
  display: flex;
  gap: 2.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  background: var(--bg-gradient);
  color: var(--text-light);
  padding: 18rem 0 10rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 5rem;
  font-weight: 800;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* ===== Features Section ===== */
.features {
  padding: 10rem 0;
  background-color: var(--bg-color);
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(106, 90, 205, 0.1);
  color: var(--primary-color);
}

.feature-card h3 {
  margin: 2rem 0;
}

/* ===== Benefits Section ===== */
.benefits {
  padding: 10rem 0;
  background-color: #f8f9ff;
}

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

.benefit-item {
  padding: 3rem;
  border-left: 4px solid var(--primary-color);
  background-color: var(--bg-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.benefit-item:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.benefit-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

/* ===== Technology Section ===== */
.technology {
  padding: 10rem 0;
  background-color: var(--bg-color);
}

.tech-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.tech-text {
  flex: 1;
}

.tech-text p {
  margin-bottom: 3rem;
}

.tech-text ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.tech-text ul li {
  margin-bottom: 1rem;
}

.tech-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 10rem 0;
  background-color: #f8f9ff;
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
}

.faq-item {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(106, 90, 205, 0.2);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 10rem 0;
  background: var(--bg-gradient);
  color: var(--text-light);
  text-align: center;
}

.cta-section h2 {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0.9;
}

/* ===== Footer ===== */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo p {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

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

.link-group h4 {
  color: var(--primary-light);
  margin-bottom: 2rem;
}

.link-group ul li {
  margin-bottom: 1rem;
}

.link-group ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.link-group ul li a:hover {
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.copyright p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  html {
    font-size: 56.25%; /* 9px = 1rem */
  }
  
  .tech-content {
    flex-direction: column;
    gap: 4rem;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%; /* 8px = 1rem */
  }
  
  header .container {
    flex-direction: column;
    gap: 2rem;
  }
  
  nav ul {
    gap: 1.5rem;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .faq-items {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 15rem 0 10rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
