/*
* sexyai.pw - Hot Yai Sex Porn Videos
* Modern, responsive design with SEO optimizations
*/

/* Base Styles & Variables */
:root {
  --primary: #FF416C;
  --secondary: #FF4B2B;
  --dark: #151515;
  --darker: #0a0a0a;
  --light: #f8f8f8;
  --gray: #aaaaaa;
  --text: #dddddd;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --box-shadow: 0 10px 20px rgba(255, 65, 108, 0.15);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(255, 65, 108, 0.1), transparent 60%),
              radial-gradient(circle at bottom left, rgba(255, 75, 43, 0.05), transparent 60%);
}

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

/* Header Styles */
header {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 0.8rem;
}

.brand h1 {
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

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

.main-nav li {
  margin-left: 2rem;
}

.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* Main Content Sections */
main {
  flex-grow: 1;
}

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

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

/* Hero Section */
#hero {
  padding: 7rem 0 5rem;
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 65, 108, 0.2), transparent 70%);
  z-index: 0;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

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

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 65, 108, 0.4);
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Features Section */
#ai-videos {
  background-color: var(--dark);
  position: relative;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background: rgba(21, 21, 21, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 65, 108, 0.1);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: rgba(255, 65, 108, 0.3);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

/* Technology Section */
#technology {
  background-color: var(--darker);
}

.tech-showcase {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.tech-info {
  flex: 1;
}

.tech-info p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.tech-features {
  list-style: none;
}

.tech-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.check-icon {
  margin-right: 0.8rem;
  flex-shrink: 0;
}

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

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

@keyframes pulse-animation {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* Benefits Section */
#benefits {
  background-color: var(--dark);
}

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

.benefit-card {
  background: var(--darker);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border-bottom: 3px solid var(--primary);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--gray);
}

/* Final CTA Section */
#final-cta {
  background: linear-gradient(135deg, rgba(255, 65, 108, 0.1) 0%, rgba(255, 75, 43, 0.1) 100%);
  text-align: center;
  padding: 5rem 0;
}

#final-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

#final-cta p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: 4rem 0 1rem;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-right: 1.5rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.copyright {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    margin-bottom: 3rem;
    max-width: 100%;
  }
  
  .hero-text h2 {
    text-align: center;
  }
  
  .tech-showcase {
    flex-direction: column;
  }
  
  .tech-visual {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .header-container {
    flex-direction: column;
  }
  
  .brand {
    margin-bottom: 1rem;
  }
  
  .main-nav {
    width: 100%;
    justify-content: center;
  }
  
  .main-nav li {
    margin: 0 1rem;
  }
  
  .footer-container {
    flex-direction: column;
  }
  
  .footer-links {
    margin-top: 2rem;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .main-nav {
    flex-wrap: wrap;
  }
  
  .main-nav li {
    margin: 0.5rem 0.7rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
}
