:root {
    --baza-yellow: #FBD037;
    --baza-dark: #1C1C1C;
    --baza-white: #FFFFFF;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111111; /* Dark background outside the container */
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    width: 1080px;
    height: 1920px;
    position: relative;
    background-color: var(--baza-yellow);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.scene {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* SCENE 1: HOOK */
#scene1 {
    background-color: var(--baza-yellow);
}

.baza-logo {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 200px;
}

.logo-icon {
    color: var(--baza-dark);
}

.logo-text {
    font-size: 120px;
    font-weight: 800;
    color: var(--baza-dark);
    letter-spacing: -2px;
}

.giant-text {
    font-size: 180px;
    font-weight: 800;
    color: var(--baza-dark);
    text-align: center;
    line-height: 1.1;
    width: 900px;
    margin: 0;
    text-transform: uppercase;
}

.hand-arrow {
    position: absolute;
    right: 150px;
    top: 1100px;
}

/* SCENE 2: VALUE PROP */
#scene2 {
    background-color: var(--baza-white);
    color: var(--baza-dark);
    justify-content: flex-start;
    padding-top: 500px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 800px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 60px;
    font-weight: 600;
}

.check-icon {
    background-color: var(--baza-yellow);
    color: var(--baza-dark);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 800;
    flex-shrink: 0;
}

/* SCENE 3: SHOWCASE */
#scene3 {
    background-color: var(--baza-dark);
    color: var(--baza-white);
}

.section-title {
    font-size: 100px;
    font-weight: 800;
    color: var(--baza-yellow);
    margin-bottom: 150px;
    letter-spacing: 2px;
}

.job-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 900px;
}

.job-card {
    background-color: var(--baza-white);
    color: var(--baza-dark);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.job-company {
    font-size: 40px;
    font-weight: 800;
    color: var(--baza-dark);
    opacity: 0.6;
}

.job-title {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
}

.job-tags {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.tag {
    background-color: #F0F0F0;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 600;
    color: var(--baza-dark);
}

.job-apply {
    align-self: flex-start;
    margin-top: 40px;
    background-color: var(--baza-yellow);
    color: var(--baza-dark);
    padding: 20px 60px;
    border-radius: 40px;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
}

/* SCENE 4: CTA */
#scene4 {
    background-color: var(--baza-yellow);
    color: var(--baza-dark);
}

.cta-title {
    font-size: 150px;
    font-weight: 800;
    text-align: center;
    width: 900px;
    line-height: 1.1;
    margin-bottom: 100px;
}

.cta-button {
    background-color: var(--baza-white);
    color: var(--baza-dark);
    padding: 50px 100px;
    border-radius: 80px;
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
}

.cursor {
    position: absolute;
    top: 55%;
    left: 65%;
    z-index: 10;
}

.final-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.final-logo .logo-icon {
    color: var(--baza-dark);
}

.final-logo .logo-text {
    font-size: 150px;
    font-weight: 800;
    color: var(--baza-dark);
    letter-spacing: -3px;
}
