@charset "UTF-8";
/* CSS Document */

/* GLOBAL */

body {
  margin: 0;
  font-family: Georgia, serif;
  color: #ffffff;
  background: url("../img/Background.jpg") no-repeat center center fixed;
  background-size: cover;
  text-align: center;
}

section {
  padding: 20px 20px  0px 20px;
}

h1 {
  font-size: 3rem;
  margin-top: 0px;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-size: 1.5rem;
  font-weight: 100;
   letter-spacing: -0.5px;
   line-height:  1.8rem;
}
h1, h2 {
  letter-spacing: -0.5px;
font-weight: 300;
}

/* TOP HEADER IMAGE */

.top-header {
  margin: 0;
  padding: 0;
  text-align: center;
}

.top-header img {
  width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
/* STORE BUTTONS */

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 10px 0;
  flex-wrap: nowrap; /* prevents stacking */
}
.store-buttons img {
  width: 25%;
}

.hero-image {
  width: 50%;
  /*max-width: 60%;*/
  margin-top: -60px;
}

/* ORDER SECTION */

/* ORDER SECTION BACKGROUND */

.order {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 10px 20px 20px 20px;
}

/* ORDER SECTION TEXT COLOR */
.order,
.order h2,
.order p {
  color: #000000;
}
.order-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.order-content img {
  width: 300px;
  max-width: 90%;
}

.order-text {
  max-width: 500px;
}

/* BUY NOW BUTTON */

.buy-btn {
  background: linear-gradient(180deg, #4cd964, #2fae41);
  border: none;
  padding: 18px 60px;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  margin: 25px 0;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* HOW SECTION */

.how img {
  width: 500px;
  max-width: 90%;
  margin-top: 30px;
}

/* GAMES SECTION SPACING */

.games {
  margin-bottom: 80px;
}
/* GAME GRID */

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto 0 auto;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.logo img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  transition: transform 0.2s ease;
}

.logo img:hover {
  transform: scale(1.08);
}
/* TOOLTIP SYSTEM */

.logo {
  position: relative;
  cursor: pointer;
}

.logo::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  
  background: rgba(2, 28, 46, 0.95);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  width: 220px;
  text-align: center;
  line-height: 1.4;
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Tooltip Arrow */
.logo::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(2, 28, 46, 0.95) transparent transparent transparent;
  
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Show Tooltip on Hover */
.logo:hover::after,
.logo:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
/* INSTAGRAM */
/* INSTAGRAM SECTION BACKGROUND */

.instagram {
  background-color: #000000;
  padding: 80px 20px;
}

.insta-logo {
  width: 120px;
  margin-bottom: 20px;
}
/* UNIVERSAL CTA BUTTON */

.cta-btn {
  display: inline-block;             /* makes <a> behave like button */
  background: linear-gradient(180deg, #4cd964, #2fae41);
  padding: 18px 60px;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  margin: 25px 0;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;             /* removes underline from <a> */
  border: none;
  transition: all 0.2s ease;
  font-family: Arial, Helvetica, sans-serif;  /* ← ADD THIS */
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer {
  font-family: Arial, Helvetica, sans-serif;  /* ← ADD THIS */
  font-size: 0.9rem;
  margin-top: 40px;
  opacity: 0.8;
}
/* ORDER SECTION STORE BUTTONS ONLY */

.order-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: nowrap; /* prevents stacking */
}

.order-buttons img {
  width: 40%;  /* smaller than hero */
  height: auto;
}
/* SHARE SECTION */

.share-section {
  margin-top: 50px;
}

.share-text {
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 500px;
  margin: 0 auto;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.social-grid img {
  width: 50px;
  height: auto;
  transition: transform 0.2s ease;
}

.social-grid img:hover {
  transform: scale(1.15);
}

/* Responsive */

@media (max-width: 768px) {

  .social-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 350px;
    gap: 15px;
  }

  .social-grid img {
    width: 35px;
  }

}
/* MOBILE */

@media (max-width: 768px) {

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1.3rem;
	line-height: 1.5rem;
  }

  .hero-image {
    width: 90%;
    margin-top: -35px;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .logo img {
    max-height: auto;
  }
	.store-buttons img {
  width: 35%;
	}
.order-buttons img {
  width: 35%;
}
}