html,
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    left: var(--position, 50%);
    bottom: -8rem;
    display: block;
    width: var(--size, 4rem);
    height: var(--size, 4rem);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 178, 108, 0.27) 0%, rgba(167, 251, 108, 0.22) 100%) !important;
    animation: float-up var(--time, 4s) var(--delay, 0s) ease-in infinite;
    transform-origin: center;
    opacity: 0.05;
    z-index: 1;
    filter: blur(4px);
}

.bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 178, 108, 0.18) 0%, rgba(167, 251, 108, 0.18) 100%) !important;
    transform: scale(0.8);
    filter: blur(4px);
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(-1 * var(--distance, 10rem))) scale(0.8);
        opacity: 0;
    }
}

.bubble-glow {
    background: linear-gradient(135deg,rgba(67, 178, 108, 0.76) 0%,rgba(167, 251, 108, 0.73) 100%) !important;
    box-shadow: 0 0 18px 6px rgba(167, 251, 108, 0.45), 0 0 32px 12px #43b26c44;
    opacity: 0.05;
    filter: blur(2px);
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(148, 245, 181, 0.5) 0%, rgba(242, 237, 239, 0.5) 100%);
  opacity: 1;
  z-index: -3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -2;
  pointer-events: none;
}

.floating-balloons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.balloon {
  position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatBalloon 18s linear infinite;
    pointer-events: none;
    bottom: 100%;
}

@keyframes floatBalloon {
  0% {
    transform: translateY(100vh) translateX(0);
  }
  100% {
    transform: translateY(-10vh) translateX(20px);
  }
}

.balloon-1 { width: 60px; height: 60px; left: 10%; background: #b1ffc7; animation-delay: 0s; }
.balloon-2 { width: 40px; height: 40px; left: 20%; background: #9ac1a3; animation-delay: 5s; }
.balloon-3 { width: 70px; height: 70px; left: 30%; background: #5fad69; animation-delay: 2s; }
.balloon-4 { width: 50px; height: 50px; left: 40%; background: #2acc3f; animation-delay: 5s; }
.balloon-5 { width: 45px; height: 45px; left: 50%; background: #b5ead7; animation-delay: 4s; }
.balloon-6 { width: 55px; height: 55px; left: 60%; background: #71a36f; animation-delay: 1s; }
.balloon-7 { width: 65px; height: 65px; left: 70%; background: #8ce4a5; animation-delay: 6s; }
.balloon-8 { width: 35px; height: 35px; left: 80%; background: #6b9e81; animation-delay: 3s; }
.balloon-9 { width: 50px; height: 50px; left: 90%; background: #a6e9a8; animation-delay: 8s; }
.balloon-10 { width: 40px; height: 40px; left: 95%; background: #73a473; animation-delay: 9s; }


.full-width-bg {
  max-width: 100%;
  width: 100%;
  padding: 0 1vw;
  box-sizing: border-box;
  background-color: transparent !important;
  position: relative;
  z-index: 0;
}

.content-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  background-color: transparent !important;
  position: relative;
  z-index: 1;
}



.marquee-partners-section {
  min-height: 500px;
  padding-top: 1000px;
  padding-bottom: 100px;
  background-color: transparent !important;
  position: relative;
  z-index: 0;
}

.partner-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partner-marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-marquee {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  scroll-behavior: smooth;
  padding: 5px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partner-marquee::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffffcc;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.partner-marquee-wrapper {
  position: relative;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.scroll-btn:hover {
  background-color: #eee;
}


.single-logo {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.partner-logo-img:hover {
  transform: scale(1.05);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


.placeholder-logo {
  display: none;
}

.hero-banner-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 18px;
  color: #1a3c1a;
  letter-spacing: -1px;
}

.hero-banner-title .gradient-green {
  background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.emc-banner {
  background: rgba(241, 254, 238, 255);
  position: relative;
  padding: 60px 0 30px 0;
  text-align: center;
  z-index: 2;
}

.emc-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(67, 178, 108, 0.03), rgba(67, 178, 108, 0.08));
  z-index: -1;
}

.emc-banner .hero-banner-title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin: 0;
}

.emc-banner .hero-banner-label {
  color: #086924;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.emc-banner .hero-banner-desc {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.emc-banner .gradient-green {
  background: linear-gradient(45deg, #43B26C, #2DC49D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emc-banner .emc-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding: 15px;
  background: rgba(6, 104, 42, 0.05);
  border-radius: 14px;
}

.emc-banner .emc-banner-item {
  text-align: center;
}

.emc-banner .number-float {
  font-size: 30px;
  font-weight: 800;
  color: #086924;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(167, 251, 108, 0.3);
}

.emc-banner .emc-banner-item p {
  font-size: 18px;
  color: #555;
  font-weight: 500;
  margin: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 50%;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
  background-color: #4CAF50;
  color: white;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
}

.partner-card {
  min-height: 100px;
  background-color: #def0e6;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  text-align: center;
}


.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo-img {
  width: 200px;
  height: 110px;
  object-fit: contain;
  background-color: white;
  border-radius: 0%;
  border: 3px solid #e0f5ea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vertical-wave-wrapper {
  position: relative;
  height: 100%;
  min-height: 1000px;
  overflow: hidden;
  padding: 50px 0;
}

.vertical-wave-path {
  position: relative;
  width: 100%;
  height: 100%;
}

.wave-logo {
  position: absolute;
  transform: translate(-50%, 0);
  transition: transform 0.3s;
}

.wave-logo:hover {
  transform: translate(-50%, -5px) scale(1.05);
}

.vertical-wave-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 60px;
  padding: 40px 0;
}

.wave-logo {
  position: relative;
  transition: transform 0.4s ease;
}

.wave-logo:hover {
  transform: scale(1.1) !important;
}

.partners-section {
  background-color: #e9f8ed;
  position: relative;
  overflow: hidden;
}

.partners-grid {
  display: grid;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  grid-template-rows: auto auto;
  margin-bottom: 0px;
}

.row-1 {
  grid-template-columns: repeat(5, 1fr);
  display: grid;
  gap: 20px;
}

.row-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  gap: 20px;
}

@media (max-width: 1000px) {
  .content-center {
    padding: 0 20px;
  }
}

@media screen and (max-width: 980px) {
  .emc-banner .emc-banner-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .row-1 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .row-2 {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
  }

  .partner-logo-img {
    width: 160px;
    height: 100px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 60px;
  padding: 10px;
  border-radius: 24px;
}

.stat-item {
  flex: 1 1 100%;
  text-align: center;
}

.stat-number {
  font-size: 1rem;
  font-weight: 800;
  color: #086924;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(167, 251, 108, 0.3);
}

.stat-label {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

@media (max-width: 388px) {
  .stat-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 8px 0;
  }

  .stat-number {
    font-size: 20px !important; 
  }

  .stat-label {
    font-size: 12px !important;
  }

  .stats-container {
    flex-direction: row;
    gap: 12px;
  }
}


@media (min-width: 1024px) {
  .stat-item {
    flex: 1 1 0;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 18px;
  }

  .stats-container {
    gap: 32px;
  }
}


@media screen and (min-width: 768px) {
  .partner-logo-img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 140px;
    height: auto;
  }
  .stats-grid {
    flex-direction: column !important;
    align-items: center;
    gap: 10px !important;
    padding: 24px 16px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .partner-logo-img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 140px;
    height: auto;
  }
  .partner-item {
    width: 100px;
  }

  .emc-banner .emc-banner-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

}


.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  padding: 40px 0;
}

.partner-item {
  background: #ffffff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  background: #ffffff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo-img {
  width: 130px;
  height: 80px;
  display: block;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  background-color: #fff;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  visibility: visible;
}

.placeholder-logo {
  width: 100px;
  height: 100px;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7f7f7;
  font-size: 14px;
  border-radius: 8px;
}

/* -------- */
.number-float {
  display: inline-block;
  animation: bounce 5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-15px);
  }

  50% {
    transform: translateY(-8px);
  }

  70% {
    transform: translateY(-12px);
  }
}

.page-banner {
  position: relative;
  padding: 60px 0 40px 0;
  background: #fff;
  overflow: hidden;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner-label {
  font-size: 18px;
  font-weight: 600;
  color: #086924;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-banner-title {
  font-size: 36px;
  font-weight: 900;
  color: #1a3c1a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-banner-title .gradient-green {
  background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-banner-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e3f6e6;
  z-index: 0;
}

.logo-banner {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70px;
  z-index: 3;
}

.hanging-light {
  position: absolute;
  top: 0;
  right: 50px;
  height: 140px;
  width: 0;
  border-left: 2px solid #86e596;
  z-index: 2;
}

.bulb {
  width: 24px;
  height: 24px;
  border: 2px solid #86e596;
  border-radius: 50%;
  background: #d4ffe1;
  margin-top: 8px;
  box-shadow: 0 0 12px #86e596;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #86e596;
  }

  to {
    box-shadow: 0 0 20px #86e596;
  }
}

.gradient-green {
  background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 30px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(167, 251, 108, 0.1), rgba(67, 178, 108, 0.05));
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #086924;
  text-shadow: 2px 2px 4px rgba(167, 251, 108, 0.3);
}

.stat-label {
  margin-top: 8px;
  font-size: 1rem;
  color: #555;
}

/* Chuyển đổi mượt mà */
body, .card, a, h1, h2, h3, .btn, input, header, footer {
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Giao diện mặc định (sáng) */
body {
  background-color: #fff;
  color: #222;
}

.card, .partner-item {
  background-color: #f8f9fa;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

input, .btn {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

/* Chế độ tối */
body.dark-theme {
  background-color: #000000;
  color: #e0e0e0;
}

body.dark-theme .card,
body.dark-theme .partner-item {
  background-color: #ffffff !important;
  box-shadow: none;
  border: none !important;
}

body.dark-theme input,
body.dark-theme .btn {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
}

body.dark-theme header,
body.dark-theme footer {
  background-color: #1a1a1a;
  box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

/* Link & text trong dark mode */
body.dark-theme a {
  color: #66ccff;
}

/* Hiệu ứng glow */
body.dark-theme .glow {
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

/* Ví dụ với tiêu đề có class gradient-green */
body.dark-theme .hero-banner-title span.gradient-green {
  color: #00ffcc !important;
  text-shadow: 0 0 8px #00ffcc;
}

/* Dark Theme Styles */
html.dark-theme {
    background-color: #000000;
    color: #e0e0e0;
}

html.dark-theme * {
    border-color: transparent !important;
}

html.dark-theme body {
    background-color: #000000;
    color: #e0e0e0;
}

/* Updated Page Banner Dark Theme */
html.dark-theme .page-banner,
html.dark-theme .emc-banner,
html.dark-theme .marquee-partners-section,
html.dark-theme .partners-section {
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

html.dark-theme .page-banner::before,
html.dark-theme .emc-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(67, 178, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 251, 108, 0.06) 0%, transparent 50%);
    filter: blur(20px);
    z-index: 0;
}

html.dark-theme .banner-overlay {
    background: #000000 !important;
    position: relative;
    z-index: 1;
}

html.dark-theme .hero-banner-title {
    color: #fff !important;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

html.dark-theme .hero-banner-title .gradient-green {
    background: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

html.dark-theme .hero-banner-label {
    color: #a7fb6c !important;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

html.dark-theme .hero-banner-desc {
    color: #ccc !important;
    position: relative;
    z-index: 2;
}

html.dark-theme .partner-card {
    background: #000000;
    box-shadow: none;
    border: none !important;
}

html.dark-theme .partner-card:hover {
    box-shadow: none;
    border: none !important;
}

html.dark-theme .partner-logo-img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    background: transparent !important;
}

html.dark-theme .partner-logo-img:hover {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    background: transparent !important;
    transform: scale(1.05);
}

html.dark-theme .stats-container {
    background: #000000;
    box-shadow: none;
    border: none !important;
    outline: none !important;
}

html.dark-theme .stat-item {
    background: #000000;
    box-shadow: none;
    border: none !important;
}

html.dark-theme .stat-number {
    color: #a7fb6c;
}

html.dark-theme .stat-label {
    color: #ccc;
}

html.dark-theme .scroll-btn {
    background: #000000;
    color: #a7fb6c;
    box-shadow: none;
    border: none !important;
}

html.dark-theme .scroll-btn:hover {
    background: #43b26c;
    color: #fff;
    border: none !important;
}

html.dark-theme .pagination a {
    background: #000000;
    color: #ccc;
    border: none !important;
}

html.dark-theme .pagination a:hover {
    background: #43b26c;
    color: #fff;
    border: none !important;
}

html.dark-theme .pagination a.active {
    background: #43b26c;
    color: #fff;
    border: none !important;
}

/* Remove balloon styles from dark theme */
html.dark-theme .balloon,
html.dark-theme .balloon-1,
html.dark-theme .balloon-2,
html.dark-theme .balloon-3,
html.dark-theme .balloon-4,
html.dark-theme .balloon-5,
html.dark-theme .balloon-6,
html.dark-theme .balloon-7,
html.dark-theme .balloon-8,
html.dark-theme .balloon-9,
html.dark-theme .balloon-10 {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

html.dark-theme .floating-balloons {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hanging Light Dark Theme */
html.dark-theme .hanging-light {
    background: #000000;
}

html.dark-theme .bulb {
    background: #43b26c;
    box-shadow: 0 0 20px rgba(67, 178, 108, 0.3);
}

html.dark-theme .bulb::before {
    background: #000000;
}

/* Responsive Dark Theme */
@media (max-width: 768px) {
    html.dark-theme .partner-logo-img {
        background: #000000;
        border: none !important;
    }
    
    html.dark-theme .stats-container {
        background: #000000;
        border: none !important;
    }
    
    html.dark-theme .stat-item {
        background: #000000;
        border: none !important;
    }
}

html.dark-theme .stats-grid {
    border: none !important;
}

html.dark-theme .stats-grid,
html.dark-theme .stats-container,
html.dark-theme .stats-container *,
html.dark-theme .stat-item,
html.dark-theme .stat-number,
html.dark-theme .stat-label {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    background: transparent !important;
}

html.dark-theme .stats-container {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

html.dark-theme .stats-container .stat-item {
    border-radius: 4px !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Remove all balloon styles */
.floating-balloons,
.balloon,
.balloon-1,
.balloon-2,
.balloon-3,
.balloon-4,
.balloon-5,
.balloon-6,
.balloon-7,
.balloon-8,
.balloon-9,
.balloon-10 {
    display: none !important;
}

@keyframes floatBalloon {
    0% { transform: none; }
    100% { transform: none; }
}
