/* 
  aivrporn.pw - Styles
  A unique design with purple and electric blue color scheme
*/

:root {
  --primary: #5d17eb;      /* Purple */
  --secondary: #f24bff;    /* Hot pink */
  --accent: #00f2fe;       /* Electric blue */
  --dark: #1a1a2e;         /* Dark blue-gray */
  --light: #ffffff;
  --gray: #f6f6f8;
  --text-dark: #2a2a42;
  --text-light: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow: 0 10px 30px rgba(93, 23, 235, 0.15);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--dark);
  background: radial-gradient(circle at top right, #251547, #1a1a2e);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

section {
  padding: 100px 0;
  position: relative;
}

/* Background shapes */
.bg-shapes {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.shape-1 {
  width: 800px;
  height: 800px;
  background: var(--primary);
  top: -400px;
  right: -200px;
  animation: float 20s infinite alternate;
}

.shape-2 {
  width: 600px;
  height: 600px;
  background: var(--secondary);
  bottom: -300px;
  left: -200px;
  animation: float 15s infinite alternate-reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 40%;
  right: 10%;
  animation: float 12s infinite alternate;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -20px) scale(1.05);
  }
  100% {
    transform: translate(-30px, 40px) scale(0.95);
  }
}

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
}

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

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

.logo-svg {
  width: 120px;
  height: 40px;
}

.logo-text {
  font-size: 30px;
  font-weight: 700;
  fill: url(#headset-gradient);
}

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

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-left: 30px;
}

.menu li a {
  color: var(--light);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.menu li a:hover {
  color: var(--secondary);
}

.menu li a:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--gradient);
  color: var(--light) !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(242, 75, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 75, 255, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--light);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero section */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.primary-button {
  background: var(--gradient);
  color: var(--light);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(242, 75, 255, 0.3);
  transition: all 0.3s ease;
}

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

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
}

.large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
}

.vr-headset {
  width: 100%;
  height: auto;
  animation: float-slow 8s infinite alternate;
}

@keyframes float-slow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.pulse {
  animation: pulse 3s infinite alternate;
}

.pulse-strong {
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Experience section */
.experience {
  background: rgba(26, 26, 46, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* Technology section */
.technology {
  background: rgba(93, 23, 235, 0.05);
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tech-list {
  list-style: none;
  margin: 30px 0;
}

.tech-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.check-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.tech-list li span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

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

.tech-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Features section */
.features {
  background: rgba(26, 26, 46, 0.7);
}

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

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Benefits section */
.benefits {
  background: rgba(93, 23, 235, 0.05);
}

.benefits-content {
  text-align: center;
}

.benefits-comparison {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
}

.benefit-col {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 30px;
  flex: 1;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.benefits-list {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.benefits-list li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.benefits-list.traditional li::before {
  content: "✕";
  color: rgba(255, 0, 0, 0.7);
  margin-right: 10px;
}

.benefits-list.ai-vr li::before {
  content: "✓";
  color: rgba(0, 255, 0, 0.7);
  margin-right: 10px;
}

.benefits-cta {
  margin-top: 50px;
}

/* CTA section */
.cta-section {
  background: var(--gradient);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--light);
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--light);
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-section .primary-button {
  background: var(--light);
  color: var(--primary);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo p {
  margin-top: 20px;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-icon img {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-icon img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Media queries */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero .container,
  .tech-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .tech-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 80px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  }
  
  .menu.active {
    right: 0;
  }
  
  .menu li {
    margin: 15px 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    padding-top: 150px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-comparison {
    flex-direction: column;
    align-items: center;
  }
  
  .vs {
    transform: rotate(90deg);
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
