:root {
  --primary-color: #ff6b6b;
  --accent-color: #f9c74f;
  --bright-purple: #bf00ff;
  --bright-green: #72ff69;
  --neon-pink: #ff0592;
  --bright-orange: #ff8400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&family=Comic+Neue:wght@400;700&display=swap');

body {
  font-family: Arial, sans-serif;
  background-color: #f8e1ff;
  color: #5a189a;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin-bottom: 15px;
}

.highlight {
  color: #ff0592;
}

a {
  text-decoration: none;
  color: #ff6b6b;
  font-weight: bold;
}

a:hover {
  color: #f9c74f;
}

header {
  background-color: #bf00ff;
  color: white;
  padding: 20px 0;
  text-align: center;
  border-bottom: 5px solid #f9c74f;
}

header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 40px 0;
  background-color: #fce3ff;
}

.hero h2 {
  font-size: 2rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

.buttons {
  margin: 30px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid black;
}

.btn.primary {
  background-color: #4d96ff;
  color: white;
}

.btn.primary:hover {
  background-color: #3a7cd8;
}

.btn.secondary {
  background-color: #72ff69;
  color: #5a189a;
}

.btn.secondary:hover {
  background-color: #52d749;
}

.steps {
  padding: 40px 0;
  background-color: white;
}

.steps h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.step-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 220px;
  border: 2px solid #f9c74f;
  margin-bottom: 20px;
}

.card .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ff6b6b;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.card h3 {
  font-size: 1.3rem;
}

.card p {
  font-size: 1rem;
  color: #555;
}

.inspiration {
  padding: 40px 0;
  background-color: #eaeaff;
  text-align: center;
}

.inspiration h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.inspiration p {
  font-size: 1.1rem;
}

.example-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.example-link {
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  border: 1px solid #f9c74f;
}

.example-link:hover {
  color: #ff0592;
  background-color: #f9c74f;
}

footer {
  background-color: #bf00ff;
  color: white;
  padding: 20px 0;
  text-align: center;
  border-top: 5px solid #f9c74f;
}

footer a {
  color: #f9c74f;
}

footer p {
  text-align: center;
  font-size: 1rem;
}

.music-player {
  position: fixed;
  top: 50px;
  right: 20px;
  background-color: yellow;
  border: 2px solid magenta;
  border-radius: 10px;
  padding: 10px;
  z-index: 1000;
  text-align: center;
}

.music-player p {
  color: blue;
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 10px;
}

.music-controls {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.music-btn {
  background-color: #00ff00;
  color: #ff0000;
  border: 1px solid #ff0000;
  border-radius: 5px;
  padding: 5px;
  cursor: pointer;
  font-size: 12px;
}

@media (max-width: 768px) {
  .step-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    padding: 8px 16px;
  }
}