/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #0c0c0c;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Typing Effect Styles */
.blinking-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}


/* Tab Styles */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 20px;
  border: none;
  border-radius: 5px 5px 0 0;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab.active {
  background-color: #ff6600;
}



.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.8), rgba(24, 24, 24, 0.6));
  z-index: -2;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  animation: patternMove 60s linear infinite;
  z-index: -1;
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 400px;
  }
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(10px);
  transition: padding 0.3s ease;
}

header.sticky {
  padding: 10px 100px;
  background-color: rgba(12, 12, 12, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items:center;
  width: 100%;
}

.logo a {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.logo a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%) scale(0);
  width: 3.7em;
  height: 3.7em;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.logo a:hover {
  color: #ff6600;
}
.logo a:hover::before {
  transform: translate(-10%, -50%) scale(1);
  opacity: 1;
  
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  position: relative;
  z-index: 1;
}

.menu li {
  margin-left: 30px;
  position: relative;
}

.menu li a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.menu li a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff6600, #ffaa00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu li a:hover {
  color: #ff6600;
}

.menu li a:hover::before {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: transform 0.3s ease;
}

/* Hero section styles */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 100px;
  margin-top: 100px;
  position: relative;
  overflow: hidden; /* Ensure video stays within bounds */
}

.hero-content {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle .highlight {
  color: #fff;
  font-weight:500;
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: highlightZoom 1s ease forwards;
  animation-delay: 1s;
}

@keyframes highlightZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.hero-subtitle .highlight::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(255, 102, 0, 0.4);
  transform: skew(-15deg);
  z-index: -1;
  animation: highlightSkew 2s ease-in-out infinite;
}

@keyframes highlightSkew {
  0% {
    transform: skew(-15deg);
  }
  50% {
    transform: skew(15deg);
  }
  100% {
    transform: skew(-15deg);
  }
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease 0.2s forwards;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #ff6600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease 0.4s forwards;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skew(-30deg);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  background-color: #ff8533;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.4);
}

.cta-button:active {
  transform: translateY(-2px);
}

/* Video Background Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Place video behind content */
  overflow: hidden;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.demo-video {
  padding: 0px 0 80px 0; /* Adjust padding as needed */
  text-align: center; /* Center the video container */
}



.demo-video .hero-video-container { 
  /* Keep the existing styles for responsive video from previous responses */
  position: relative; /* Relative positioning for centering */
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  overflow: hidden;
}

.demo-video .hero-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Game section styles */
.game-section {
  padding: 0px 0 120px 0;
  background-color: none;
  position: relative;
  z-index: 1;
}

.how-it-works{
  padding: 0px 0 120px 0;
}

.features{
  padding: 0px 0 120px 0;
}
.professionals{
  padding: 0px 0 120px 0;

}

.section-title {
  font-size:48px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  position: relative;
  z-index: 1;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #ff6600;
  z-index: -1;
}

.game-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease 0.6s forwards;
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.game-board {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.task-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.task-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: bubbleMove 5s linear infinite;
  margin: 10px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.task-card.slashed {
  transform: scale(0.8) rotateY(180deg);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.task-card.slashed::before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  font-weight: bold;
  color: rgba(0, 255, 0, 0.8);
  opacity: 1;
  transition: opacity 1s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@keyframes bubbleMove {
  0% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(0);
  }
  25% {
    transform: translate(-30%, -70%) rotateX(30deg) rotateY(30deg);
  }
  50% {
    transform: translate(-50%, -30%) rotateX(-30deg) rotateY(-30deg);
  }
  75% {
    transform: translate(-70%, -60%) rotateX(30deg) rotateY(-30deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(0);
  }
}

@keyframes randomMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(calc(random(100) * 1%), calc(random(100) * 1%));
  }
  50% {
    transform: translate(calc(random(100) * 1%), calc(random(100) * 1%));
  }
  75% {
    transform: translate(calc(random(100) * 1%), calc(random(100) * 1%));
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes moveTask {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-90%);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-score {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: scoreZoom 1s ease-in-out infinite;
}

@keyframes scoreZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.game-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.control-button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #ff6600;
  border: none;
  border-radius: 50px;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.control-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skew(-30deg);
  transition: left 0.5s ease;
}

.control-button:hover {
  background-color: #ff8533;
  transform: translateY(-5px);
}

.control-button:hover::before {
  left: 100%;
}

.control-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.4);
}

.control-button:active {
  transform: translateY(-2px);
}

.container{
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff1a;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease 0.6s forwards;
  
  
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 40px;

  }
.feature {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  }
  
.feature:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.feature:hover .feature-icon {
  animation: iconRotate 1s ease-in-out infinite;
}

@keyframes iconRotate {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 102, 0, 0.1);
  transform: skew(-30deg);
  transition: left 0.5s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 48px;
  color: #ff6600;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 16px;
  color: #ccc;
}

.step-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.step {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: calc(0.2s * var(--step-index));
}

.step:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.step::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #ff6600;
  border-radius: 50%;opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step:hover::before {
  opacity: 1;
  transform: scale(1);
}

.step-icon {
  font-size: 48px;
  color: #ff6600;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: rotate(360deg);
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.step-description {
  font-size: 16px;
  color: #ccc;
}

.step-timeline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.step-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ff6600;
  border-radius: 50%;
}
.professional-benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;

  }
.benefit {
  background-color: rgba(255, 255, 255, 0.051);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  }

 .pro{
  text-align: center;
 } 
        
.benefit:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    }

.benefit:hover .benefit-icon {
  animation: iconBounce 0.5s ease-in-out;
}

@keyframes iconBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.benefit::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 102, 0, 0.1);
  transition: top 0.5s ease;
}

.benefit:hover::before {
  top: 0;
}
        
.benefit-icon {
font-size: 48px;
color: #ff6600;
margin-bottom: 20px;
transition: transform 0.3s ease;
}

.benefit-title {
font-size: 24px;
font-weight: 600;
color: #fff;
margin-bottom: 10px;
}

.benefit-description {
font-size: 16px;
color: #ccc;
}


/* Early access section styles */
.early-access {
  padding: 120px 0;
  background-color: #1c1c1c;
  position: relative;
  z-index: 1;
}

.early-access-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-description {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease 0.2s forwards;
}

.early-access-form {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease 0.4s forwards;
  position: relative;
  z-index: 1;
}

.early-access-form input[type="email"] {
  width: 400px;
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.3s ease;
}

.early-access-form input[type="email"]:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.early-access-form input[type="email"]::placeholder {
  color: #ccc;
  transition: color 0.3s ease;
}

.early-access-form input[type="email"]:focus::placeholder {
  color: transparent;
}

.early-access-form button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #ff6600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.early-access-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: skew(-30deg);
  transition: left 0.5s ease;
  transform: skew(-30deg) rotateY(0deg); /* Add initial 3D rotation */
  transition: left 0.5s ease, transform 0.5s ease; /* Add transition for 3D rotation */
}

.early-access-form button:hover {
  background-color: #ff8533;
  transform: translateY(-5px);
}

.early-access-form button:hover::before {
  left: 100%;
  transform: skew(-30deg) rotateY(-180deg); /* Rotate on hover */
}

.early-access-form button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.4);
}

.early-access-form button:active {
  transform: translateY(-2px);
}

/* Footer styles */
footer {
  padding:40px 0;
  background-color: #0c0c0c;
  position: relative;
  z-index: 1;
  }
  
  .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  
  .footer-content .logo {
  font-size: 32px;
  font-weight: 700;
  margin-right: 3px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  } 

  
  
  .footer-content .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%) scale(0);
  width: 3.7em;
  height: 3.7em;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  .footer-content .logo:hover::before {
  transform: translate(-10%, -50%) scale(1);
  opacity: 1;
  }
  
  .footer-content p {
  font-size: 16px;
  color: #ccc;
  }
  
  .social-icons {
    display: flex;
  }
  
  .social-icons a {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    margin-left: 30px; /* Decreased from 20px to 10px */
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }
  
  .social-icons a:hover {
    color: #ff6600;
    transform: translateY(-5px);
  }
  
  .social-icons a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6600;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover::before {
    transform: scaleX(1);
  }
  
  /* Animation keyframes */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive styles */
  @media screen and (max-width: 991px) {
  header {
  padding: 20px 50px;
  }
  
  header.sticky {
  padding: 10px 50px;
  }
  
  .menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(12, 12, 12, 0.9);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  transform: translateY(-20px);
  }
  
  .menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  }
  
  .menu li {
  margin: 20px 0;
  }
  
  .hamburger {
  display: block;
  }
  
  .hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active .line:nth-child(2) {
  opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero {
  padding: 0 50px;
  }
  
  .hero-title,
  .section-title {
  font-size: 48px;
  }
  
  .hero-subtitle {
  font-size: 20px;
  }
  
  .cta-button {
  padding: 12px 30px;
  font-size: 18px;
  }
  
  .early-access-form input[type="email"] {
  width: 300px;
  }
  }
  
  @media screen and (max-width: 767px) {
  header {
  padding: 20px 30px;
  }
  
  header.sticky {
  padding: 10px 30px;
  }
  
  .logo a {
  font-size: 24px;
  }
  
  .hero {
  padding: 0 30px;
  }
  
  .hero-title,
  .section-title {
  font-size: 36px;
  }
  
  .hero-subtitle {
  font-size: 18px;
  }
  
  .cta-button {
  padding: 10px 25px;
  font-size: 16px;
  }
  
  .game-container {
  padding: 30px;
  }
  
  .control-button {
  padding: 12px 30px;
  font-size: 16px;
  }
  
  .early-access {
  padding: 80px 0;
  }
  
  .section-description {
  font-size: 18px;
  }
  
  .early-access-form {
  flex-direction: column;
  }
  
  .early-access-form input[type="email"] {
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
  }
  
  .early-access-form button {
  width: 100%;
  }
  
  .footer-content {
  flex-direction: column;
  text-align: center;
  }
  
  .footer-content .logo {
  margin-bottom: 20px;
  }
  
  .social-icons {
  margin-top: 20px;
  }
  .professional-benefits {
    overflow-x: auto; /* Allow horizontal scrolling if needed */
  }

  .benefit {
    flex: 0 0 auto; /* Prevent cards from shrinking too much */
    min-width: 250px; /* Set a minimum width for better visibility */
  }
  #game-section { /* Target the game section using the ID */
    display: none;
  }
  
  }

  
