body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    margin: 50px auto;
    width: 60%;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

textarea {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: none;
}

button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    background: #ff9800;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #e68900;
}

.score-circle {
    margin: 20px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
    font-size: 18px;
}

.blink {
    animation: blinker 1.2s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.logo img {
    width: 150px;   /* increase this value */
    height: auto;   /* keeps proportions */
    display: block;
    margin: 0 auto; /* centers the logo */
}

.logo img {
    width: 40%;    /* scales 50% larger than original */
    height: auto;
}

/* ── NON-RESUME WARNING STYLES ── */
.non-resume-warning {
    background: #fff8e1;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
}

.non-resume-warning .warning-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.non-resume-warning h1 {
    color: #b45309;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.non-resume-warning p {
    color: #444;
    font-size: 1rem;
    margin: 8px 0;
}

.non-resume-warning .warning-tips {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px 24px;
    margin: 20px auto;
    max-width: 480px;
    text-align: left;
    border: 1px solid #f0c060;
}

.non-resume-warning .warning-tips h3 {
    color: #92400e;
    margin-bottom: 10px;
    font-size: 1rem;
}

.non-resume-warning .warning-tips ul {
    padding-left: 10px;
    list-style: none;
}

.non-resume-warning .warning-tips ul li {
    margin: 6px 0;
    color: #555;
    font-size: 0.95rem;
}

.non-resume-warning .warning-formats {
    margin-top: 16px;
    color: #78350f;
    font-size: 0.9rem;
}
