body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background: linear-gradient(135deg, #fafafa 0%, #fff 40%, #e9e1e1 100%);
    min-height: 100vh; */
}

.gradient-bg {
    background-image: linear-gradient(90deg, #03ab69 0%, #2ec0d9 100%);
}

.text-gradient {
    font-weight: bold;
    background: linear-gradient(90deg, #03ab69 0%, #2ec0d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-gradient {
    position: relative;
    border-radius: 12px;
}

.border-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: inherit;
    background: linear-gradient(90deg, #03ab69, #2ec0d9);
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.border-gradient-one {
    border-bottom: 2px solid;
    border-right: none;
    border-image: linear-gradient(90deg, #03ab69 0%, #2ec0d9 100%);
    border-image-slice: 1;
}

.btn-gradient {
    background: linear-gradient(90deg, #03ab69, #2ec0d9);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
}

.video-card {
    padding: 0 !important;
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: 10px;
}

.video-card > video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: black;
}

@media (min-width: 768px) {
    .border-gradient-one {
        border-bottom: none;
        border-right: 2px solid;
        border-image: linear-gradient(90deg, #03ab69 0%, #2ec0d9 100%);
        border-image-slice: 1;
    }
    .tips-bar {        
        width: 79%;
    }
}

.tips-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 79%;
}

.tips-label {
    font-weight: 700;
    white-space: nowrap;
    font-size: 18px;
}

.tips-track {
    display: flex;
    align-items: center;
    font-size: 18px;
    justify-content: space-around;
    background: linear-gradient(90deg, #03ab69, #2ec0d9);
    border-radius: 10px;
    padding: 14px 32px;
    color: white;
    flex: 1;
}