.hero-section {
    height: 150vh;
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url('../images/bg-pattern.png');
    background-repeat: repeat;
    background-size: auto;  /* This ensures the pattern maintains its original size */
    background-position: center;
}

.text-container {
    position: fixed;
    top: 15%;
    width: 100%;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.text-layout {
    display: flex;
    flex-direction: column;
}

.line {
    font-size: 2rem;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    color: #fff;
}

.middle-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
    color: #fff;
}

.horizontal-line {
    flex-grow: 1;
    height: 2px;
    background-color: #fff;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 60px 40px;
    }

    .line {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .line {
        font-size: 4rem;
    }

    .middle-line {
        gap: 40px;
    }
}

.text-left {
    font-family: 'Arial', sans-serif;
    font-weight: 300;
}

.text-right {
    font-family: 'Times New Roman', serif;
    font-weight: 300;
}

.headline-line {
    width: 100px;
    height: 1px;
    background: #fff;
    margin: 1rem auto;
}

.text-bank {
    font-family: 'Arial', sans-serif;
    font-weight: 300;
}

.text-bitcoin {
    font-family: 'Times New Roman', serif;
    font-weight: 300;
}

sup {
    font-size: 0.4em;
    vertical-align: super;
}

.video-container {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
