@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
appearance: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
background: #BADE91;
color: #F1F1F1;
font: 500 normal 22px/1.3 'Inter', sans-serif;
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
}
.mwg_effect000 {
height: 90vh;
overflow: hidden;
position: relative;
display: grid;
place-items: center;
touch-action: none;
overscroll-behavior: contain;
}
.mwg_effect000 .header {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 20px 25px;
color: #E3000F;
}
.mwg_effect000 .header div:nth-child(2) {
font-size: 26px;
}
.mwg_effect000 .header div:last-child {
display: flex;
justify-content: flex-end;
}
.mwg_effect000 .button {
font-size: 14px;
text-transform: uppercase;
border-radius: 24px;
height: 48px;
gap: 5px;
padding: 0 20px;
display: flex;
align-items: center;
width: max-content;
text-decoration: none;
color: inherit;
}
.mwg_effect000 .button1 {
background-color: #232323;
}
.mwg_effect000 .button2 {
border: 1px solid #E3000F;
background-color: #ffffff;
}
.mwg_effect000 .button img {
width: 22px;
height: auto;
display: block;
}
.mwg_effect000 .medias {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1vw;
}
.mwg_effect000 .medias img {
width: 11vw;
height: 11vw;
object-fit: contain;
border-radius: 4%;
display: block;
pointer-events: none;
will-change: transform;
}
.mwg_effect000 .logo {
height: 40px;
width: auto;
display: block;
}

.audio-player {
 position: fixed;
 bottom: 30px;
 left: 50%;
 transform: translateX(-50%);
 background: #FEF1C1;
 backdrop-filter: blur(20px);
 padding: 20px 30px;
 border-radius: 16px;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 12px;
 z-index: 100;
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
 border: 1px solid #FEF1C1;
}

.player-controls {
 display: flex;
 gap: 8px;
 align-items: center;
}

.control-btn {
 background: #FED178;
 border: none;
 color: #333;
 width: 60px;
 height: 60px;
 border-radius: 6px;
 cursor: pointer;
 font-size: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.15s ease;
}

.control-btn:hover {
 background: #F6A70B;
}

.control-btn:active {
 background: #F6A70B;
 transform: scale(0.95);
}

.time-display {
 font-size: 11px;
 color: #E3000F;
 font-weight: 400;
 font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.progress-bar {
 width: 200px;
 height: 4px;
 background: #FED178;
 border-radius: 2px;
 overflow: hidden;
 cursor: pointer;
}

.progress-fill {
 height: 100%;
 background: #E3000F;
 width: 0%;
 transition: width 0.1s ease;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 12px solid #E3000F;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.pause-icon {
  width: 12px;
  height: 16px;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
}

.restart-icon {
  width: 0;
  height: 0;
  border-right: 10px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: relative;
  margin-left: 6px;
}

.restart-icon::after {
  content: '';
  position: absolute;
  right: 0px;
  top: -6px;
  width: 0;
  height: 0;
  border-right: 10px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.particle-button {
  position: fixed;
  bottom: 80px;
  right: 450px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #E3000F;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 200;
  transition: transform 0.2s ease;
}

.particle-button:hover {
  transform: scale(1.1);
}

.button-icon {
  font-size: 24px;
  color: #E3000F;
  pointer-events: none;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 0;
  overflow: visible;
}

.info-bubble {
  position: fixed;
  bottom: 80px;
  right: 450px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #E3000F;
  border-radius: 50%;
  transform-origin: center center;
  transition: all 0.2s ease;
  z-index: 190;
  overflow: hidden;
}

.info-bubble.expanded {
  width: 250px;
  height: 200px;
  border-radius: 16px;
  bottom: 90px;
  right: 180px;
}

.bubble-content {
  padding: 20px;
  opacity: 0;
  transition: opacity ease 0.2s;
  color: #333;
}

.info-bubble.expanded .bubble-content {
  opacity: 1;
  transition: opacity 0.3s ease 0.2s;
}

.bubble-content h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.bubble-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.bubble-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #E3000F;
  width: 24px;
  height: 24px;
}


@media (max-width: 768px) {
.mwg_effect000 .header {
grid-template-columns: auto 1fr auto;
padding: 10px 15px;
}
.mwg_effect000 .header div:nth-child(2) {
font-size: 18px;
}
.mwg_effect000 .logo {
height: 30px;
}
.mwg_effect000 .button {
font-size: 12px;
height: 36px;
padding: 0 12px;
}
.mwg_effect000 .medias {
gap: 2vw;
margin-top: -20px;
}
.mwg_effect000 .medias img {
width: 18vw;
height: 18vw;
}
.particle-button {
bottom: 110px;
right: 20px;
width: 50px;
height: 50px;
}
.button-icon {
font-size: 20px;
}
.info-bubble {
bottom: 110px;
right: 20px;
}
.info-bubble.expanded {
width: 220px;
height: 240px;
right: 15px;
bottom: 170px;
}
}

@media (max-width: 480px) {
.mwg_effect000 .header div:nth-child(2) {
font-size: 32px;
text-align: center;
position: absolute;
bottom: -70px;
left: 50%;
transform: translate(-50%);
}
.mwg_effect000 .logo {
height: 25px;
}
.mwg_effect000 .button {
font-size: 11px;
height: 32px;
padding: 0 10px;
}
.mwg_effect000 .medias {
margin-top: -100px;
}
.audio-player {
bottom: 20px;
padding: 15px 20px;
}
.control-btn {
width: 60px;
height: 60px;
font-size: 10px;
}
.progress-bar {
width: 150px;
height: 6px;
border-radius: 6px;
}
.time-display {
font-size: 10px;
}
.particle-button {
bottom: 25px;
right: 15px;
width: 44px;
height: 44px;
}
.button-icon {
font-size: 18px;
}
.info-bubble {
bottom: 25px;
right: 15px;
width: 44px;
height: 44px;
}
.info-bubble.expanded {
width: 200px;
height: 200px;
right: 20px;
bottom: 185px;
}
.bubble-content p {
font-size: 12px;
}
}