:root {
  --turquoise: #40E0D0;
  --coral: #FF7F50;
  --sandy-beige: #F5DEB3;
  --neon-green: #39FF14;
  --hot-pink: #FF69B4;
  --white: #FFFFFF;
  --black: #000000;
  --dark-turquoise: #008B8B;
}
/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--sandy-beige);
  overflow-x: hidden;
}

/* ===== TROPICAL BACKGROUND ===== */
.tropical-bg {
  background-image: url('https://au.pinterest.com/pin/853080354401882965/');
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

.tropical-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://giphy.com/gifs/trippy-weird-psychedelic-xUPGciNGrvRcugDSHS') no-repeat center center fixed;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
  animation: glitter 5s infinite;
}

@keyframes glitter {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

/* ===== HEADER ===== */
header {
  background-color: rgba(64, 224, 208, 0.8);
  padding: 2rem;
  text-align: center;
  border-bottom: 5px solid var(--coral);
}

h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 3rem;
  color: var(--hot-pink);
  text-shadow: 3px 3px 0 var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: 5px;
}

.subtitle {
  font-family: 'Comic Neue', cursive;
  font-size: 1.5rem;
  color: var(--turquoise);
  text-shadow: 1px 1px 2px var(--black);
}

/* ===== NAVIGATION ===== */
nav {
  background-color: rgba(0, 139, 139, 0.8);
  padding: 1rem;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
}

nav a:hover {
  color: var(--neon-green);
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 2px solid var(--coral);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* ===== SECTION TITLES ===== */
.section-title {
  color: var(--turquoise);
  text-align: center;
  margin: 2rem 0;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.5rem;
  text-decoration: underline;
  text-decoration-color: var(--hot-pink);
  text-decoration-style: wavy;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-block;
  background-color: var(--coral);
  color: var(--white);
  padding: 10px 20px;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 0 var(--black);
  text-align: center;
  text-decoration: none;
  margin: 1rem auto;
  transition: all 0.3s;
}

.button:hover {
  background-color: var(--neon-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--black);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--black);
}

/* ===== FOOTER ===== */
footer {
  background-color: rgba(0, 139, 139, 0.8);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  border-top: 5px solid var(--hot-pink);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}
