.brand {
    font-weight: bold;
    font-size: 2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
    background: linear-gradient(180deg, #fffef2 0%, #fff1a8 24%, #ffd95d 52%, #e8b62a 78%, #ae7d10 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.hero-text {
    bottom: -15rem;
    position: relative;
    z-index: 1;
}
.hero-text h1 {
    color: white;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-text h1 {
    font-size: 3rem;
    text-shadow: 0 0 2px black;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-section .video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: 100vh;
        transform: translate(-60%, -50%);
        object-fit: cover;
    }
}


/* Get-Started Section */
.get-started-section {
    padding: 8rem 0;
}

.step-circle {
    width: 50px;
    height: 50px;
    line-height: 44px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--web-background);
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.get-started-section .img-128 {
    margin: 2rem;
    padding: 1rem;
}

.img-128 {
    width: 128px;
    height: 128px;
}

.card {
    border: none;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    margin-bottom: auto;
}


/* Creation Section */
.creation-section {
    position: relative;
    height: 70vh;
}


.creation-section .video-bg {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.content-card {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
}
.creation-section h3 {
    color: #3c3c43;
}
@media (max-width: 768px) {
    .content-card {
        left: 25%;
    }
}
@media (min-width: 769px) {
    .content-card {
        left: 70%;
    }
}

/* Features Section */
.features-section {
    padding: 8rem 0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-right: 15px;
}
