/*
Theme Name: Static Bloom Theme
Author: Gemini
Description: A theme for the band Static Bloom.
Version: 0.242
*/
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(16,12,30,0.8);
  border-radius: 6px;
  border: 1px solid rgba(255,0,229,0.2);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff00e5, #00d9ff);
  border-radius: 6px;
  border: 1px solid rgba(255,0,229,0.6);
  -webkit-box-shadow: 0 0 10px rgba(255,0,229,0.4), 0 0 20px rgba(0,217,255,0.2), inset 0 0 10px rgba(255,255,255,0.1);
          box-shadow: 0 0 10px rgba(255,0,229,0.4), 0 0 20px rgba(0,217,255,0.2), inset 0 0 10px rgba(255,255,255,0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff33ea, #33e1ff);
  -webkit-box-shadow: 0 0 15px rgba(255,0,229,0.6), 0 0 30px rgba(0,217,255,0.4), inset 0 0 15px rgba(255,255,255,0.2);
          box-shadow: 0 0 15px rgba(255,0,229,0.6), 0 0 30px rgba(0,217,255,0.4), inset 0 0 15px rgba(255,255,255,0.2);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(45deg, #e600ce, #00c3e6);
  -webkit-box-shadow: 0 0 8px rgba(255,0,229,0.8), 0 0 16px rgba(0,217,255,0.6), inset 0 0 8px rgba(255,255,255,0.3);
          box-shadow: 0 0 8px rgba(255,0,229,0.8), 0 0 16px rgba(0,217,255,0.6), inset 0 0 8px rgba(255,255,255,0.3);
}
::-webkit-scrollbar-corner {
  background: rgba(16,12,30,0.8);
}
html {
  scrollbar-width: thin;
  scrollbar-color: #ff00e5 rgba(16,12,30,0.8);
}
.chat-window::-webkit-scrollbar,
.collapsible-content::-webkit-scrollbar {
  width: 8px;
}
.chat-window::-webkit-scrollbar-track,
.collapsible-content::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
}
.chat-window::-webkit-scrollbar-thumb,
.collapsible-content::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, rgba(255,0,229,0.8), rgba(0,217,255,0.8));
  border-radius: 4px;
  -webkit-box-shadow: 0 0 8px rgba(255,0,229,0.3);
          box-shadow: 0 0 8px rgba(255,0,229,0.3);
}
.chat-window::-webkit-scrollbar-thumb:hover,
.collapsible-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff00e5, #00d9ff);
  -webkit-box-shadow: 0 0 12px rgba(255,0,229,0.5);
          box-shadow: 0 0 12px rgba(255,0,229,0.5);
}
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;700&display=swap");
body {
  background-color: #100c1e;
  color: #fff;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  color: #ff00e5;
  text-shadow: 0 0 5px #ff00e5, 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #00d9ff, 0 0 80px #00d9ff;
}
.hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.25);
  z-index: 4;
}
.hero-background {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: url("images/static-bloom-back.jpg") no-repeat center center/cover;
  -webkit-animation: slow-zoom 20s infinite alternate ease-in-out;
          animation: slow-zoom 20s infinite alternate ease-in-out;
  z-index: 1;
}
.hero-foreground {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 110%;
  height: auto;
  -webkit-animation: foreground-pan 20s infinite alternate ease-in-out;
          animation: foreground-pan 20s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 3;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}
#tsparticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-title {
  font-size: 5rem;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 5px #ff00e5, 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #00d9ff, 0 0 80px #00d9ff;
  -webkit-animation: pulse-glow 4s infinite ease-in-out;
          animation: pulse-glow 4s infinite ease-in-out;
  -webkit-transform: translate(-50%, 35vh);
          transform: translate(-50%, 35vh);
  position: absolute;
  left: 50%;
  z-index: 4;
  width: 95vw;
}
.hero-subtitle {
  font-size: 2.5rem;
  color: #00d9ff;
  margin: 0;
}
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.page-section {
  margin-bottom: 4rem;
}
.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 10rem;
}
.band-description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
.release-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 10px;
}
.release-cover {
  max-width: 300px;
  height: auto;
  border-radius: 5px;
}
.release-info h3 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}
.release-info p {
  font-size: 1.2rem;
  margin: 0 0 1.5rem 0;
}
.release-player {
  width: 100%;
  margin-bottom: 1.5rem;
}
.collapsible-content {
  max-height: 150px;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.7s ease-in-out;
  transition: max-height 0.7s ease-in-out;
}
.collapsible-content.is-open {
  max-height: 3000px;
}
.collapsible-content:not(.is-open)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#100c1e));
  background: linear-gradient(to bottom, transparent, #100c1e);
  pointer-events: none;
}
.toggle-content-button {
  display: inline-block;
  background: transparent;
  border: 1px solid #00d9ff;
  color: #00d9ff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
  font-family: 'Orbitron', sans-serif;
}
.toggle-content-button:hover {
  background: #00d9ff;
  color: #100c1e;
  -webkit-box-shadow: 0 0 15px #00d9ff;
          box-shadow: 0 0 15px #00d9ff;
}
.cta-button {
  display: inline-block;
  background: #ff00e5;
  color: #100c1e;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: #fff;
  color: #100c1e;
  -webkit-box-shadow: 0 0 15px #ff00e5;
          box-shadow: 0 0 15px #ff00e5;
}
/* Header & Footer */
.site-header {
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid #ff00e5;
  -webkit-box-shadow: 0 0 20px #ff00e5;
          box-shadow: 0 0 20px #ff00e5;
  position: fixed;
  display: none;
}
.site-header.visible {
  display: block;
}
.site-header .site-title a {
  color: #fff;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .site-title a:hover {
  text-shadow: 0 0 8px #fff;
}
.site-footer {
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.8);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
body.admin-bar .site-header {
  top: 32px;
}
/* Discography Archive */
.discography-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0;
  list-style: none;
}
.release-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.release-item .release-cover-art img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.release-item:hover .release-cover-art img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.release-item .entry-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.9)), to(transparent));
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.release-item:hover .entry-header {
  opacity: 1;
}
.release-item .entry-title {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: none;
  margin: 0;
}
.release-item .release-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
  z-index: 1;
}
/* Chat Page */
.band-chat-selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.band-member-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  border-radius: 10px;
  text-align: center;
  padding: 1.5rem 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.band-member-card:hover {
  border-color: #ff00e5;
  -webkit-box-shadow: 0 0 15px #ff00e5;
          box-shadow: 0 0 15px #ff00e5;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.band-member-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #ff00e5;
  margin-bottom: 1rem;
}
.band-member-card h3 {
  margin: 0;
  color: #fff;
  text-shadow: none;
}
.band-member-card span {
  font-size: 0.9rem;
  color: #00d9ff;
}
.chat-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
}
.chat-modal-content {
  background: #100c1e;
  border: 1px solid #ff00e5;
  -webkit-box-shadow: 0 0 30px #ff00e5;
          box-shadow: 0 0 30px #ff00e5;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.chat-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ff00e5;
}
.chat-header h3 {
  margin: 0;
  color: #00d9ff;
}
#close-chat-modal {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.chat-window {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
}
.chat-input-area {
  padding: 1rem;
  border-top: 1px solid #ff00e5;
}
#chat-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
#chat-form button {
  background: #ff00e5;
  color: #100c1e;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
}
#chat-input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid #00d9ff;
  color: #fff;
  padding: 0.8rem;
  border-radius: 5px;
}
#mic-button {
  background: #00d9ff;
  padding: 0.8rem;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 0.5rem;
}
#mic-button.is-active {
  background: #f00;
  -webkit-box-shadow: 0 0 15px #f00;
          box-shadow: 0 0 15px #f00;
}
.chat-message {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.chat-message.user {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.chat-message.user p {
  background: #ff00e5;
  color: #100c1e;
  border-bottom-right-radius: 3px;
}
.chat-message.ai {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.chat-message.ai p {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-bottom-left-radius: 3px;
}
.chat-message p {
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  max-width: 80%;
  margin: 0;
}
.chat-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #00d9ff;
}
.typing-indicator span {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #00d9ff;
  border-radius: 50%;
  margin: 0 2px;
  -webkit-animation: typing-dot 1.2s infinite ease-in-out;
          animation: typing-dot 1.2s infinite ease-in-out;
}
.typing-indicator span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
/* Responsive Styles */
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-shadow: 0 0 2px #ff00e5, 0 0 5px #ff00e5, 0 0 10px #00d9ff;
  }
  .hero-title {
    font-size: 2.8rem;
    -webkit-transform: translate(-50%, 12vh);
            transform: translate(-50%, 12vh);
  }
  .hero-background {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-animation: none;
            animation: none;
  }
  .hero-foreground {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 70%;
       object-position: center 70%;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
    left: 0;
    bottom: 0;
  }
  .hero-subtitle {
    font-size: 1.8rem;
  }
  .content-wrapper {
    padding: 2rem 1rem;
  }
  .section-title {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .release-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .release-cover {
    max-width: 100%;
  }
  .release-info h3 {
    font-size: 2rem;
  }
  .band-chat-selection {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .band-member-card {
    width: 80%;
    padding: 1rem;
  }
  .chat-modal-content {
    width: 95%;
    height: 85vh;
  }
}
/* Background Music Player */
#background-music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}
#play-pause-btn {
  background: transparent;
  color: #ff00e5;
  border: 2px solid #ff00e5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 15px #ff00e5;
          box-shadow: 0 0 15px #ff00e5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#play-pause-btn .pause-icon {
  display: none;
}
#play-pause-btn.playing {
  border-color: #00d9ff;
  -webkit-box-shadow: 0 0 15px #00d9ff;
          box-shadow: 0 0 15px #00d9ff;
  color: #00d9ff;
}
#play-pause-btn.playing .play-icon {
  display: none;
}
#play-pause-btn.playing .pause-icon {
  display: block;
}
/* ==== BLOG STYLES START ==== */
/* Blog Post Section on Homepage */
.latest-post-container {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #00d9ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.latest-post-container .post-thumbnail {
  max-width: 350px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ff00e5;
  -webkit-box-shadow: 0 0 15px #ff00e5;
          box-shadow: 0 0 15px #ff00e5;
}
.latest-post-container .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.latest-post-container .post-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.latest-post-container .post-excerpt {
  margin-bottom: 1.5rem;
}
.latest-post-container h3 {
  font-size: 2rem;
  color: #fff;
  text-shadow: none;
  margin: 0 0 1rem 0;
}
.latest-post-container .read-more-link {
  margin-top: auto;
}
/* Single Post Page - Full Redesign */
#single-post .single-post-header {
  position: relative;
  height: 60vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
#single-post .single-post-header .single-post-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
#single-post .single-post-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.85)), to(rgba(0,0,0,0.1)));
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}
#single-post .single-post-header .header-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
#single-post .single-post-header .header-content h1 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  font-size: 4rem;
  margin: 0 0 1rem 0;
}
#single-post .single-post-header .header-content .post-meta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#single-post .post-content-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}
#floating-back-btn {
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 1000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 2px solid #ff00e5;
  color: #ff00e5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 0 10px #ff00e5;
          box-shadow: 0 0 10px #ff00e5;
}
#floating-back-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 20px #ff00e5;
          box-shadow: 0 0 20px #ff00e5;
  color: #00d9ff;
  border-color: #00d9ff;
}
/* Shared Styles for Post Meta and Content */
.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #00d9ff;
}
.post-meta .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.post-meta .tags a {
  color: #ff00e5;
  text-decoration: none;
  border: 1px solid #ff00e5;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-meta .tags a:hover {
  background: #ff00e5;
  color: #100c1e;
}
.post-content h3 {
  font-size: 1.5rem;
  color: #ff00e5;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #ff00e5;
}
.post-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
.post-content hr {
  border: 0;
  height: 1px;
  background: #00d9ff;
  margin: 2rem 0;
}
.post-content pre {
  background: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.post-content ul {
  list-style: none;
  padding-left: 0;
}
.post-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.post-content ul li::before {
  content: '▧';
  position: absolute;
  left: 0;
  color: #ff00e5;
  font-size: 1rem;
  line-height: 1.7;
}
#play-pause-btn.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 2px solid #ff00e5;
  color: #ff00e5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 0 10px #ff00e5;
          box-shadow: 0 0 10px #ff00e5;
}
#play-pause-btn.floating-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 20px #ff00e5;
          box-shadow: 0 0 20px #ff00e5;
}
#play-pause-btn.floating-btn svg {
  width: 30px;
  height: 30px;
}
#play-pause-btn.playing {
  border-color: #00d9ff;
}
@-webkit-keyframes slow-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  60% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes slow-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  60% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes foreground-pan {
  0% {
    -webkit-transform: translate(0, 52%) scale(1.1);
            transform: translate(0, 52%) scale(1.1);
  }
  33% {
    -webkit-transform: translate(-0.5%, 52.5%) scale(1.1);
            transform: translate(-0.5%, 52.5%) scale(1.1);
  }
  66% {
    -webkit-transform: translate(-1.5%, 51.8%) scale(1.1);
            transform: translate(-1.5%, 51.8%) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-2%, 53%) scale(1.1);
            transform: translate(-2%, 53%) scale(1.1);
  }
}
@keyframes foreground-pan {
  0% {
    -webkit-transform: translate(0, 52%) scale(1.1);
            transform: translate(0, 52%) scale(1.1);
  }
  33% {
    -webkit-transform: translate(-0.5%, 52.5%) scale(1.1);
            transform: translate(-0.5%, 52.5%) scale(1.1);
  }
  66% {
    -webkit-transform: translate(-1.5%, 51.8%) scale(1.1);
            transform: translate(-1.5%, 51.8%) scale(1.1);
  }
  100% {
    -webkit-transform: translate(-2%, 53%) scale(1.1);
            transform: translate(-2%, 53%) scale(1.1);
  }
}
@-webkit-keyframes pulse-glow {
  0% {
    text-shadow: 0 0 5px #ff00e5, 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #00d9ff, 0 0 80px #00d9ff;
  }
  70% {
    text-shadow: 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #ff00e5, 0 0 70px #00d9ff, 0 0 120px #00d9ff;
  }
  100% {
    text-shadow: 0 0 5px #ff00e5, 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #00d9ff, 0 0 80px #00d9ff;
  }
}
@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 5px #ff00e5, 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #00d9ff, 0 0 80px #00d9ff;
  }
  70% {
    text-shadow: 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #ff00e5, 0 0 70px #00d9ff, 0 0 120px #00d9ff;
  }
  100% {
    text-shadow: 0 0 5px #ff00e5, 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 40px #00d9ff, 0 0 80px #00d9ff;
  }
}
@-webkit-keyframes typing-dot {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes typing-dot {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
