/* @font-face {
    font-family: SatoshiBlack;
    src: url('fonts/Satoshi-Black.woff2') format('woff2');
}

@font-face {
    font-family: SatoshiRegular;
    src: url('fonts/Satoshi-Regular.woff2') format('woff2');
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
} */

.legacy-section {
    padding: 40px 24px;
    /* background-image: url(../bucket/home-head-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom; */
    /* background-size: 330%; */
}

.legacy-container {
    max-width: 1200px;
    margin: auto;
}

.legacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.legacy-heading {
    font-family: 'SatoshiBlack';
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.legacy-top-text {
    font-family: 'SatoshiRegular';
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

.legacy-video-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legacy-video--desk {
    display: none;
}

.legacy-video--mob {
    display: block;
}

.legacy-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 24px 18px;
}

.legacy-label {
    font-family: 'SatoshiRegular';
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ddd;
}

.legacy-title {
    font-family: 'SatoshiBlack';
    font-size: 28px;
    margin: 16px 0;
    line-height: 1.2;
}

.legacy-title span {
    color: #e8d2a8;
}

.legacy-description {
    font-family: 'SatoshiRegular';
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.legacy-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.legacy-btn {
    font-family: 'SatoshiRegular';
    padding: 10px 26px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* .primary-btn {
    background: #fff;
    color: #000;
} */

.outline-btn,
.primary-btn {
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
}

.outline-btn:hover {
    background: #fff;
    color: #000;
}

.primary-btn:hover {
    background: #fff;
    color: #000;
}

.primary-btn:hover {
    background: #e5e5e5;
}

@media (min-width: 768px) {
    .legacy-section {
        padding: 60px 24px;
    }

    .legacy-heading {
        font-size: 34px;
    }

    .legacy-video-card {
        border-radius: 28px;
        aspect-ratio: 16 / 9;
        min-height: 420px;
    }

    .legacy-video--desk {
        display: block;
    }

    .legacy-video--mob {
        display: none;
    }

    .legacy-title {
        font-size: 40px;
    }

    .legacy-description {
        font-size: 16px;
    }

    .legacy-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1000px) {
    .legacy-section {
        padding: 80px 32px;
    }

    .legacy-header {
        margin-bottom: 70px;
    }

    .legacy-heading {
        font-size: 42px;
    }

    .legacy-top-text {
        max-width: 750px;
        margin: auto;
    }

    .legacy-video-card {
        border-radius: 32px;
        min-height: 520px;
    }

    .legacy-content {
        padding: 60px;
        max-width: 800px;
        margin: auto;
    }

    .legacy-title {
        font-size: 52px;
    }

    .legacy-description {
        font-size: 17px;
    }

    .legacy-container {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .legacy-container {
        max-width: 1024px;
    }
}

@media (min-width: 1400px) {
    .legacy-container {
        max-width: 1260px;
    }
}