.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 80px;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    z-index: 2;
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    background-clip: text;
}

.bitcoin-text {
    background: linear-gradient(
        180deg,
        #ffcf66 0%,
        #ffae34 20%,
        #f7931a 50%,
        #e86f00 80%,
        #c95700 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    opacity: 1;
}