@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.wab-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 100px 8% 80px;
}

.wab-bg-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wab-bg-video, .wab-bg-mobile, .wab-bg-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wab-bg-mobile {
    display: none;
}

.wab-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: #ffffff;
    text-align: left;
}

.wab-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.wab-title {
    font-family: 'Rubik', sans-serif;
    font-size: 68px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wab-tag-wrapper {
    display: flex;
    align-items: center;
}

.wab-tag {
    height: 90px;
    width: auto;
    display: block;
}

.wab-description {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.wab-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.wab-list-item {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #ffffff;
    max-width: 650px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.wab-button {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background-color: transparent;
    margin-top: 15px;
}

.wab-button:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

@media (max-width: 1024px) {
    .wab-title {
        font-size: 60px;
    }

    .wab-tag {
        height: 85px;
    }
}

@media (max-width: 768px) {
    .wab-section {
        min-height: 90vh;
        padding: 60px 7%;
    }

    .wab-title {
        font-size: 48px;
    }

    .wab-tag {
        height: 85px;
    }

    .wab-list-item {
        font-size: 15px;
    }

    .wab-button {
        text-align: center;
        padding: 15px 40px;
    }
    .wab-bg-video-wrapper video{
        filter: brightness(0.6);
    }

    .has-mobile-bg .wab-bg-desktop {
        display: none;
    }

    .has-mobile-bg .wab-bg-mobile {
        display: block;
        filter: brightness(0.6);
    }
}