:root {
  --primary: #FF00CC; 
  --primary-dark: #b40090;
  --secondary: #00EDED; 
  --light: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #757575;
  --text: #000000;
  --text-light: #ffffff;
  --accent: #3498DB; /* Blue */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.05) 0%, transparent 20%);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease-in-out;   
}
.logo-image {
  width: 75px;
}

/* Header & Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: url('../assets/Keyart_2025.04.16.png') no-repeat center center / cover
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins Black', sans-serif;
  font-size: 4rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(26, 21, 6, 0.3);
  animation: pulse 2s infinite alternate;
}

.hero-logo-image {
  width: 75%;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text);
}

/* Navigation */
nav {
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 1.0) !important; 
  /*backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section {
  margin-bottom: 5rem;
  position: relative;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 3px;
}

.email-sub-form {
    margin: 0 auto;
}

#email-form p {
    text-align: center;
}

/* Game Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(27, 23, 11, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 80%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 400%;
  border-radius: 12px;
  opacity: 0;
  transition: 0.5s;
  animation: animate 20s linear infinite;
}

.feature-card:hover::before {
  opacity: 0.3;
  filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Game Modes */
.game-modes {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mode-card {
  display: flex;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border: 1px solid var(--medium-gray);
}

.mode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mode-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.explore-mode {
  background-image: url('../assets/explore-image.jpg');
}

.leaderboard-mode {
  background-image: url('../assets/trophy-image.jpg');
}

.mode-content {
  flex: 1;
  padding: 2rem;
}

.mode-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mode-subtitle {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.odometer-surrounding-text {
  font-size: 1.2rem;
  color: var(--text);
}

/* Stats Counter */
.stats {
  text-align: center;
  margin: 4rem 0;
}

.odometer {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  margin: 1rem 0;
  /*text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
}

.stats-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Newsletter Form */
.newsletter {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin: 4rem 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
}

.form-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px 0 0 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--light);
}

.form-input:focus {
  outline: 2px solid var(--primary);
}

/* Buttons */
.button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.068);
}

.button-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button-secondary:hover {
  background-color: rgba(3, 3, 1, 0.1);
}

.form-button {
  border-radius: 0 4px 4px 0;
  padding: 0.8rem 1.5rem;
}

/* Footer */
footer {
  background: var(--light-gray);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid var(--medium-gray);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-links a {
  color: var(--dark-gray);
  font-size: 2rem;
  transition: color 0.3s;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

.social-links-large a {
    color: var(--primary);
    font-size: 4rem;
    transition: color 0.3s ease-in-out;
}

.social-links-large a:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.social-links a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.copyright {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.poppins-black {
font-family: "Poppins", sans-serif;
font-weight: 900;
font-style: normal;
}

/* Animations */
@keyframes pulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
  }
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .hero{
    height: 250px;
    min-height: 250px;
  }

  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .odometer {
    font-size: 2.5rem;
  }
  
  .mode-card {
    flex-direction: column;
  }
  
  .mode-image {
    min-height: 200px;
  }
  
  .nav-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }
  
  .form-input {
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  
  .form-button {
    border-radius: 4px;
  }
  
  .nav-links {
    display: none;
  }
}
