/* Base styles for deepfakeaiporn.pw */
:root {
  --primary: #00b894;
  --primary-dark: #009e7d;
  --primary-light: #55efc4;
  --secondary: #6c5ce7;
  --secondary-dark: #5541d7;
  --accent: #fd79a8;
  --dark: #2d3436;
  --darker: #1e272e;
  --light: #dfe6e9;
  --white: #ffffff;
  --gray: #636e72;
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

h1 {
  font-size: 3.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--dark);
}

h3 {
  font-size: 1.5rem;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Header Styles */
header {
  background: var(--darker);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-shape {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-right: 0.8rem;
}

.logo-text {
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.domain {
  color: var(--primary);
  margin-left: 2px;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-line {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

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

#main-nav a {
  color: var(--light);
  font-weight: 500;
}

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

.access-btn {
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: var(--darker) !important;
  font-weight: bold !important;
}

.access-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.primary-btn {
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--darker);
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 30px;
  display: inline-block;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.primary-btn.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.secondary-btn {
  background: transparent;
  color: var(--white);
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 30px;
  border: 2px solid var(--primary);
  display: inline-block;
}

.secondary-btn:hover {
  background: rgba(0, 184, 148, 0.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* 3D Cube Animation */
.cube-3d {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-30deg) rotateY(45deg);
  animation: cube-rotate 20s infinite linear;
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: var(--darker);
  opacity: 0.9;
}

.cube-face.front {
  transform: translateZ(100px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.cube-face.back {
  transform: translateZ(-100px) rotateY(180deg);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(100px);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(100px);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(100px);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(100px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

@keyframes cube-rotate {
  0% { transform: rotateX(-30deg) rotateY(0); }
  100% { transform: rotateX(-30deg) rotateY(360deg); }
}

/* Diagonal Separator */
.diagonal-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 50%, 100% 100%, 0% 100%);
}

.diagonal-separator.reverse {
  background: var(--white);
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

/* Technology Section */
.technology-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.tech-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary);
}

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

.card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: bold;
  color: var(--light);
  opacity: 0.3;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-text {
  position: absolute;
  color: var(--white);
  font-weight: bold;
  font-size: 1.5rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-right: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-content .primary-btn {
  background: var(--white);
  color: var(--primary);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--light);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 300px;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo img {
  margin-right: 1rem;
}

.footer-logo span {
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.link-column h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.link-column ul li {
  margin-bottom: 0.8rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.link-column ul li:hover {
  opacity: 1;
  transform: translateX(5px);
}

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

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .cube-3d {
    width: 150px;
    height: 150px;
  }
  
  .cube-face {
    width: 150px;
    height: 150px;
    font-size: 2.5rem;
  }
  
  .cube-face.front {
    transform: translateZ(75px);
  }
  
  .cube-face.back {
    transform: translateZ(-75px) rotateY(180deg);
  }
  
  .cube-face.top {
    transform: rotateX(90deg) translateZ(75px);
  }
  
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(75px);
  }
  
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(75px);
  }
  
  .cube-face.right {
    transform: rotateY(90deg) translateZ(75px);
  }
}

@media screen and (max-width: 768px) {
  header .container {
    padding: 0 1rem;
  }
  
  #menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  #menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  #menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  #main-nav.active {
    transform: translateX(0);
  }
  
  #main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  #main-nav li {
    margin: 0;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: 3rem;
  }
  
  .tech-grid,
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .primary-btn,
  .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
