/* ── 本机IP卡片 ── */
.ip-my-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border: 1px solid #d0e4f0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ip-my-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.3rem;
}

.ip-my-value {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Fira Code', monospace;
    color: #2563eb;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.ip-my-location {
    font-size: 0.9rem;
    color: #666;
}

/* ── 查询表单 ── */
.ip-query-form {
    margin-top: 1.5rem;
}

/* ── 查询结果 ── */
.ip-result {
    margin-top: 1.5rem;
}

.ip-result-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.ip-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.ip-info-item {
    display: flex;
    flex-direction: column;
    padding: 0.8rem 1rem;
    background: #f8f9fb;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
}

.ip-info-label {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 0.2rem;
}

.ip-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    font-family: 'Fira Code', monospace;
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .ip-my-value {
        font-size: 1.6rem;
    }

    .ip-info-grid {
        grid-template-columns: 1fr;
    }
}
