* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    background: linear-gradient(180deg, #1a1a1a 0%, #4a1c1c 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
    padding-top: env(safe-area-inset-top, 20px);
    padding-bottom: env(safe-area-inset-bottom, 20px);
}
.container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    width: 90px;
    margin: 20px auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
.hiring {
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid #e50914;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin: 15px auto;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 15px auto;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #b3b3b3;
    margin: 15px auto;
    max-width: 300px;
}
.cta-button {
    background: #e50914;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px auto;
    width: 180px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.7);
}
.cta-button .arrow {
    font-size: 18px;
}
.features-container {
    margin: 20px auto;
    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: rgba(74, 28, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scroll-down 50s linear infinite;
    will-change: transform;
}
@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
.feature-box {
    background: rgba(74, 28, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    width: 300px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    height: 70px;
}
.feature-box .icon {
    background: #e50914;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.feature-box .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.feature-box h3 {
    font-size: 16px;
    font-weight: 500;
}
.feature-box p {
    font-weight: 300;
    color: #b3b3b3;
    font-size: 13px;
    line-height: 1.2;
}
.earners-section {
    margin: 20px auto;
    width: 260px;
}
.earners-section h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e50914;
}
.earner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.earner.active {
    opacity: 1;
    transform: translateY(0);
}
.earner img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    aspect-ratio: 1 / 1; /* Ensure circular shape */
    object-fit: cover;
    border: 2px solid #e50914;
}
.earner p {
    font-size: 11px;
    font-weight: 300;
    color: #b3b3b3;
}
.earner p span {
    color: #fff;
    font-weight: 500;
}
.section-box {
    margin: 20px auto;
    width: 260px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-text {
    font-size: 13px;
    font-weight: 300;
    color: #b3b3b3;
    margin-top: 10px;
    max-width: 300px;
}
.highlight-box {
    margin: 20px auto;
    width: 260px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.highlight {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight-subtext {
    font-size: 13px;
    font-weight: 300;
    color: #b3b3b3;
    margin-top: 10px;
    max-width: 300px;
}
.important {
    font-size: 12px;
    font-weight: 300;
    color: #b3b3b3;
    margin: 15px auto;
    max-width: 300px;
}
.important span {
    color: #e50914;
    font-weight: 500;
}
