:root {
  --primary-orange: #ed502d;
  --dark-blue: #003087;
  --accent-yellow: #f2c94c;
  --cream-bg: #f2e3c6;
  --text-dark: #191b23;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Sans MS', Arial, sans-serif;
  background: var(--primary-orange);
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 0;
}

/* HEADER */
.header {
  background: var(--primary-orange);
  color: #fff;
  text-align: center;
  padding: 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO */
.sticker-logo {
  width: 200px;
  display: block;
  margin: 0 auto 0.5rem;
  animation: bounce 2s infinite;
}

/* HEADER TEXT */
.header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px var(--dark-blue);
}

.tagline {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  color: #fff;
}

.join-button {
  background: var(--dark-blue);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  border: 3px solid var(--accent-yellow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.join-button:hover {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* DASHED SECTION DIVIDER */
.section-divider {
  border-top: 10px dashed var(--primary-orange);
  background: var(--cream-bg);
  height: 10px;
  width: 100%;
}

/* MAIN FEATURES */
.main-features {
  background: var(--cream-bg);
  padding: 2rem 2rem 4rem;
  position: relative;
  z-index: 2;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.feature-card {
  background: #fff;
  border: 5px dashed var(--dark-blue);
  border-radius: 25px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
  min-height: 360px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.feature-card:hover {
  transform: scale(1.05) rotate(2deg);
  background: #fffcf5;
}

.feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1rem;
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
}

.feature-card h2 {
  font-size: 1.6rem;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-dark);
}

/* FOOTER */
.footer {
  background: var(--dark-blue);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 10px dashed var(--primary-orange);
}

.footer h3 {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px #000;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-button {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 3px solid var(--accent-yellow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.x-button {
  background: var(--primary-orange);
  color: var(--white);
}
.insta-button {
  background: var(--primary-orange);
  color: #fff;
}

.social-button:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
}

/* ANIMATIONS */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .sticker-logo {
    width: 140px;
  }

  .feature-card {
    padding: 1.5rem;
    min-height: 320px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .feature-card h2 {
    font-size: 1.3rem;
  }
}