/* Reset and basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: #210136;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, p {
  margin-bottom: 10px;
}

/* Hero section */
.hero {
  height: 50vh;
  background: url('../assets/images/gaming-setup-with-laptop-desk.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero-overlay {
  background: rgba(33, 1, 54, 0.9);
  padding: 70px;
  border-radius: 30px;
  max-width: 700px;
}
.hero h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

/* About section */
.about {
  padding: 60px 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #210136;
  color: #fff;
}
.about img {
  border-radius: 15px;
  max-width: 400px;
  width: 100%;
  height: auto;
}
.about-content {
  max-width: 400px;
  color: #fff;
}
.about-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}
.about-content a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #fff;
  color: #210136;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.about-content a:hover {
  background-color: #4e4c4c;
  color: #ffffff;
}

/* Call-to-action section */
.cta {
  padding: 60px 10%;
  background: url('../assets/images/gamepad.jpeg') center/cover no-repeat;
  text-align: center;
}
.cta h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}
.cta-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.cta-card {
  background-color: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  max-width: 300px;
  text-align: center;
}
.cta-card h3 {
  margin-bottom: 15px;
  color: #210136;
}
.cta-card p {
  margin-bottom: 20px;
  color: #210136;
}
.cta-card a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #210136;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.cta-card a:hover {
  background-color: #fff;
  color: #210136;
  border: 2px solid #210136;
}

/* Footer */
footer {
  background-color: #210136;
  color: #fff;
  text-align: center;
  padding: 40px 10%;
}
footer a {
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}
footer a:hover {
  background-color: #fff;
  color: #210136;
}

/* Responsive */
@media(max-width:768px){
  .about, .cta-cards {
    flex-direction: column;
    align-items: center;
  }
}