body {
  font-family: Arial, sans-serif;
  padding: 40px;
  background-color: #fff;
  color: #111;
  margin: 0;
}

h1 {
  color: #e3142e;
  margin-bottom: 30px;
}

.overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background-color: #222;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px #000;
}

.card span.label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

.books {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.book {
  width: 140px;
  text-align: center;
}

.book img {
  width: 100%;
  border-radius: 8px;
}

.note {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.goal-card {
  background: #13136e;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #13136e;
  text-align: center;
  font-weight: bold;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.goal-card {
  background: #13136e;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #13136e;
  text-align: center;
}

.goal-img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.goal-text {
  font-weight: bold;
}
.gigs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gig-card {
  background: #13136e;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #13136e;
  text-align: center;
}

.gig-img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.gig-text {
  font-weight: bold;
}
.mindset-card {
  position: relative;
  width: 100%;
  background: #eaf6ff;
  padding: 40px 20px;
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mindset-content {
  position: relative;
  z-index: 2;
}

.mindset-content h2 {
  font-size: 1.6em;
  margin-bottom: 20px;
}

.mindset-content p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin: 15px 0;
}

.mindset-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}
.custom-content-box {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(227, 241, 250, 0.5);
  background-image: url('https://thedrumcoach.com/wp-content/uploads/2021/01/shapes.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 20px;
  color: #000; /* changed to dark for readability */
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 0 10px rgb(19,19,110, 0.1);
}

.mindset-content {
  flex: 1 1 100%;
  font-size: 1.1em;
  line-height: 1.6em;
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  50% { transform: rotate(-8deg); }
  75% { transform: rotate(5deg); }
}


.goal-card:hover .wobble-icon,
.gig-card:hover .wobble-icon,
.custom-content-box:hover .wobble-icon {
  animation: wobble 0.4s ease-in-out;
}
.practice-log-box {
  background: #f4f4f4;
  border-left: 4px solid #e3142e;
  padding: 20px;
  border-radius: 10px;
  font-family: monospace;
  
  color: #333;
  font-size: 15px;
  line-height: 0.8;

}
