






.blog-post-130825-science {
  background: linear-gradient(135deg, #ffe6f0, #e6f7ff, #f9f9e6);
  border: 6px solid #ffb6c1; /* brighter pastel pink border */
  border-radius: 20px;
  padding: 25px;
  margin: 40px auto;
  max-width: 800px;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  color: #4a4a4a;
  box-shadow: 0 0 15px rgba(255, 182, 193, 0.4); /* pink glow */
}

.blog-post-130825-science h2 {
  font-size: 1.5em;
  margin-bottom: 12px;
  background: #fff0f5;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  border: 3px solid #ffb6c1;
  color: #6a5a99;
}

.blog-post-130825-science p {
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 15px;
  border: 2px solid #ffb6c1;
  line-height: 1.6em;
}







.blog-post-120825-stage {
  background: rgba(0,0,0,0.8);
  border: 5px solid gold;
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 0 20px gold, 0 0 50px purple;
  position: relative;
  color: white;
}

.heading-120825 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: gold;
  text-shadow: 0 0 10px gold, 0 0 20px orange;
}

.text-120825 {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Stage Lights */
.light-120825 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,0,0.8) 0%, transparent 70%);
  transform: rotate(45deg);
  animation: swing-120825 3s infinite alternate ease-in-out;
  opacity: 0.7;
}

.left-120825 {
  top: -50px;
  left: -80px;
}
.right-120825 {
  top: -50px;
  right: -80px;
  animation-delay: 1.5s;
}

@keyframes swing-120825 {
  0% { transform: rotate(30deg) translateY(0); }
  100% { transform: rotate(-30deg) translateY(10px); }
}

/* Stage Floor */
.stage-floor-120825 {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    #444,
    #444 20px,
    #333 20px,
    #333 40px
  );
  border-top: 5px solid gold;
}






.update-050825-soccer {
  background: repeating-linear-gradient(
      to right,
      #3da74f,
      #3da74f 40px,
      #34a043 40px,
      #34a043 80px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 39px,
      white 39px,
      white 41px
    );
  background-size: cover;
  border: 4px solid white; /* Soccer field boundary */
  padding: 25px;
  margin: 40px auto;
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 128, 0, 0.4);
  font-family: 'Poppins', sans-serif;
}

.update-050825-soccer-title {
  font-size: 26px;
  text-align: center;
  color: white;
  text-shadow: 0 0 5px black;
  margin-bottom: 15px;
}

.update-050825-soccer-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: white;
  text-shadow: 0 0 3px black;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 8px;
}






.update-050825-bday {
  /* Cartoon horses seamless background */
  background: url('YOUR_CARTOON_HORSE_PATTERN_URL');
  background-size: 180px;
  background-repeat: repeat;
  background-color: #fffafc;

  /* Multicoloured balloons overlay */
  background-image:
    url('https://i.imgur.com/lO5HqC2.png'),
    url('YOUR_CARTOON_HORSE_PATTERN_URL');
  background-position: top right, center;
  background-repeat: no-repeat, repeat;
  background-size: 120px, 180px;

  /* Stylish party border */
  border: 5px dashed #ff6fb0;
  padding: 25px;
  margin: 40px auto;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 111, 176, 0.4);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.update-050825-bday-title {
  font-size: 26px;
  text-align: center;
  color: #ff5c8d;
  text-shadow: 0 0 5px #ffe6f0;
  margin-bottom: 15px;
}

.update-050825-bday-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #663a53;
  background: rgba(255, 255, 255, 0.85);
  padding: 15px;
  border-radius: 12px;
}



.blog-post-090825-pjs {
  background: linear-gradient(135deg, #ffe6f0, #fffaf5);
  border: 6px solid hotpink; /* CLEAR BOLD BORDER */
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  color: #4a3c4c;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
  position: relative;
}

.blog-post-090825-pjs h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
  background: #ffd9e8;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  color: #b34766;
  border: 3px solid hotpink; /* HEADER BORDER */
}

.blog-post-090825-pjs p {
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 15px;
  border: 2px solid hotpink; /* PARAGRAPH BORDER */
  line-height: 1.6em;
}


.blog-post-080825-netball {
  background: linear-gradient(135deg, #e0f7ff, #ffffff);
  border: 3px dashed #4da6ff;
  border-radius: 16px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  color: #2d3e50;
  box-shadow: 0 0 12px rgba(77, 166, 255, 0.3);
  position: relative;
  background-image: 
    repeating-linear-gradient(to right, transparent 0, transparent 59px, #4da6ff 60px),
    repeating-linear-gradient(to bottom, transparent 0, transparent 59px, #4da6ff 60px);
}

.blog-post-080825-netball h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
  background: #d0ecff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  color: #1a5dab;
  border-left: 5px solid #1a5dab;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.blog-img-small-040825 {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.blog-img-small-040825:hover {
  transform: scale(1.05);
}
.blog-post-080825-netball p {
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid #b3ddff;
  line-height: 1.6em;
}


.blog-post-070825-lines {
  background-color: #fdfdfd;
  background-image: repeating-linear-gradient(
    to bottom,
    #fdfdfd,
    #fdfdfd 23px,
    #cce2ff 23px,
    #cce2ff 24px
  );
  border: 3px solid #5b9bd5; /* more visible blue border */
  border-radius: 14px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  color: #333;
  box-shadow: 0 4px 12px rgba(91, 155, 213, 0.2);
  line-height: 24px;
  position: relative;
}

.blog-post-070825-lines h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #2a5da8;
  background: white;
  display: inline-block;
  padding: 0 10px;
  border-left: 6px solid #2a5da8;
  border-radius: 4px;
}

.blog-post-070825-lines p {
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 8px;
  margin: 0;
  border: 1px dashed #aaccee; /* paragraph border for notebook style */
} 
  
  
  
   .blog-post-070825-lines {
  background-color: #fdfdfd;
  background-image: repeating-linear-gradient(
    to bottom,
    #fdfdfd,
    #fdfdfd 23px,
    #cce2ff 23px,
    #cce2ff 24px
  );
  border: 2px solid #8cb4e0;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 50, 0.1);
  line-height: 24px;
  position: relative;
}

.blog-post-070825-lines h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #2a5da8;
  background: white;
  display: inline-block;
  padding: 0 10px;
  border-left: 5px solid #2a5da8;
}

.blog-post-070825-lines p {
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 10px 15px;
  border-radius: 8px;
  margin: 0;
}

.blog-post-060825-hearts {
  background: linear-gradient(to bottom, #ffd5ec, #ffe9f5);
  border: 4px dotted #ff8fbd;
  border-radius: 20px;
  padding: 25px;
  margin: 40px auto;
  max-width: 800px;
  position: relative;
  font-family: 'Poppins', 'Comic Sans MS', cursive;
  color: #973a6e;
  box-shadow: 0 0 20px rgba(255, 180, 220, 0.4);
  overflow: hidden;
}

.blog-post-060825-hearts h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #d63c8d;
}

.blog-post-060825-hearts p {
  font-size: 1.1em;
  line-height: 1.6;
}

/* Floating animated hearts */
.floating-hearts-060825 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.heart-060825 {
  width: 20px;
  height: 20px;
  background-color: #ff8dc2;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: rotate(45deg);
  animation: floatHeart-060825 8s linear infinite;
  opacity: 0.7;
}

.heart-060825::before,
.heart-060825::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ff8dc2;
  border-radius: 50%;
  position: absolute;
}

.heart-060825::before {
  top: -10px;
  left: 0;
}

.heart-060825::after {
  top: 0;
  left: -10px;
}

@keyframes floatHeart-060825 {
  0% {
    transform: translateY(0) rotate(45deg) scale(1);
    left: 50%;
  }
  50% {
    transform: translateY(-50vh) rotate(45deg) scale(1.2);
    left: 45%;
  }
  100% {
    transform: translateY(-100vh) rotate(45deg) scale(0.9);
    left: 55%;
  }
}




.blog-post-040825-candy {
  background: #fff0f8;
  border: 4px dashed #ffb6d9;
  border-radius: 20px;
  padding: 20px;
  margin: 30px auto;
  max-width: 900px;
  font-family: 'Comic Sans MS', 'Poppins', cursive;
  color: #73405a;
  box-shadow: 0 0 15px rgba(255, 180, 220, 0.4);
}

.blog-content-040825-candy {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.blog-text-040825-candy {
  flex: 1 1 300px;
}

.blog-img-wrapper-040825-candy {
  flex: 0 0 200px;
}

.blog-img-040825-candy {
  width: 100%;
  border-radius: 15px;
  border: 3px solid #ffcce0;
  box-shadow: 0 4px 12px rgba(255, 160, 210, 0.5);
  cursor: pointer;
  transition: transform 0.3s;
}

.blog-img-040825-candy:hover {
  transform: scale(1.05);
}

/* Modal styles */
.modal-040825-candy {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(255, 190, 220, 0.85);
  backdrop-filter: blur(5px);
  text-align: center;
  padding-top: 60px;
}

.modal-content-040825-candy {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid #ffcce7;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 160, 210, 0.6);
}

.close-040825-candy {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px #ff94c2;
  cursor: pointer;
}

.date-title-aug4-2025 {
  font-size: 2.6em;
  text-align: center;
  color: #d63384;
  text-shadow: 0 0 6px #ff69b4, 0 0 12px #ffb6c1;
  margin-bottom: 20px;
  font-family: 'Unbounded', sans-serif;
  position: relative;
  z-index: 2;
}

.blog-text-aug4-2025 {
  font-size: 1.3em;
  line-height: 1.8;
  color: #cc1a5e;
  text-shadow: 0 0 4px #ffd6eb;
  font-family: 'Unbounded', sans-serif;
  position: relative;
  z-index: 2;
}

/* 💕 Fog (pink misty glow) */
.fog-layer-aug4-2025 {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.2) 20%, transparent 70%);
  animation: fog-move-aug4-2025 60s linear infinite;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes fog-move-aug4-2025 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30%, -15%); }
}

/* ✨ Sparkles (pastel pink dots) */
.sparkle-layer-aug4-2025 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sparkle-layer-aug4-2025::before,
.sparkle-layer-aug4-2025::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc3f5;
  box-shadow:
    60px 40px #ffb6e6,
    120px 80px #ffd9ee,
    200px 130px #ffc3f5,
    100px 190px #ffe6f2,
    180px 250px #ffcce6;
  animation: sparkle-float-aug4-2025 12s linear infinite;
  opacity: 0.9;
}

@keyframes sparkle-float-aug4-2025 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(to right, #ff69b4, #ffff66, #66ccff);
  color: #4d004d;
  padding: 40px;
  padding-bottom: 50px;
  position: relative;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  color: #ff0080;
  padding: 20px;
  font-size: 50px;
  text-shadow: 2px 2px #ffff00;
}



.sister {
  background-color: #fff0f5;
  border: 2px dashed #cc66a3;
  padding: 15px;
  margin: 15px auto;
  width: 60%;
  border-radius: 15px;
  color: #4d004d;
  text-align: center;
}

.sister h2 {
  color: #993366;
}

.banner, .sunshine-banner, .modern-banner, .coding-banner, .date {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin: 20px auto;
  border-radius: 15px;
  padding: 20px;
  color: white;
  max-width: 700px;
}

.banner {
  background-color: purple;
  border: 5px solid #fff;
}

.sunshine-banner {
  background-color: gold;
  color: black;
  border: 6px double white;
}

.card {
  background: #fff0f5;
  border: 4px dashed #cc66a3;
  padding: 25px;
  max-width: 700px;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
  color: #4d004d;
  line-height: 1.6;
}

.card h1 {
  font-size: 28px;
  color: #ff3399;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 24px;
  color: #cc3399;
  margin-bottom: 15px;
}

.card ul.weekdays {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
}

.card ul.weekdays li {
  margin-bottom: 6px;
}

.modern-banner {
  background: #ffffffcc;
  color: #222;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.coding-banner {
  background: #333;
  color: #0f0;
  font-family: 'Courier New', monospace;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.date {
  background: linear-gradient(135deg, #ff66cc, #ffff66, #66ccff);
  color: #ffffff;
  font-size: 24px;
}

.box, .sunny-box, .update-box, .coding-box, .update {
  background-color: white;
  color: black;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  border-radius: 20px;
  line-height: 1.6;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.box {
  border: 4px dashed #aaa;
  font-size: 18px;
}

.raindrops {
  border-image: url("https://em-content.zobj.net/source/apple/391/cloud-with-rain_1f327-fe0f.png") 30 round;
}

.party {
  border-image: url("https://em-content.zobj.net/source/apple/391/party-popper_1f389.png") 30 round;
}

.sunny-box {
  background-color: lemonchiffon;
  border: 5px solid gold;
  border-image: url("https://em-content.zobj.net/source/apple/391/sunflower_1f33b.png") 30 round;
  font-size: 18px;
}

.update-box {
  background: #fffafa;
  backdrop-filter: blur(15px);
  font-size: 18px;
  color: #444;
  border: 4px solid #ffd6e0;
}

.update-box h2 {
  font-size: 26px;
  color: #222;
}

.coding-box {
  background: #222;
  color: #0f0;
  font-family: 'Courier New', monospace;
  border: 4px solid #0f0;
  font-size: 18px;
}

.update {
  border: 4px dashed #ff69b4;
  font-size: 20px;
}

.update h2 {
  color: #ff33aa;
  font-size: 30px;
}

strong, .highlight {
  color: #ff3399;
  font-weight: bold;
}

.emoji {
  font-size: 24px;
}

.home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(to right, #ff69b4, #ffff66, #66ccff);
  color: white;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.home-button:hover {
  transform: scale(1.05);
}

.full-home-button {
  display: block;
  width: 100%;
  background: #e6ccff;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #cc99ff;
  border-top: 5px solid #cc99ff;
  margin-bottom: 20px;
}

.full-home-button:hover {
  background: #d1b3ff;
  color: #fff;
}

.update-container {
  background: rgba(0, 0, 50, 0.8);
  border: 2px solid #00ccff;
  border-radius: 15px;
  padding: 25px;
  max-width: 750px;
  margin: 40px auto;
  box-shadow: 0 0 20px #00ccff;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
}

.update-container h1 {
  font-family: 'Orbitron', sans-serif;
  color: #00ccff;
  font-size: 2.5em;
  text-align: center;
  text-shadow: 0 0 10px #00ccff;
}

.star {
  color: gold;
  font-size: 1.2em;
}

.idol-glow {
  text-shadow: 0 0 8px #00ccff;
  color: #00e6f6;
  font-weight: bold;
}

.entry {
  max-width: 700px;
  background: #fff0f5;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 50px auto;
  position: relative;
  z-index: 2;
}

.entry h1 {
  color: #ff6b9f;
}

.entry .date {
  color: #d45576;
  font-weight: bold;
  margin-bottom: 15px;
}

.entry p {
  color: #4b2c2c;
}

.rash-blob {
  position: absolute;
  background-color: rgba(255, 80, 80, 0.6);
  border-radius: 50%;
  z-index: 1;
  animation: floatBlob 10s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

.blob1 { width: 80px; height: 80px; top: 20px; left: 30px; }
.blob2 { width: 60px; height: 60px; top: 150px; right: 40px; }
.blob3 { width: 100px; height: 100px; bottom: 80px; left: 60px; }
.blob4 { width: 70px; height: 70px; bottom: 120px; right: 70px; }
.blob5 { width: 50px; height: 50px; top: 300px; left: 150px; }
.blob6 { width: 40px; height: 40px; bottom: 200px; right: 150px; }

.note-entry {
  width: 100%;
  height: 220px;
  margin: 40px auto;
  perspective: 1200px;
}

.note {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}

.note.flipped {
  transform: rotateY(180deg);
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}

.front {
  background: #ffe0ec;
  border: 2px solid #ff8fcf;
}

.back {
  background: #d8f1ff;
  border: 2px solid #89d6f6;
  transform: rotateY(180deg);
}

.note .date {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 12px;
  color: #d45576;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.soccer-ball-theme {
  background: repeating-conic-gradient(
    from 0deg,
    #ffffff 0deg 60deg,
    #000000 60deg 120deg,
    #ffffff 120deg 180deg,
    #000000 180deg 240deg,
    #ffffff 240deg 300deg,
    #000000 300deg 360deg
  );
  background-size: 80px 80px;
  color: #000;
  border-radius: 20px;
  padding: 24px;
  width: 80%;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  position: relative;
  border: 4px solid #000;
  outline: 3px dashed white;
  outline-offset: -8px;
}

.soccer-ball-theme h2 {
  background: white;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  color: #111;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.soccer-ball-theme p {
  background: rgba(255, 255, 255, 0.85);
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
  line-height: 1.6;
}

.soccer-ball-theme::before {
  content: "⚽";
  position: absolute;
  top: -18px;
  left: -18px;
  font-size: 2.2em;
  background: white;
  border: 2px solid #000;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
/* Card container */
.post-container-20250730 {
  max-width: 620px;
  margin: 40px auto;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 6px solid black;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Header */
.post-header-20250730 {
  background-color: #C6FF00;
  padding: 20px;
  text-align: center;
}

.post-title-20250730 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  margin: 5;
}

.post-date-20250730 {
  font-size: 12px;
  color: #222222;
  opacity: 0.7;
  margin: 4px 0 0 0;
}

/* Highlight section */
.post-highlight-20250730 {
  background-color: #ffffff;
  padding: 24px 20px;
  border-top: 6px solid #000;
  border-bottom: 6px solid #000;
  margin: 0;
}

.post-body-20250730 {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

/* Black quote section with zero spacing leakage */
.post-quote-20250730 {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  border-radius: 0 0 4px 4px;
  border-top: 6px solid #000;
  margin: 0;
}

/* Remove all default blockquote and em margins */
.post-quote-20250730 blockquote,
.post-quote-20250730 em {
  margin: 0;
  padding: 0;
  display: block;
}
/* Component container */
.app-card_purple {
  width: 360px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: white;
  font-family: 'Helvetica Neue', sans-serif;
  margin: 40px auto;
}

/* Header with purple background and image */
.header_purple {
  background-color: #8000c4;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header-image_purple {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* White rounded "drawer" panel */
.contribution_purple {
  background: white;
  padding: 30px 20px 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -30px;
  z-index: 1;
  position: relative;
  box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.05);
}

/* Text styling */
.monthly-label_purple {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.monthly-value_purple {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 20px;
}

/* Navigation bar at bottom */
.bottom-bar_purple {
  display: flex;
  justify-content: space-around;
  font-size: 20px;
  margin-top: 20px;
  color: #999;
}

.nav-icon_purple {
  cursor: pointer;
}
.update-050825 {
  background: radial-gradient(circle at top left, #3b2b5f, #1d1137, #0e061f);
  border: 3px solid #b497ff;
  padding: 25px;
  margin: 35px auto;
  width: 90%;
  max-width: 650px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(174, 141, 255, 0.4);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  animation: stars-fade 10s ease-in-out infinite;
}

.update-050825-title {
  font-size: 26px;
  color: #e8d1ff;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 5px #a278ff;
}

.update-050825-text {
  font-size: 17px;
  color: #dbc6ff;
  line-height: 1.8;
  text-align: center;
}

/* Optional: subtle star sparkle animation */
@keyframes stars-fade {
  0%, 100% { box-shadow: 0 0 25px rgba(174, 141, 255, 0.4); }
  50% { box-shadow: 0 0 35px rgba(174, 141, 255, 0.7); }
}
.update-050825-dt {
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  border: 2px solid #00f2fe;
  padding: 25px;
  margin: 35px auto;
  width: 90%;
  max-width: 650px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
  font-family: 'Courier New', Courier, monospace;
  color: #dff6ff;
  position: relative;
}

.update-050825-dt {
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  border: 3px double #00f2fe;
  padding: 25px;
  margin: 35px auto;
  width: 90%;
  max-width: 650px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
  font-family: 'Courier New', Courier, monospace;
  color: #dff6ff;
  position: relative;
}

.update-050825-dt-title {
  font-size: 24px;
  text-align: center;
  color: #00f2fe;
  text-shadow: 0 0 5px #00f2fe;
  margin-bottom: 12px;
}

.update-050825-dt-text {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

/* Optional: glitch effect when hovering */
.update-050825-dt:hover {
  animation: glitchy 1s infinite;
}

@keyframes glitchy {
  0% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}
.update-050825-style {
  background: linear-gradient(135deg, #fff0fb, #fceaff);
  border: 4px solid #ff73c4; /* 💖 Pretty pink solid border */
  padding: 25px;
  margin: 40px auto;
  width: 90%;
  max-width: 650px;
  border-radius: 22px;
  box-shadow: 0 0 25px rgba(255, 115, 196, 0.3);
  font-family: 'Poppins', sans-serif;
  color: #6b2d5c;
  position: relative;
}

.update-050825-style-title {
  font-size: 26px;
  text-align: center;
  color: #d44f9f;
  text-shadow: 0 0 5px #ffc6ec;
  margin-bottom: 12px;
}

.update-050825-style-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #81335e;
}

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

.post-container-aug3-2025 {
  position: relative;
  background: linear-gradient(145deg, #2e004f, #150032, #000010);
  border: 2px solid #9400ff;
  box-shadow: 0 0 30px #8b00ff, 0 0 60px #00ccff;
  border-radius: 18px;
  padding: 30px 40px;
  max-width: 850px;
  margin: 40px auto;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

/* Header and text */
.date-title-aug3-2025 {
  font-size: 2.8em;
  text-align: center;
  color: #fbe5ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ccff;
  margin-bottom: 20px;
  font-family: 'Unbounded', sans-serif;
  position: relative;
  z-index: 2;
}

.blog-text-aug3-2025 {
  font-size: 1.4em;
  line-height: 1.8;
  color: #f3e0ff;
  text-shadow: 0 0 5px #330066;
  font-family: 'Unbounded', sans-serif;
  position: relative;
  z-index: 2;
}

/* ✨ Magic Sword */
.magic-sword-aug3-2025 {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 12px;
  height: 100px;
  background: linear-gradient(to top, #00ccff, #ffffff);
  box-shadow: 0 0 10px #00ffff, 0 0 30px #ffffff;
  transform: rotate(-20deg);
  border-radius: 6px;
  z-index: 1;
}

.magic-sword-aug3-2025::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -6px;
  width: 24px;
  height: 10px;
  background: #ff00ff;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 10px #ff00ff;
}

/* 🌫 Foggy Mist */
.fog-layer-aug3-2025 {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 20%, transparent 70%);
  animation: fog-move-aug3-2025 60s linear infinite;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

@keyframes fog-move-aug3-2025 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30%, -10%); }
}

/* ✨ Sparkles */
.sparkle-layer-aug3-2025 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sparkle-layer-aug3-2025::before,
.sparkle-layer-aug3-2025::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow:
    100px 50px #ffffff80,
    200px 80px #ffccff90,
    300px 120px #00ffff80,
    150px 200px #ffffff99,
    80px 250px #ccffffaa,
    240px 300px #ffffff88;
  animation: sparkle-float-aug3-2025 10s linear infinite;
  opacity: 0.8;
}

@keyframes sparkle-float-aug3-2025 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); }
}
