
body {
    margin: 0;
    background-color: #111;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
}
.container {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}
.star {
    width: 80px;
}
.hiring {
    color: #f00;
    font-weight: bold;
    margin-top: 10px;
}
h1 {
    font-size: 2.5em;
    margin: 10px 0;
}
.subtext {
    font-size: 1.1em;
    color: #fff;
}
.apply-button {
    display: inline-block;
    background-color: #e50914;
    color: white;
    padding: 12px 30px;
    margin: 20px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.features, .how-to-apply {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.features div, .how-to-apply div {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
}
.features h3, .how-to-apply h3 {
    font-size: 2em;
    margin: 0;
}
.features span, .how-to-apply span {
    color: #bbb;
    font-size: 0.9em;
}
.duties {
    background-color: #1c1c1c;
    padding: 20px;
    margin: 40px auto;
    border-radius: 8px;
}
.duties h3 {
    color: #e50914;
}
.duties ul {
    list-style: none;
    padding: 0;
    color: #eee;
}
.steps {
    color: #bbb;
}
.final-section {
    background: linear-gradient(90deg, #400000, #1c1c1c);
    padding: 30px 20px;
    border-radius: 8px;
    margin: 40px 0;
}
.important {
    color: #ff4a4a;
    font-weight: bold;
}
footer {
    margin-top: 30px;
    color: #777;
}
.star-footer {
    width: 50px;
}

/* Notification popup */
.popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #222;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
    z-index: 9999;
    font-size: 14px;
}
.popup img {
    width: 30px;
    height: 30px;
}
