/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', monospace;
  background-color: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.4;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: left;
  background: #000 url('images/Banner.gif') no-repeat center center;
  background-size: cover;
  padding: 2rem 1rem;
  color: #fff;
  min-height: 200px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), #0a0a0a);
}

.hero-text-box {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  padding: 2rem 2.5rem;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 80%;
}

.hero h1 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px #000;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero .cta-button {
  text-decoration: none;
  background-color: #00ffcc;
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  box-shadow: 2px 2px #000;
}

.hero .cta-button:hover {
  background-color: #00cc99;
}

/* Features Section with Side Image */
.features-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 2rem;
}

.feature {
  background-color: #111;
  padding: 1.5rem;
  width: 200px;
  border: 2px solid #00ffcc;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* New line to center content inside each box */
  text-align: center;
}

.features-left {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
}

.features-right {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-left: -10%;
}

.features-right img {
  max-width: 100%;
  border: 4px solid #00ffcc;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffcc;
}

/* Intro Box */
.intro-box {
  padding: 0; /* handled by features-left now */
}

.intro-content {
  background-color: rgba(17, 17, 17, 0.95);
  border: 2px solid #00ffcc;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 660px;
  margin-left: 13%;
  margin-bottom: 6rem;
  margin-top: 0rem;
}

/* Feature Boxes */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4rem;
  padding-left: 10%;
}

.feature {
  background-color: #111;
  padding: 1.5rem;
  width: 200px;
  border: 2px solid #00ffcc;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffcc;
}

.feature img {
  max-width: 60px;
  margin-bottom: 1rem;
}

/* Content Background */
.content {
  background: url('images/Background.gif') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  padding: 2rem 1rem;
}


/* Mockup Screenshot */
.mockup {
  text-align: center;
  margin: 2rem 0;
}

.mockup img {
  max-width: 90%;
  height: auto;
  border: 4px solid #00ffcc;
  border-radius: 8px;
  box-shadow: 0 0 15px #00ffcc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  font-size: 0.8rem;
  color: #888;
}

/* Responsive */
@media(max-width: 900px) {
  .features-section {
    flex-direction: column;
  }

  .features-right {
    margin-top: 2rem;
  }

  .hero-text-box {
    left: 10%;
    top: 40%;
    padding: 1.5rem 2rem;
  }
}

@media(max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

html {
  scroll-behavior: smooth;
}
