body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: #0D0625;
    text-align: center;
}

.container {
    width: 100%;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    max-width: 750px;
    display: none;
}

.container a {
    display: block;
}

#guide-img {
    display: none;
    position: absolute;
    right: 20px;
    top: 0;
    width: 80%;
    max-width: 400px;
    height: auto;
}

a img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}


.main-content {
    flex: 1;
}

.content-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.content-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.marquee-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffcfcf;
    padding: 0 12px;
    height: 30px;
    overflow: hidden;
    position: relative;
    z-index: 110;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
}

.marquee-container {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
}


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

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 50px;
    font-size: 13px;
    color: rgba(13, 6, 37, 1);
    letter-spacing: 0.5px;
    animation: marqueeTimeline 6s linear infinite;
}

@keyframes marqueeTimeline {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.marquee-box:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-close-btn {
    background: none;
    border: none;
    color: rgba(255, 33, 17, 0.6);
    font-size: 20px;
    font-weight: 300;
    padding: 0 4px 0 12px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.marquee-close-btn:active {
    color: #e5c07b;
}

.marquee-wrapper.hide {
    height: 0 !important;
    opacity: 0 !important;
    border-bottom-color: transparent !important;
}

.image-container {
  position: relative; 
  display: inline-block;
  width: 100%;
}

.overlay-text {
  position: absolute;
  top: 40px;
  left: 40px;
  
  color: white;
  font-size: 40px;
  font-weight: bold;
  /* background-color: rgba(0, 0, 0, 0.5); */
  padding: 10px;
  border-radius: 5px;
  font-family: sans-serif;
}