@charset "UTF-8";
/* Reset & Base */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

#bs_ecosystem html {
  font-family: 'Rajdhani', sans-serif;
  -webkit-font-smoothing: antialiased; }

/* App Container */
.app-container {
  min-height: 100vh;
  background-color: #2b2112;
  overflow-x: hidden;
  position: relative; }

.app-container::selection {
  background-color: #28AE6C;
  color: white; }

.global-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none; }

.global-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; }

.content-wrapper {
  position: relative;
  z-index: 10; }

/* Header */
.header {
  padding: 16px;
  position: relative;
  z-index: 50; }

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo-svg {
  height: 32px;
  width: auto;
  display: block; }

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 8px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background-color: #1a130a;
  display: flex;
  flex-direction: column;
  padding-top: 80px; }

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  overflow-y: auto; }

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s; }

.nav-links a:hover {
  color: #E0A246; }

.play-btn {
  background: linear-gradient(to right, #ffaf00, #f96c01);
  color: black;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 16px; }

/* Transitions */
.slide-enter-active,
.slide-leave-active {
  transition: all 0.3s ease; }

.slide-enter,
.slide-leave-to {
  opacity: 0;
  transform: translateX(100%); }

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s; }

.fade-enter,
.fade-leave-to {
  opacity: 0; }

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; }

.hero-video {
  position: relative;
  width: 100%;
  height: 35vh; }

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.character-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-height: 95%; }

.hero-green-bar {
  width: 100%;
  background: linear-gradient(to bottom right, #2a8b5c, #145233);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 128px;
  position: relative;
  z-index: 10;
  margin-top: -8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }

.hero-text {
  text-align: center;
  max-width: 800px; }

.hero-text p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
  line-height: 28px;
  margin-bottom: 8px; }

.hero-text .highlight {
  color: #f2ca4e; }

.video-player {
  position: relative;
  z-index: 20;
  width: 92%;
  aspect-ratio: 16/9;
  cursor: pointer;
  margin-top: -96px;
  margin-left: auto;
  margin-right: auto; }

.video-frame {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 9, 20, 0.5);
  border: 1.2px solid rgba(224, 162, 70, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 10px; }

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #e0a246;
  border-style: solid; }

.corner.tl {
  top: -2px;
  left: -2px;
  border-width: 2.4px 0 0 2.4px;
  border-radius: 10px 0 0 0; }

.corner.tr {
  top: -2px;
  right: -2px;
  border-width: 2.4px 2.4px 0 0;
  border-radius: 0 10px 0 0; }

.corner.bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2.4px 2.4px;
  border-radius: 0 0 0 10px; }

.corner.br {
  bottom: -2px;
  right: -2px;
  border-width: 0 2.4px 2.4px 0;
  border-radius: 0 0 10px 0; }

.video-content {
  position: absolute;
  inset: 6px;
  background-color: black;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; }

.thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s; }

.video-player:hover .thumbnail {
  opacity: 1; }

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s; }

.video-player:hover .play-button {
  transform: scale(1.1); }

.play-button svg {
  margin-left: 4px;
  width: 24px;
  height: 24px; }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  padding: 16px; }

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background-color: black;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(224, 162, 70, 0.3);
  border-radius: 8px;
  overflow: hidden; }

.video-modal-content iframe {
  width: 100%;
  height: 100%; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s; }

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white; }

/* Black Coin Section */
.black-coin-section {
  position: relative;
  width: 100%;
  padding: 40px 16px 80px;
  overflow: hidden; }

.floating-coins {
  display: none;
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; }

.bc-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  position: relative; }

.bc-glow {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #28AE6C;
  filter: blur(60px);
  opacity: 0.5;
  animation: pulse 2s infinite; }

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5; }
  50% {
    opacity: 0.7; } }
.bc-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(40, 174, 108, 0.6);
  border-radius: 50%;
  transition: transform 0.5s; }

.bc-icon:hover {
  transform: scale(1.05); }

.bc-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 24px; }

.bc-title .white {
  color: white;
  margin-right: 16px; }

.bc-title .green {
  background: linear-gradient(to right, #28AE6C, #4ADE80, #2CD883);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.bc-desc {
  text-align: center;
  max-width: 840px;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05); }

.bc-desc p {
  font-size: 18px;
  color: #f3f4f6;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  line-height: 1.8; }

.bc-desc .highlight {
  color: #f2ca4e;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }

.bc-desc .sub {
  font-size: 16px;
  color: #d1d5db;
  margin-top: 12px; }

/* Steps */
.steps-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px; }

.step-item {
  position: relative;
  display: flex;
  flex-direction: column; }

.step-image {
  position: relative;
  width: 100%;
  height: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 20;
  border: 2px solid #2a8b5c;
  background-color: #111827;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s; }

.step-image:hover {
  border-color: #f2ca4e;
  box-shadow: 0 0 20px rgba(242, 202, 78, 0.3);
  transform: scale(1.02); }

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s; }

.step-image:hover img {
  opacity: 1; }

.step-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0.6;
  transition: opacity 0.3s; }

.step-image:hover .step-overlay {
  opacity: 0.4; }

.expand-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 8px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white; }

.step-image:hover .expand-icon {
  opacity: 1;
  transform: scale(1); }

.step-text {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom right, #2a8b5c, #145233);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 30;
  margin-top: -8px;
  border-radius: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1); }

.step-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1em;
  line-height: 1;
  user-select: none;
  pointer-events: none; }

.step-content {
  font-size: 16px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  width: 100%;
  margin-top: 8px;
  z-index: 10;
  white-space: pre-line;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }

.step-content .bullet {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 12px;
  line-height: 1.4; }

.step-content .bullet::before {
  content: '• ';
  color: #f2ca4e;
  margin-right: 8px; }

.ranking-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding: 20px 32px;
  background-color: #e0a246;
  color: black;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 17.6px;
  padding: 16px;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(224, 162, 70, 0.3);
  transition: all 0.2s; }

.ranking-btn:hover {
  background-color: #ffc165;
  box-shadow: 0 0 30px rgba(224, 162, 70, 0.6);
  transform: scale(0.98); }

/* Notice Box */
.notice-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  width: 100%;
  padding: 0 16px; }

.notice-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 10px;
  border-left: 4px solid #f2ca4e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #f2ca4e; }

.notice-icon {
  display: none; }

.notice-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #d1d5db;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6; }

.notice-content li.warning {
  color: #f2ca4e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px; }

.notice-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px; }

/* Image Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px; }

.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center; }

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  border: 2px solid #2a8b5c;
  border-radius: 2px; }

.modal-close-text {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s; }

.modal-close-text:hover {
  color: #28AE6C;
  letter-spacing: 0.2em; }

/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0; }

/* Responsive - Desktop */
@media (min-width: 768px) {
  .hero-video {
    height: 828px; }

  .character-overlay {
    max-height: 85%; }

  .hero-green-bar {
    height: 300px;
    padding: 30px 16px 0; }

  .hero-text p {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 0; }

  .video-player {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translateX(-50%);
    width: 920px;
    height: 517px;
    margin-top: 0; }

  .corner {
    width: 38px;
    height: 38px; }

  .ranking-btn {
    font-size: 24px;
    padding: 20px 32px; }

  .video-content {
    inset: 10px; }

  .play-button {
    width: 96px;
    height: 96px; }

  .play-button svg {
    width: 38px;
    height: 38px;
    margin-left: 8px; }

  .black-coin-section {
    padding: 40px 16px 80px;
    padding-top: 500px; }

  .floating-coins {
    display: block; }

  .coin {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: float 4s ease-in-out infinite; }

  .coin-bl {
    top: 1600px;
    left: -50px;
    width: 429px;
    opacity: 0.6;
    filter: blur(1px); }

  .coin-tl {
    top: 200px;
    left: -70px;
    width: 486px;
    opacity: 0.7;
    filter: blur(2px);
    animation-delay: 1s;
    animation-duration: 5s; }

  .coin-r {
    top: 1100px;
    right: -50px;
    width: 426px;
    opacity: 0.7;
    animation-delay: 2s;
    animation-duration: 6s; }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0); }
    50% {
      transform: translateY(-20px); } }
  .bc-icon {
    width: 126px;
    height: 126px; }

  .bc-glow {
    width: 126px;
    height: 126px; }

  .bc-title {
    font-size: 76px;
    line-height: 72px;
    margin-bottom: 32px; }

  .bc-desc p {
    font-size: 24px;
    line-height: 36px; }

  .bc-desc .sub {
    font-size: 20px;
    line-height: 32px; }

  .steps-container {
    gap: 80px; }

  .step-item {
    height: 340px;
    display: block; }

  .step-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 520px;
    height: 300px; }

  .step-text {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 550px;
    height: 300px;
    padding: 40px;
    margin-top: 0;
    z-index: 40; }

  .step-content {
    font-size: 22px;
    line-height: 34px; }

  .step-content .bullet {
    font-size: 16px; }

  .step-number {
    font-size: 80px; }

  .notice-content {
    padding: 32px; }

  .notice-content ul {
    font-size: 16px; }

  .notice-content li {
    display: flex;
    align-items: flex-start; } }

/*# sourceMappingURL=ecosystem.css.map */
