/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a1420, #111d2e);
    font-family: "Inter", sans-serif;
    color: #dfe7f1;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ---------------------------------------------------------
   LOGO HEADER
--------------------------------------------------------- */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-area img {
    height: 60px;
}

/* ---------------------------------------------------------
   MAIN CARD
--------------------------------------------------------- */
.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.35);
}

.card h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.intro {
    margin-top: 8px;
    opacity: 0.85;
    line-height: 1.5;
}

/* ---------------------------------------------------------
   SEARCH BAR
--------------------------------------------------------- */
.search-row {
    margin-top: 20px;
    display: flex;
    gap: 16px;
}

.search-row input {
    flex: 1;
    font-size: 1rem;
    padding: 12px 18px;
    border-radius: 40px;
    border: 1px solid #253242;
    background: #0e1a27;
    color: #eaf2fb;
}

.search-row button {
    background: linear-gradient(90deg, #ff7b24, #ff9a3c);
    border: none;
    padding: 12px 26px;
    font-size: 1rem;
    color: white;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(255, 150, 60, 0.45);
    transition: 0.25s;
}

.search-row button:hover {
    transform: translateY(-2px);
}

/* ---------------------------------------------------------
   RESULT AREA
--------------------------------------------------------- */
.result {
    margin-top: 30px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.result-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* STATUS TAGS */
.status-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.status-valid {
    background: #0a9f55;
}

.status-expired {
    background: #c7370a;
}

.status-revoked {
    background: #820000;
}

/* LABELS & VALUES */
.field-label {
    font-size: 0.7rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.field-value {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 4px;
}

.code-box {
    background: rgba(255, 255, 255, 0.07);
    padding: 4px 8px;
    border-radius: 8px;
}

/* ---------------------------------------------------------
   LINKEDIN BUTTON — ONLY NEW PART (FULLY COMPATIBLE!)
--------------------------------------------------------- */
.linkedin-block {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 18px;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0A66C2;
    color: white;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(10, 102, 194, 0.45);
    transition: 0.2s ease;
}

.linkedin-btn:hover {
    background: #004182;
    transform: translateY(-2px);
}

.linkedin-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.footer {
    text-align: center;
    margin-top: 40px;
    opacity: 0.55;
    font-size: 0.9rem;
}
