/* ===== SHEIN Brand Design System ===== */
/* Primary: #000000 | Brand Red: #E8192C | White: #FFFFFF | Gray: #F5F5F5 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #0a0a0a;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

/* Subtle background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 25, 44, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 25, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 420px;
    width: 100%;
    max-height: 95vh;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 24px 64px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== Header ===== */
.header {
    background: #000000;
    padding: 28px 24px 24px;
    text-align: center;
    color: white;
    position: relative;
    flex-shrink: 0;
    border-bottom: 3px solid #E8192C;
}

.brand-logo {
    margin-bottom: 18px;
}

.shein-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 6px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    position: relative;
}

.shein-logo::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: #E8192C;
    margin: 6px auto 0;
    border-radius: 2px;
}

.main-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.sub-title {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Main Content ===== */
.main-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

/* ===== Job Highlight ===== */
.job-highlight {
    background: #000000;
    border-radius: 4px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-left: 4px solid #E8192C;
    position: relative;
    overflow: hidden;
}

.job-highlight::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 80px;
    height: 80px;
    background: rgba(232, 25, 44, 0.08);
    border-radius: 50%;
}

.work-icon {
    width: 38px;
    height: 38px;
    margin-right: 14px;
    background: #E8192C;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.work-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
    background: white;
    border-radius: 2px;
}

.work-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 2px;
    background: #E8192C;
    box-shadow: 0 -4px 0 #E8192C, 0 4px 0 #E8192C;
}

.job-text { display: flex; flex-direction: column; }

.job-title {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 3px;
}

.job-salary {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== Benefits Section ===== */
.benefits-section { margin-bottom: 20px; }

.section-title {
    font-size: 11px;
    font-weight: 700;
    color: #999999;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child { border-bottom: none; }

.check-icon {
    width: 22px;
    height: 22px;
    background: #E8192C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    margin-right: 14px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ===== Key Info Section ===== */
.key-info-section {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #ebebeb;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.info-item:last-child { margin-bottom: 0; }

.info-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    margin-top: 1px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.info-icon.location { background: #E8192C; }
.info-icon.location::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 10px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.info-icon.location::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: #E8192C;
    border-radius: 50%;
}

.info-icon.money { background: #000000; }
.info-icon.money::before {
    content: '€';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.info-icon.security { background: #1a1a1a; }
.info-icon.security::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 8px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.info-icon.security::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 5px;
    background: white;
    border-radius: 1px;
}

.info-content { display: flex; flex-direction: column; }

.info-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-value {
    font-size: 12px;
    color: #888888;
    margin-top: 1px;
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
    padding: 4px 0 8px;
}

.contact-info { margin-bottom: 14px; }

.urgency-text {
    font-size: 11px;
    color: #E8192C;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: #E8192C;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(232, 25, 44, 0.35);
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: #c41525;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 25, 44, 0.45);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(232, 25, 44, 0.3);
}

.company-details { margin-top: 14px; }

.company-text {
    font-size: 11px;
    color: #bbbbbb;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    body { padding: 10px; }
    .container { border-radius: 4px; }
    .header { padding: 24px 20px 20px; }
    .main-title { font-size: 17px; }
    .main-content { padding: 18px; }
}
