/*
* hotgens.pw - Gens Gay ai Porn Videos
* Modern, responsive design with SEO optimizations
*/

/* Base Styles & Variables */
:root {
  --primary: #00C9FF;
  --secondary: #92FE9D;
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #f5f5f5;
  --text: #ffffff;
  --text-secondary: #b0b0b0;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --box-shadow: 0 10px 30px rgba(0, 201, 255, 0.2);
  --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

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

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 201, 255, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(0, 201, 255, 0.1);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Main wrapper */
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--darker);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 201, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(146, 254, 157, 0.05) 0%, transparent 50%);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-icon {
  margin-right: 1rem;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

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

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light);
  padding-bottom: 5px;
  position: relative;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--light);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
#hero {
  padding: 180px 0 100px;
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 201, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

#hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-visual {
  position: absolute;
  top: 100px;
  right: 5%;
  z-index: 1;
}

/* Features Section */
#features {
  padding: 100px 0;
  background-color: var(--dark);
}

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

.feature-card {
  background: rgba(20, 20, 20, 0.8);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid rgba(0, 201, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: rgba(0, 201, 255, 0.2);
}

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

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

.feature-card p {
  color: var(--text-secondary);
}

/* How It Works Section */
#how-it-works {
  padding: 100px 0;
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
}

#how-it-works::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 254, 157, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Generate Section */
#generate {
  padding: 100px 0;
  background-color: var(--dark);
  position: relative;
}

.generate-content {
  max-width: 500px;
}

#generate h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

#generate p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.generate-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* Animation for generate section */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes dataFlow {
  0% {
    stroke-dashoffset: 30;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.pulse-circle {
  animation: pulse 3s infinite ease-in-out;
}

.blink {
  animation: blink 1.5s infinite;
}

.data-line {
  animation: dataFlow 3s infinite linear;
}

/* Gallery Section */
#gallery {
  padding: 100px 0;
  background-color: var(--darker);
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--light);
  font-weight: 600;
}

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

.gallery-cta p {
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background-color: var(--dark);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial {
  background: rgba(20, 20, 20, 0.8);
  padding: 2rem;
  border-radius: 15px;
  max-width: 350px;
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

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

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.author {
  text-align: right;
  color: var(--text-secondary);
}

/* Final CTA Section */
#final-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 201, 255, 0.1) 0%, rgba(146, 254, 157, 0.1) 100%);
}

#final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#final-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* Footer Styles */
footer {
  background-color: var(--darker);
  padding: 80px 0 20px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  max-width: 350px;
}

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

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

.footer-info p {
  font-size: 0.9rem;
}

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

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--light);
  position: relative;
}

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

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

.footer-column ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-visual, .generate-visual {
    position: static;
    margin-top: 3rem;
    transform: none;
    display: flex;
    justify-content: center;
  }
  
  #hero .container {
    display: flex;
    flex-direction: column;
  }
  
  #generate .container {
    display: flex;
    flex-direction: column;
  }
  
  .generate-content {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stats {
    justify-content: space-between;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
