* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #121212;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
}

.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(29, 185, 84, 0.2);
    border: 1px solid #1DB954;
    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, #1DB954);
    -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: #1DB954;
    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(29, 185, 84, 0.5);
    pointer-events: auto; /* Ensure buttons are clickable */
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.7);
}

.cta-button .arrow {
    font-size: 18px;
}

.features-container {
    margin: 20px auto;
    width: 260px;
    height: 150px;
    overflow: hidden;
    position: relative;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid #1DB954;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: scroll-down 50s linear infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.feature-box {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid #1DB954;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    width: 260px;
    backdrop-filter: blur(5px);
    height: 60px;
}

.feature-box .icon {
    background: #1DB954;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-box .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-box h3 {
    font-size: 14px;
    font-weight: 500;
}

.feature-box p {
    font-weight: 300;
    color: #b3b3b3;
    font-size: 12px;
    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: #1DB954;
}

.earner {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid #1DB954;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(29, 185, 84, 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%;
    object-fit: cover;
    border: 2px solid #1DB954;
}

.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(18, 18, 18, 0.7);
    border: 1px solid #1DB954;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1DB954;
    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(18, 18, 18, 0.7);
    border: 1px solid #1DB954;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.3);
    backdrop-filter: blur(10px);
}

.highlight {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #1DB954);
    -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: #1DB954;
    font-weight: 500;
}
